-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
AdminGkim
committed
Oct 22, 2024
1 parent
d3d3189
commit 5ebc2dd
Showing
12 changed files
with
43,668 additions
and
26,034 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"extends": [ | ||
"development" | ||
], | ||
"hints": { | ||
"no-inline-styles": "off" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,16 @@ | ||
'use strict'; | ||
|
||
const gulp = require('gulp'); | ||
const build = require('@microsoft/sp-build-web'); | ||
|
||
build.addSuppression(`Warning - [sass] The local CSS class 'ms-Grid' is not camelCase and will not be type-safe.`); | ||
build.addSuppression(`Warning - [sass] The local CSS class 'ms-DetailsHeader' is not camelCase and will not be type-safe.`); | ||
build.addSuppression(`Warning - [sass] The local CSS class 'ms-DetailsHeader-cell' is not camelCase and will not be type-safe.`); | ||
build.addSuppression(`Warning - [sass] The local CSS class 'ms-List-cell' is not camelCase and will not be type-safe.`); | ||
build.addSuppression(`Warning - [sass] The local CSS class 'ms-DetailsRow' is not camelCase and will not be type-safe.`); | ||
|
||
build.initialize(gulp); | ||
var getTasks = build.rig.getTasks; | ||
build.rig.getTasks = function () { | ||
var result = getTasks.call(build.rig); | ||
|
||
result.set('serve', result.get('serve-deprecated')); | ||
|
||
return result; | ||
}; | ||
|
||
build.initialize(require('gulp')); |
59,152 changes: 37,032 additions & 22,120 deletions
59,152
samples/react-securitygrid/package-lock.json
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,47 @@ | ||
{ | ||
"main": "lib/index.js", | ||
"name": "spsecurity-webpart-3", | ||
"version": "1.0.4", | ||
"private": true, | ||
"engines": { | ||
"node": ">=0.10.0" | ||
}, | ||
"resolutions": { | ||
"@types/react": "16.8.8" | ||
}, | ||
"dependencies": { | ||
"@microsoft/microsoft-graph-types": "^1.31.0", | ||
"@pnp/common": "1.3.3", | ||
"@pnp/logging": "1.3.3", | ||
"@pnp/odata": "1.3.3", | ||
"@pnp/sp": "1.3.3", | ||
"@pnp/spfx-property-controls": "1.0.0", | ||
"@types/es6-promise": "0.0.33", | ||
"@types/react": "16.8.8", | ||
"@types/react-dom": "16.8.3", | ||
"@types/webpack-env": "1.13.1", | ||
"@uifabric/file-type-icons": "7.6.16", | ||
"lodash": "^4.17.4", | ||
"natives": "^1.1.6", | ||
"office-ui-fabric-react": "7.148.1", | ||
"react": "16.8.5", | ||
"react-dom": "16.8.5" | ||
}, | ||
"devDependencies": { | ||
"@microsoft/rush-stack-compiler-3.2": "0.6.8", | ||
"@microsoft/rush-stack-compiler-3.3": "0.3.5", | ||
"@microsoft/sp-build-web": "1.10.0", | ||
"@microsoft/sp-core-library": "1.10.0", | ||
"@microsoft/sp-lodash-subset": "1.10.0", | ||
"@microsoft/sp-module-interfaces": "1.10.0", | ||
"@microsoft/sp-office-ui-fabric-core": "1.10.0", | ||
"@microsoft/sp-property-pane": "1.10.0", | ||
"@microsoft/sp-tslint-rules": "1.10.0", | ||
"@microsoft/sp-webpart-base": "1.10.0", | ||
"@microsoft/sp-webpart-workbench": "1.10.0", | ||
"@types/chai": "3.4.34", | ||
"@types/mocha": "2.2.38", | ||
"ajv": "~5.2.2", | ||
"gulp": "~3.9.1", | ||
"i": "0.3.7", | ||
"npm": "6.14.6", | ||
"tslint-microsoft-contrib": "5.0.0" | ||
}, | ||
"scripts": { | ||
"build": "gulp bundle", | ||
"clean": "gulp clean", | ||
"test": "gulp test" | ||
} | ||
"name": "spsecurity-webpart-3", | ||
"version": "1.0.4", | ||
"private": true, | ||
"engines": { | ||
"node": ">=16.13.0 <17.0.0 || >=18.17.1 <19.0.0" | ||
}, | ||
"main": "lib/index.js", | ||
"scripts": { | ||
"build": "gulp bundle", | ||
"clean": "gulp clean", | ||
"test": "gulp test" | ||
}, | ||
"dependencies": { | ||
"@fluentui/react-file-type-icons": "^8.12.3", | ||
"@microsoft/microsoft-graph-types": "^2.40.0", | ||
"@microsoft/sp-component-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/sp": "^4.6.0", | ||
"i": "^0.3.7", | ||
"npm": "^10.9.0", | ||
"react": "17.0.1", | ||
"react-dom": "17.0.1" | ||
}, | ||
"devDependencies": { | ||
"@microsoft/eslint-config-spfx": "^1.20.0", | ||
"@microsoft/eslint-plugin-spfx": "^1.20.0", | ||
"@microsoft/generator-sharepoint": "^1.20.0", | ||
"@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": "^2.6.2", | ||
"@rushstack/eslint-plugin": "^0.16.1", | ||
"@types/react": "17.0.45", | ||
"@types/react-dom": "17.0.17", | ||
"@types/webpack-env": "~1.15.2", | ||
"ajv": "^6.12.5", | ||
"eslint": "8.7.0", | ||
"eslint-plugin-react-hooks": "4.3.0", | ||
"gulp": "4.0.2", | ||
"typescript": "4.7.4" | ||
} | ||
} |
Oops, something went wrong.