UNPKG

@mikezimm/fps-core-v7

Version:

Library of reusable core interfaces, types and constants migrated from fps-library-v2

26 lines 1.12 kB
import { BrandingSharePointFolder } from "./ISystemEasyIcon"; export const LibraryTitlesWithNoSpaceUrls = [ 'Site Assets', 'Site Pages', `Pages`, `Documents`, `Site Collection Documents`, `Site Collection Images`, 'Workflow Tasks', ]; export const EasySystemLibraryIcons = [ ...LibraryTitlesWithNoSpaceUrls.map((title) => { return { titles: [title.toLowerCase()], urls: [`/${title.toLowerCase().replace(' ', '')}`], imageUrl: `${BrandingSharePointFolder}${title}.png` }; }), { titles: [`Content and Structure Reports`.toLowerCase()], urls: [`/reports%20list`], imageUrl: `${BrandingSharePointFolder}Content and Structure Reports.png`, }, { titles: [`Images`.toLowerCase()], urls: [`/PublishingImages`.toLowerCase()], imageUrl: `${BrandingSharePointFolder}Images.png`, }, { titles: [`Style Library`.toLowerCase()], urls: [`/style%20library`, `/style library`], imageUrl: `${BrandingSharePointFolder}Style Library.png`, }, ]; //# sourceMappingURL=EasySystemLibraryIcons.js.map