@mikezimm/npmfunctions
Version:
Functions used in my SPFx webparts
40 lines • 1.75 kB
JavaScript
/**
*
* THIS File should be copied to your local project, not referred to through here.
* NOTICE: GET LATEST VERSION FROM SAMPLE PROJECTS: CoreFPS114 or CoreFPS115
*
* https://github.com/mikezimm/CoreFPS114
* https://github.com/mikezimm/CoreFPS115
*
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.aboutTable = exports.panelVersionNumber = void 0;
// import { IHelpTable, } from '../../fpsReferences';
// import { repoLink, } from '../../fpsReferences';
// import { convertIssuesMarkdownStringToSpan } from '../../fpsReferences';
// import { createAboutRow } from '../../fpsReferences';
exports.panelVersionNumber = '2022-07-22 - 1.0.0.01'; //Added to show in panel
function aboutTable(showRepoLinks) {
// const table : IHelpTable = {
// heading: 'Version History',
// headers: ['Date','Version','Focus'],
// rows: [],
// };
/**
* Security update log
*
* converting all links and cdns to lower case so casing does miss a flag
* standardizing all cdn links to start with /sites/ if on tenant
* standardinzing all tag lings to start with /sites/ if on tenant
* removing any extra // from both cdns and file links so you cant add extra slash in a url and slip by
*
* Does NOT find files without extensions (like images and also script files.)
*
* WARNING: DO NOT add any CDNs to Global Warn or Approve unless you want it to apply to JS as well.
*/
// table.rows.push( createAboutRow('2022-07-22',"1.0.0.01","Initial Build", showRepoLinks === true ? repoLink : null ) );
// return { table: table };
}
exports.aboutTable = aboutTable;
//# sourceMappingURL=About.js.map
;