├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── funding.yml └── instructions │ └── copilot-instructions.md ├── .gitignore ├── .vite └── deps │ ├── _metadata.json │ └── package.json ├── .vscode └── settings.json ├── AzureMapsGrid ├── .eslintrc.json ├── .gitignore ├── AzureMapsGrid.pcfproj ├── AzureMapsGrid │ ├── AzureMapsGridControl.tsx │ ├── AzureMapsGridControl │ │ ├── .gitignore │ │ ├── AzureMapsGridControl.cdsproj │ │ ├── Controls │ │ │ └── raw_RAW.AzureMapsGrid.AzureMapsGrid │ │ │ │ ├── ControlManifest.xml │ │ │ │ ├── ControlManifest.xml.data.xml │ │ │ │ ├── bundle.js │ │ │ │ └── css │ │ │ │ └── AzureMapsGrid.css │ │ ├── Entities │ │ │ └── raw_azuremapsconfig │ │ │ │ ├── Entity.xml │ │ │ │ ├── FormXml │ │ │ │ ├── card │ │ │ │ │ ├── {419de572-8678-4625-a9bc-a9a5ad1fbb42}.xml │ │ │ │ │ └── {419de572-8678-4625-a9bc-a9a5ad1fbb42}_managed.xml │ │ │ │ ├── main │ │ │ │ │ ├── {8f94d5d3-31e0-40d7-b3e3-55f9d5b9c38c}.xml │ │ │ │ │ └── {8f94d5d3-31e0-40d7-b3e3-55f9d5b9c38c}_managed.xml │ │ │ │ └── quick │ │ │ │ │ ├── {1d791903-0181-4e65-b9de-981a2e3ed1ed}.xml │ │ │ │ │ └── {1d791903-0181-4e65-b9de-981a2e3ed1ed}_managed.xml │ │ │ │ ├── RibbonDiff.xml │ │ │ │ └── SavedQueries │ │ │ │ ├── {1eab5070-7af9-4a9f-8a46-6a2628998602}.xml │ │ │ │ ├── {2d385366-63f4-4440-b51b-72a8f88cc502}.xml │ │ │ │ ├── {40ff0baa-7642-484e-a6f4-f329d7c793c9}.xml │ │ │ │ ├── {4a465148-14ae-43ea-adbe-d17b6a60bab1}.xml │ │ │ │ ├── {6072346f-91ab-4b51-89ba-88c22c3a4425}.xml │ │ │ │ ├── {cee6f7fa-e25f-ea11-a811-000d3a59f6ff}.xml │ │ │ │ └── {e3214bf5-cfed-4001-9ed5-08b037e31505}.xml │ │ ├── OptionSets │ │ │ └── raw_azuremapsauthenticationtype.xml │ │ ├── Other │ │ │ ├── Customizations.xml │ │ │ ├── Relationships.xml │ │ │ ├── Relationships │ │ │ │ ├── BusinessUnit.xml │ │ │ │ ├── Owner.xml │ │ │ │ ├── SystemUser.xml │ │ │ │ └── Team.xml │ │ │ └── Solution.xml │ │ └── Workflows │ │ │ ├── AuthenticationTypeChanges-8B852C0C-E85F-EA11-A811-000D3A59F6FF.xaml │ │ │ ├── AuthenticationTypeChanges-8B852C0C-E85F-EA11-A811-000D3A59F6FF.xaml.data.xml │ │ │ ├── SetNameFieldToPreventDuplicate-5876FC0E-5469-EA11-A811-000D3A59F6FF.xaml │ │ │ └── SetNameFieldToPreventDuplicate-5876FC0E-5469-EA11-A811-000D3A59F6FF.xaml.data.xml │ ├── ControlManifest.Input.xml │ ├── css │ │ └── AzureMapsGrid.css │ ├── index.ts │ └── preview.png ├── README.md ├── data │ ├── generate.py │ ├── utility_categories.csv │ ├── utility_locations.csv │ └── utility_powerapps_table.txt ├── featureconfig.json ├── images │ └── azuremaps-subgrid-settings.png ├── package-lock.json ├── package.json ├── pcfconfig.json ├── spkl.json ├── tsconfig.json └── unpack.ps1 ├── BingMapsGrid ├── .eslintrc.json ├── .gitignore ├── BingMapsGrid.pcfproj ├── BingMapsGrid │ ├── BingMapsGridControl │ │ ├── .gitignore │ │ ├── BingMapsGridControl.cdsproj │ │ └── Other │ │ │ ├── Customizations.xml │ │ │ ├── Relationships.xml │ │ │ └── Solution.xml │ ├── ControlManifest.Input.xml │ ├── css │ │ └── BingMapsGrid.css │ ├── index.ts │ └── preview.png ├── README.md ├── featureconfig.json ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── BooleanOptionset ├── .eslintrc.json ├── .gitignore ├── BooleanOptionset.pcfproj ├── BooleanOptionset │ ├── BooleanOptionsetControl │ │ ├── .gitignore │ │ ├── BooleanOptionsetControl.cdsproj │ │ └── Other │ │ │ ├── Customizations.xml │ │ │ ├── Relationships.xml │ │ │ └── Solution.xml │ ├── ControlManifest.Input.xml │ ├── css │ │ └── style.css │ └── index.ts ├── README.md ├── featureconfig.json ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── Calendar ├── .eslintrc.json ├── .gitignore ├── Calendar.pcfproj ├── Calendar │ ├── CalendarControl.tsx │ ├── CalendarControl │ │ ├── .gitignore │ │ ├── CalendarControl.cdsproj │ │ └── Other │ │ │ ├── Customizations.xml │ │ │ ├── Relationships.xml │ │ │ └── Solution.xml │ ├── ControlManifest.Input.xml │ ├── accessors │ │ └── tooltipAccessor.tsx │ ├── components │ │ ├── MobileToolbar.tsx │ │ ├── Translations.tsx │ │ └── WorkWeek.tsx │ ├── css │ │ └── react-big-calendar.override.css │ ├── getters │ │ ├── dayPropsGetter.ts │ │ ├── eventPropsGetter.ts │ │ └── index.ts │ ├── handlers │ │ ├── handleEventKeyPress.ts │ │ ├── handleEventSelected.ts │ │ ├── handleNavigate.ts │ │ ├── handleOnView.ts │ │ ├── handleSlotSelect.ts │ │ └── index.ts │ ├── hooks │ │ ├── index.ts │ │ ├── useCalendarColors.ts │ │ ├── useCalendarData.ts │ │ ├── useCalendarDate.ts │ │ ├── useCalendarHourRange.ts │ │ ├── useCalendarPopup.ts │ │ ├── useCalendarSelectable.ts │ │ ├── useCalendarStepAndTimeslots.ts │ │ ├── useCalendarView.ts │ │ ├── useDayLayoutAlgorithm.ts │ │ ├── useEventHeaderFormat.ts │ │ └── useEventSelectable.ts │ ├── index.ts │ ├── renderers │ │ ├── agendaEventRenderer.tsx │ │ ├── index.ts │ │ ├── resourceHeaderRenderer.tsx │ │ ├── timeGutterHeaderRenderer.tsx │ │ └── timeSlotWrapperRenderer.tsx │ ├── types │ │ ├── IEvent.ts │ │ ├── Keys.ts │ │ ├── Resource.ts │ │ ├── SlotInfo.ts │ │ ├── index.ts │ │ ├── is-hexcolor.d.ts │ │ └── react-big-calendar.d.ts │ └── utils │ │ ├── CalendarHelpers.ts │ │ ├── Constants.ts │ │ ├── DataHelpers.ts │ │ └── index.ts ├── README.md ├── Sample │ ├── CanvasCalendar_1.0.0.5.zip │ ├── CanvasCalendar_1.0.0.5_managed.zip │ ├── CanvasCalendar_1_0_0_4.zip │ └── CanvasCalendar_1_0_0_4_managed.zip ├── data │ ├── events.csv │ ├── events_powerapps_table.txt │ ├── generate.py │ └── resources.csv ├── featureconfig.json ├── images │ ├── CalendarControlForCanvasAndModel.png │ ├── CanvasCalendarAllResourcesAdvancedProps.png │ ├── CanvasCalendarAllResourcesDataSource.png │ ├── CanvasCalendarAllResourcesResourceHeader.png │ ├── CanvasCalendarDateControlProp.png │ ├── CanvasCalendarDateOnChange.png │ ├── CanvasCalendarDateOnStart.png │ ├── CanvasCalendarDatePickerProps.png │ ├── CanvasCalendarEventsOnly.png │ ├── CanvasCalendarEventsOnlyAdvancedProps.png │ ├── CanvasCalendarEventsOnlyDataSource.png │ ├── CanvasCalendarEventsOnlyOnLoad.png │ ├── CanvasCalendarOnChange.png │ ├── CanvasCalendarOnChangeProperties.png │ ├── CanvasCalendarResourcesWithEventsAdvancedProps.png │ ├── CanvasCalendarResourcesWithEventsData.png │ ├── CanvasCalendarResourcesWithEventsDataSource.png │ ├── CanvasCalendarResourcesWithEventsResourceHeader.png │ ├── ModelCalendarAddColumns.png │ ├── ModelCalendarAddControl.png │ ├── ModelCalendarSelectCalendarControl.png │ ├── ModelCalendarSelectProperties.png │ ├── ModelCalendarShowAs.png │ ├── ModelCalendarShowAsCalendar.png │ ├── ModelCalendarSubGrid.png │ ├── ModelCalendarSubGridHeight.png │ └── calendarcontrol.gif ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── CanvasFileDownloader ├── .eslintrc.json ├── .gitignore ├── CanvasFileDownloader.pcfproj ├── CanvasFileDownloader │ ├── ControlManifest.Input.xml │ └── index.ts ├── README.md ├── Solution │ └── CanvasFileDownloaderControl │ │ ├── .gitignore │ │ ├── CanvasFileDownloaderControl.cdsproj │ │ └── src │ │ └── Other │ │ ├── Customizations.xml │ │ ├── Relationships.xml │ │ └── Solution.xml ├── featureconfig.json ├── images │ ├── AddComponentToForm.png │ ├── CanvasFileDownloader.png │ ├── ComponentProperties.png │ ├── DownloadButton.png │ ├── FileDownloaded.png │ ├── ImportComponent.png │ └── ImportComponentRibbon.png ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── CanvasFileUploader ├── .eslintrc.json ├── .gitignore ├── CanvasFileUploader.pcfproj ├── CanvasFileUploader │ ├── ControlManifest.Input.xml │ └── index.ts ├── README.md ├── Solution │ └── CanvasFileUploaderComponent │ │ ├── .gitignore │ │ ├── CanvasFileUploaderComponent.cdsproj │ │ └── src │ │ └── Other │ │ ├── Customizations.xml │ │ ├── Relationships.xml │ │ └── Solution.xml ├── featureconfig.json ├── images │ ├── AddComponentToForm.png │ ├── CanvasComponentUpload.png │ ├── CanvasFileUploader.gif │ ├── ComponentProperties.png │ ├── CustomAppStart.png │ ├── ImageViewer.png │ ├── ImportComponent.png │ ├── ImportComponentRibbon.png │ ├── PDFViewer.png │ └── StandardInput.png ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── ColorPicker ├── .eslintrc.json ├── .gitignore ├── ColorPicker.pcfproj ├── ColorPicker │ ├── ColorPicker.tsx │ ├── ControlManifest.Input.xml │ ├── ControlPicker │ │ ├── .gitignore │ │ ├── ControlPicker.cdsproj │ │ └── Other │ │ │ ├── Customizations.xml │ │ │ ├── Relationships.xml │ │ │ └── Solution.xml │ ├── index.ts │ └── preview.png ├── README.md ├── featureconfig.json ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── DadJoke ├── .eslintrc.json ├── .gitignore ├── DadJoke.pcfproj ├── DadJoke │ ├── ControlManifest.Input.xml │ ├── css │ │ └── DadJoke.css │ ├── img │ │ └── preview.png │ ├── index.ts │ └── strings │ │ └── DadJoke.1033.resx ├── Solution │ └── RAW!DadJoke │ │ ├── .gitignore │ │ ├── RAW!DadJoke.cdsproj │ │ └── src │ │ └── Other │ │ ├── Customizations.xml │ │ ├── Relationships.xml │ │ └── Solution.xml ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── DetailListGrid ├── .eslintrc.json ├── .gitignore ├── DetailListGrid.pcfproj ├── DetailListGrid │ ├── ControlManifest.Input.xml │ ├── DetailListGridControl.tsx │ ├── DetailListGridControl │ │ ├── .gitignore │ │ ├── DetailListGridControl.cdsproj │ │ └── Other │ │ │ ├── Customizations.xml │ │ │ ├── Relationships.xml │ │ │ └── Solution.xml │ ├── css │ │ └── DetailListGridControl.css │ └── index.ts ├── README.md ├── featureconfig.json ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── DocxTemplatesCanvas ├── .eslintrc.json ├── .gitignore ├── DocxTemplatesCanvas.pcfproj ├── DocxTemplatesCanvas │ ├── ControlManifest.Input.xml │ └── index.ts ├── README.MD ├── Sample │ ├── DocxTemplateSample_1_0_0_1.zip │ ├── DocxTemplateSample_1_0_0_1_managed.zip │ ├── SampleTemplate.docx │ ├── SampleTemplate.png │ └── contoso.png ├── Solution │ └── RAWDocxTemplatesCanvas │ │ ├── .gitignore │ │ ├── RAWDocxTemplatesCanvas.cdsproj │ │ └── src │ │ └── Other │ │ ├── Customizations.xml │ │ ├── Relationships.xml │ │ └── Solution.xml ├── featureconfig.json ├── image.png ├── package-lock.json ├── package.json ├── pcfconfig.json ├── tsconfig.json └── webpack.config.js ├── DownloadTools.ps1 ├── ExportPDFManager ├── .gitignore ├── ExportPDFManager.pcfproj ├── ExportPDFManager │ ├── ControlManifest.Input.xml │ ├── ExportPDFManagerApp.tsx │ ├── components │ │ └── ExportPDFManager.tsx │ ├── hooks │ │ └── useDisabledStatus.ts │ ├── index.ts │ ├── resources │ │ ├── ExportPDFManager.1025.resx │ │ ├── ExportPDFManager.1031.resx │ │ ├── ExportPDFManager.1033.resx │ │ ├── ExportPDFManager.1036.resx │ │ ├── ExportPDFManager.1040.resx │ │ ├── ExportPDFManager.1041.resx │ │ ├── ExportPDFManager.1042.resx │ │ ├── ExportPDFManager.1043.resx │ │ ├── ExportPDFManager.3082.resx │ │ └── ExportPDFManager.ts │ ├── services │ │ ├── MetadataService.ts │ │ ├── PcfContext.tsx │ │ └── PcfContextService.ts │ ├── types │ │ ├── PdfEntity.ts │ │ ├── PdfSetting.ts │ │ ├── SaveState.ts │ │ └── index.ts │ └── utils │ │ └── styles.ts ├── README.MD ├── Solution │ └── ExportPDFManagerControl │ │ ├── .gitignore │ │ ├── ExportPDFManagerControl.cdsproj │ │ └── src │ │ └── Other │ │ ├── Customizations.xml │ │ ├── Relationships.xml │ │ └── Solution.xml ├── eslint.config.mjs ├── featureconfig.json ├── images │ ├── 2025-03-31_16-12-42.PNG │ ├── 2025-03-31_16-13-13.PNG │ ├── 2025-04-02_15-21-37.PNG │ ├── 2025-04-02_15-22-37.PNG │ └── Export PDF Manager.gif ├── package-lock.json ├── package.json ├── pcfconfig.json ├── tsconfig.json └── webpack.config.js ├── Frame ├── .eslintrc.json ├── .gitignore ├── RAWframeComponent.pcfproj ├── README.md ├── Sample │ └── RAWFrameSample_1_0_0_5_managed.zip ├── Solution │ └── RAWframe │ │ ├── .gitignore │ │ ├── RAWframe.cdsproj │ │ └── src │ │ └── Other │ │ ├── Customizations.xml │ │ ├── Relationships.xml │ │ └── Solution.xml ├── featureconfig.json ├── frame │ ├── ControlManifest.Input.xml │ └── index.ts ├── images │ └── RAWFrame.png ├── js │ ├── BackButton.html │ ├── CanvasAppLauncher.html │ ├── CreateContacts.html │ ├── DefaultOptionSetDisplayValue.html │ └── GetFirstAccount.html ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── ImageCrop ├── .gitignore ├── ImageCrop.pcfproj ├── ImageCrop │ ├── ControlManifest.Input.xml │ ├── components │ │ ├── imageCropControl.tsx │ │ └── imageCropWrapper.tsx │ ├── hooks │ │ ├── cropUtils.ts │ │ ├── index.ts │ │ ├── useAspect.ts │ │ ├── useBrowserScaling.ts │ │ ├── useCircularCrop.ts │ │ ├── useCropToBase64.ts │ │ ├── useDefaultCrop.ts │ │ ├── useDisabled.ts │ │ ├── useImageLoaded.ts │ │ ├── useImageSrc.ts │ │ ├── useKeepSelection.ts │ │ ├── useLocked.ts │ │ ├── useMaxHeight.ts │ │ ├── useMaxWidth.ts │ │ ├── useMinHeight.ts │ │ ├── useMinWidth.ts │ │ ├── useResetCropOnImageLoad.ts │ │ ├── useResponsiveAppScaling.ts │ │ ├── useRotation.ts │ │ ├── useRuleOfThirds.ts │ │ └── useScaling.ts │ ├── imageCropApp.tsx │ ├── index.ts │ ├── resources │ │ └── ImageCrop.1033.resx │ ├── services │ │ ├── pcfContext.tsx │ │ └── pcfContextService.ts │ ├── types │ │ ├── actionOutputSchema.ts │ │ ├── imageCropTypes.ts │ │ └── index.ts │ └── utils │ │ ├── cropUtils.ts │ │ ├── index.ts │ │ └── stringUtils.ts ├── README.md ├── Sample │ └── RAW Image Crop.msapp ├── Solution │ └── RAW!ImageCropControl │ │ ├── .gitignore │ │ ├── RAW!ImageCropControl.cdsproj │ │ └── src │ │ └── Other │ │ ├── Customizations.xml │ │ ├── Relationships.xml │ │ └── Solution.xml ├── eslint.config.mjs ├── featureconfig.json ├── images │ └── image-cropper-demo.gif ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── LICENSE ├── PDFFormFillCanvas ├── .eslintrc.json ├── .gitignore ├── PDFFormFillCanvas.pcfproj ├── PDFFormFillCanvas │ ├── ControlManifest.Input.xml │ └── index.ts ├── README.md ├── Sample │ └── PDFFormFiller_1_0_0_1_managed.zip ├── Solutions │ └── RAWPDFFormFillCanvas │ │ ├── .gitignore │ │ ├── RAWPDFFormFillCanvas.cdsproj │ │ └── src │ │ └── Other │ │ ├── Customizations.xml │ │ ├── Relationships.xml │ │ └── Solution.xml ├── featureconfig.json ├── images │ ├── ImportComponent.png │ ├── ImportComponentFromCode.png │ ├── PDFFormFill.png │ └── YouTube.png ├── package-lock.json ├── package.json ├── pcfconfig.json ├── tsconfig.json └── webpack.config.js ├── PowerPagesFileManager ├── .gitignore ├── PowerPagesFileManager.pcfproj ├── PowerPagesFileManager │ ├── ControlManifest.Input.xml │ ├── PortalFilesApp.tsx │ ├── components │ │ ├── AnnotationsGrid.tsx │ │ ├── DeleteConfirmationDialog.tsx │ │ ├── FileOverwriteDialog.tsx │ │ └── HeaderButtons.tsx │ ├── hooks │ │ ├── useAnnotations.ts │ │ ├── useFileUploads.ts │ │ └── useWindowSize.ts │ ├── index.ts │ ├── resources │ │ ├── PortalFiles.1031.resx │ │ ├── PortalFiles.1033.resx │ │ ├── PortalFiles.1034.resx │ │ ├── PortalFiles.1036.resx │ │ ├── PortalFiles.1040.resx │ │ ├── PortalFiles.1041.resx │ │ ├── PortalFiles.1042.resx │ │ ├── PortalFiles.1043.resx │ │ ├── PortalFiles.1046.resx │ │ ├── PortalFiles.2052.resx │ │ └── PortalFiles.3082.resx │ ├── services │ │ ├── AnnotationService.ts │ │ ├── HttpClient.ts │ │ ├── PcfContext.tsx │ │ └── PcfContextService.ts │ ├── types │ │ ├── Annotations.ts │ │ └── index.ts │ └── utils │ │ ├── constants.ts │ │ ├── formatDate.ts │ │ ├── index.ts │ │ ├── layouts.ts │ │ ├── localization.ts │ │ └── themeGenerator.ts ├── README.MD ├── Solution │ └── PowerPagesFileManagerSolution │ │ ├── .gitignore │ │ ├── PowerPagesFileManagerSolution.cdsproj │ │ └── src │ │ └── Other │ │ ├── Customizations.xml │ │ ├── Relationships.xml │ │ └── Solution.xml ├── eslint.config.mjs ├── images │ └── PowerPagesFileManager.gif ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── README.md ├── RestrictedChoice ├── .gitignore ├── README.MD ├── RestrictedChoice.pcfproj ├── RestrictedChoice │ ├── ControlManifest.Input.xml │ ├── RestrictedChoiceApp.tsx │ ├── components │ │ └── RestrictedChoice.tsx │ ├── index.ts │ ├── resources │ │ ├── RestrictedChoice.1025.resx │ │ ├── RestrictedChoice.1031.resx │ │ ├── RestrictedChoice.1033.resx │ │ ├── RestrictedChoice.1036.resx │ │ ├── RestrictedChoice.1040.resx │ │ ├── RestrictedChoice.1041.resx │ │ ├── RestrictedChoice.1042.resx │ │ ├── RestrictedChoice.1043.resx │ │ └── RestrictedChoice.3082.resx │ ├── services │ │ ├── PcfContext.tsx │ │ └── PcfContextService.ts │ └── utils │ │ └── styles.ts ├── Solution │ └── RestrictedChoiceControl │ │ ├── .gitignore │ │ ├── RestrictedChoiceControl.cdsproj │ │ └── src │ │ └── Other │ │ ├── Customizations.xml │ │ ├── Relationships.xml │ │ └── Solution.xml ├── eslint.config.mjs ├── featureconfig.json ├── images │ └── 2025-03-07_15-36-00.png ├── package-lock.json ├── package.json ├── pcfconfig.json ├── tsconfig.json └── webpack.config.js ├── RotationalImage ├── .eslintrc.json ├── .gitignore ├── README.md ├── RotationalImage.pcfproj ├── RotationalImage │ ├── ControlManifest.Input.xml │ ├── RotationalImageComponent.tsx │ └── index.ts ├── Solution │ └── RotationalImageComponent │ │ ├── .gitignore │ │ ├── RotationalImageComponent.cdsproj │ │ └── src │ │ └── Other │ │ ├── Customizations.xml │ │ ├── Relationships.xml │ │ └── Solution.xml ├── featureconfig.json ├── images │ ├── AddComponentToForm.png │ ├── ComponentProperties.png │ ├── ConverImageToBase64.gif │ ├── ImportComponent.png │ ├── ImportComponentRibbon.png │ ├── RotationalImage.gif │ └── RunOnStart.png ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── RuntimeInfo ├── .eslintrc.json ├── .gitignore ├── README.md ├── RuntimeInfo.pcfproj ├── RuntimeInfo │ ├── ControlManifest.Input.xml │ ├── browser-info.d.ts │ └── index.ts ├── Solution │ └── RuntimeInfoComponent │ │ ├── .gitignore │ │ ├── RuntimeInfoComponent.cdsproj │ │ └── src │ │ └── Other │ │ ├── Customizations.xml │ │ ├── Relationships.xml │ │ └── Solution.xml ├── featureconfig.json ├── images │ ├── EditComponentName.png │ ├── EditComponentNameUpdateName.png │ ├── ImportComponent.png │ ├── ImportComponentFromCode.png │ ├── RunTimeInfo.png │ ├── RuntimeInfoDesktopFirefox.png │ ├── RuntimeInfoPhone.png │ └── UtilizePropertyInTextField.png ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── Scheduler ├── .github │ └── instructions │ │ └── copilot.instructions.md ├── .gitignore ├── .vscode │ └── settings.json ├── README.md ├── Sample │ └── RAW! Scheduler Sample.msapp ├── Scheduler.pcfproj ├── Scheduler │ ├── ControlManifest.Input.xml │ ├── components │ │ ├── callbacks │ │ │ ├── eventClicked.ts │ │ │ ├── index.ts │ │ │ ├── newEvent.ts │ │ │ ├── nextClick.ts │ │ │ ├── onViewChange.ts │ │ │ ├── prevClick.ts │ │ │ ├── slotClickedFunc.ts │ │ │ └── toggleExpandFunc.ts │ │ ├── renderers │ │ │ ├── eventItemPopoverTemplateResolver.tsx │ │ │ ├── eventItemTemplateResolver.tsx │ │ │ └── index.ts │ │ ├── scheduler.tsx │ │ └── schedulerWrapper.tsx │ ├── hooks │ │ ├── index.ts │ │ ├── useAvailableViews.ts │ │ ├── useDayViewOptions.ts │ │ ├── useDisplayWeekend.ts │ │ ├── useNonWorkingTimeColors.ts │ │ ├── useResourceNameHeader.ts │ │ ├── useSchedulerDate.ts │ │ ├── useSchedulerLanguage.ts │ │ ├── useSchedulerView.ts │ │ ├── useShowHeader.ts │ │ └── useWorkWeekDays.ts │ ├── index.ts │ ├── mocks │ │ ├── MockPCFClient.ts │ │ ├── MockPCFContext.ts │ │ ├── MockPCFDataSet.ts │ │ ├── MockPCFDevice.ts │ │ ├── MockPCFFactory.ts │ │ ├── MockPCFFormatting.ts │ │ ├── MockPCFMode.ts │ │ ├── MockPCFNavigation.ts │ │ ├── MockPCFParameters.ts │ │ ├── MockPCFResources.ts │ │ ├── MockPCFUserSettings.ts │ │ ├── MockPCFUtility.ts │ │ ├── MockPCFWebApi.ts │ │ └── index.ts │ ├── resources │ │ ├── Scheduler.1025.resx │ │ ├── Scheduler.1031.resx │ │ ├── Scheduler.1033.resx │ │ ├── Scheduler.1036.resx │ │ ├── Scheduler.1040.resx │ │ ├── Scheduler.1041.resx │ │ ├── Scheduler.1042.resx │ │ ├── Scheduler.1043.resx │ │ ├── Scheduler.3082.resx │ │ └── schedulerOverrides.css │ ├── schedulerApp.tsx │ ├── services │ │ ├── calendarDataService.ts │ │ ├── metadataService.ts │ │ ├── pcfContext.tsx │ │ ├── pcfContextService.ts │ │ └── schedulerBehaviors.ts │ ├── test │ │ ├── index.html │ │ ├── main.tsx │ │ ├── testApp.tsx │ │ ├── tsconfig.app.json │ │ └── vite.config.ts │ ├── types │ │ ├── extendedSchedulerData.ts │ │ ├── index.ts │ │ ├── schedulerTypes.ts │ │ └── schedulerViews.ts │ └── utils │ │ ├── constants.ts │ │ ├── demoData.ts │ │ ├── formattingHelpers.ts │ │ ├── locales.ts │ │ └── localization.ts ├── Solution │ └── RAWSchedulerComponent │ │ ├── .gitignore │ │ ├── RAWSchedulerComponent.cdsproj │ │ └── src │ │ └── Other │ │ ├── Customizations.xml │ │ ├── Relationships.xml │ │ └── Solution.xml ├── data │ ├── events.csv │ ├── events_powerapps_table.txt │ ├── generate.py │ └── resources.csv ├── eslint.config.mjs ├── featureconfig.json ├── images │ └── scheduler-demo.gif ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── WorldDaylightMap ├── .eslintrc.json ├── .gitignore ├── README.md ├── Sample │ └── World Daylight Map.msapp ├── Solution │ └── RAWWorldDaylightMap │ │ ├── .gitignore │ │ ├── RAWWorldDaylightMap.cdsproj │ │ └── src │ │ └── Other │ │ ├── Customizations.xml │ │ ├── Relationships.xml │ │ └── Solution.xml ├── WorldDaylightMap.pcfproj ├── WorldDaylightMap │ ├── ControlManifest.Input.xml │ ├── WorldDaylightMap.tsx │ ├── css │ │ └── WorldDaylightMap.css │ ├── img │ │ └── preview.png │ ├── index.ts │ └── strings │ │ └── WorldDaylightMap.1033.resx ├── featureconfig.json ├── images │ └── world-daylight-map.png ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── azure-pipelines.yml └── package.json /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/funding.yml: -------------------------------------------------------------------------------- 1 | buy_me_a_coffee: richardawilson -------------------------------------------------------------------------------- /.github/instructions/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/.github/instructions/copilot-instructions.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/.gitignore -------------------------------------------------------------------------------- /.vite/deps/_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/.vite/deps/_metadata.json -------------------------------------------------------------------------------- /.vite/deps/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /AzureMapsGrid/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/.eslintrc.json -------------------------------------------------------------------------------- /AzureMapsGrid/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/.gitignore -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid.pcfproj -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl.tsx -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/.gitignore -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/AzureMapsGridControl.cdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/AzureMapsGridControl.cdsproj -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Controls/raw_RAW.AzureMapsGrid.AzureMapsGrid/ControlManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Controls/raw_RAW.AzureMapsGrid.AzureMapsGrid/ControlManifest.xml -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Controls/raw_RAW.AzureMapsGrid.AzureMapsGrid/ControlManifest.xml.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Controls/raw_RAW.AzureMapsGrid.AzureMapsGrid/ControlManifest.xml.data.xml -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Controls/raw_RAW.AzureMapsGrid.AzureMapsGrid/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Controls/raw_RAW.AzureMapsGrid.AzureMapsGrid/bundle.js -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Controls/raw_RAW.AzureMapsGrid.AzureMapsGrid/css/AzureMapsGrid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Controls/raw_RAW.AzureMapsGrid.AzureMapsGrid/css/AzureMapsGrid.css -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Entities/raw_azuremapsconfig/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Entities/raw_azuremapsconfig/Entity.xml -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Entities/raw_azuremapsconfig/FormXml/card/{419de572-8678-4625-a9bc-a9a5ad1fbb42}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Entities/raw_azuremapsconfig/FormXml/card/{419de572-8678-4625-a9bc-a9a5ad1fbb42}.xml -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Entities/raw_azuremapsconfig/FormXml/card/{419de572-8678-4625-a9bc-a9a5ad1fbb42}_managed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Entities/raw_azuremapsconfig/FormXml/card/{419de572-8678-4625-a9bc-a9a5ad1fbb42}_managed.xml -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Entities/raw_azuremapsconfig/FormXml/main/{8f94d5d3-31e0-40d7-b3e3-55f9d5b9c38c}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Entities/raw_azuremapsconfig/FormXml/main/{8f94d5d3-31e0-40d7-b3e3-55f9d5b9c38c}.xml -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Entities/raw_azuremapsconfig/FormXml/main/{8f94d5d3-31e0-40d7-b3e3-55f9d5b9c38c}_managed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Entities/raw_azuremapsconfig/FormXml/main/{8f94d5d3-31e0-40d7-b3e3-55f9d5b9c38c}_managed.xml -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Entities/raw_azuremapsconfig/FormXml/quick/{1d791903-0181-4e65-b9de-981a2e3ed1ed}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Entities/raw_azuremapsconfig/FormXml/quick/{1d791903-0181-4e65-b9de-981a2e3ed1ed}.xml -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Entities/raw_azuremapsconfig/FormXml/quick/{1d791903-0181-4e65-b9de-981a2e3ed1ed}_managed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Entities/raw_azuremapsconfig/FormXml/quick/{1d791903-0181-4e65-b9de-981a2e3ed1ed}_managed.xml -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Entities/raw_azuremapsconfig/RibbonDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Entities/raw_azuremapsconfig/RibbonDiff.xml -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Entities/raw_azuremapsconfig/SavedQueries/{1eab5070-7af9-4a9f-8a46-6a2628998602}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Entities/raw_azuremapsconfig/SavedQueries/{1eab5070-7af9-4a9f-8a46-6a2628998602}.xml -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Entities/raw_azuremapsconfig/SavedQueries/{2d385366-63f4-4440-b51b-72a8f88cc502}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Entities/raw_azuremapsconfig/SavedQueries/{2d385366-63f4-4440-b51b-72a8f88cc502}.xml -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Entities/raw_azuremapsconfig/SavedQueries/{40ff0baa-7642-484e-a6f4-f329d7c793c9}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Entities/raw_azuremapsconfig/SavedQueries/{40ff0baa-7642-484e-a6f4-f329d7c793c9}.xml -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Entities/raw_azuremapsconfig/SavedQueries/{4a465148-14ae-43ea-adbe-d17b6a60bab1}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Entities/raw_azuremapsconfig/SavedQueries/{4a465148-14ae-43ea-adbe-d17b6a60bab1}.xml -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Entities/raw_azuremapsconfig/SavedQueries/{6072346f-91ab-4b51-89ba-88c22c3a4425}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Entities/raw_azuremapsconfig/SavedQueries/{6072346f-91ab-4b51-89ba-88c22c3a4425}.xml -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Entities/raw_azuremapsconfig/SavedQueries/{cee6f7fa-e25f-ea11-a811-000d3a59f6ff}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Entities/raw_azuremapsconfig/SavedQueries/{cee6f7fa-e25f-ea11-a811-000d3a59f6ff}.xml -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Entities/raw_azuremapsconfig/SavedQueries/{e3214bf5-cfed-4001-9ed5-08b037e31505}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Entities/raw_azuremapsconfig/SavedQueries/{e3214bf5-cfed-4001-9ed5-08b037e31505}.xml -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/OptionSets/raw_azuremapsauthenticationtype.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/OptionSets/raw_azuremapsauthenticationtype.xml -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Other/Customizations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Other/Customizations.xml -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Other/Relationships.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Other/Relationships.xml -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Other/Relationships/BusinessUnit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Other/Relationships/BusinessUnit.xml -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Other/Relationships/Owner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Other/Relationships/Owner.xml -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Other/Relationships/SystemUser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Other/Relationships/SystemUser.xml -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Other/Relationships/Team.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Other/Relationships/Team.xml -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Other/Solution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Other/Solution.xml -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Workflows/AuthenticationTypeChanges-8B852C0C-E85F-EA11-A811-000D3A59F6FF.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Workflows/AuthenticationTypeChanges-8B852C0C-E85F-EA11-A811-000D3A59F6FF.xaml -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Workflows/AuthenticationTypeChanges-8B852C0C-E85F-EA11-A811-000D3A59F6FF.xaml.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Workflows/AuthenticationTypeChanges-8B852C0C-E85F-EA11-A811-000D3A59F6FF.xaml.data.xml -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Workflows/SetNameFieldToPreventDuplicate-5876FC0E-5469-EA11-A811-000D3A59F6FF.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Workflows/SetNameFieldToPreventDuplicate-5876FC0E-5469-EA11-A811-000D3A59F6FF.xaml -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Workflows/SetNameFieldToPreventDuplicate-5876FC0E-5469-EA11-A811-000D3A59F6FF.xaml.data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/Workflows/SetNameFieldToPreventDuplicate-5876FC0E-5469-EA11-A811-000D3A59F6FF.xaml.data.xml -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/ControlManifest.Input.xml -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/css/AzureMapsGrid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/css/AzureMapsGrid.css -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/index.ts -------------------------------------------------------------------------------- /AzureMapsGrid/AzureMapsGrid/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/AzureMapsGrid/preview.png -------------------------------------------------------------------------------- /AzureMapsGrid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/README.md -------------------------------------------------------------------------------- /AzureMapsGrid/data/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/data/generate.py -------------------------------------------------------------------------------- /AzureMapsGrid/data/utility_categories.csv: -------------------------------------------------------------------------------- 1 | Category 2 | Active 3 | Maintenance 4 | Retired 5 | -------------------------------------------------------------------------------- /AzureMapsGrid/data/utility_locations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/data/utility_locations.csv -------------------------------------------------------------------------------- /AzureMapsGrid/data/utility_powerapps_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/data/utility_powerapps_table.txt -------------------------------------------------------------------------------- /AzureMapsGrid/featureconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /AzureMapsGrid/images/azuremaps-subgrid-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/images/azuremaps-subgrid-settings.png -------------------------------------------------------------------------------- /AzureMapsGrid/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/package-lock.json -------------------------------------------------------------------------------- /AzureMapsGrid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/package.json -------------------------------------------------------------------------------- /AzureMapsGrid/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/pcfconfig.json -------------------------------------------------------------------------------- /AzureMapsGrid/spkl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/spkl.json -------------------------------------------------------------------------------- /AzureMapsGrid/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/tsconfig.json -------------------------------------------------------------------------------- /AzureMapsGrid/unpack.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/AzureMapsGrid/unpack.ps1 -------------------------------------------------------------------------------- /BingMapsGrid/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/BingMapsGrid/.eslintrc.json -------------------------------------------------------------------------------- /BingMapsGrid/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/BingMapsGrid/.gitignore -------------------------------------------------------------------------------- /BingMapsGrid/BingMapsGrid.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/BingMapsGrid/BingMapsGrid.pcfproj -------------------------------------------------------------------------------- /BingMapsGrid/BingMapsGrid/BingMapsGridControl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/BingMapsGrid/BingMapsGrid/BingMapsGridControl/.gitignore -------------------------------------------------------------------------------- /BingMapsGrid/BingMapsGrid/BingMapsGridControl/BingMapsGridControl.cdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/BingMapsGrid/BingMapsGrid/BingMapsGridControl/BingMapsGridControl.cdsproj -------------------------------------------------------------------------------- /BingMapsGrid/BingMapsGrid/BingMapsGridControl/Other/Customizations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/BingMapsGrid/BingMapsGrid/BingMapsGridControl/Other/Customizations.xml -------------------------------------------------------------------------------- /BingMapsGrid/BingMapsGrid/BingMapsGridControl/Other/Relationships.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /BingMapsGrid/BingMapsGrid/BingMapsGridControl/Other/Solution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/BingMapsGrid/BingMapsGrid/BingMapsGridControl/Other/Solution.xml -------------------------------------------------------------------------------- /BingMapsGrid/BingMapsGrid/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/BingMapsGrid/BingMapsGrid/ControlManifest.Input.xml -------------------------------------------------------------------------------- /BingMapsGrid/BingMapsGrid/css/BingMapsGrid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/BingMapsGrid/BingMapsGrid/css/BingMapsGrid.css -------------------------------------------------------------------------------- /BingMapsGrid/BingMapsGrid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/BingMapsGrid/BingMapsGrid/index.ts -------------------------------------------------------------------------------- /BingMapsGrid/BingMapsGrid/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/BingMapsGrid/BingMapsGrid/preview.png -------------------------------------------------------------------------------- /BingMapsGrid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/BingMapsGrid/README.md -------------------------------------------------------------------------------- /BingMapsGrid/featureconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /BingMapsGrid/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/BingMapsGrid/package-lock.json -------------------------------------------------------------------------------- /BingMapsGrid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/BingMapsGrid/package.json -------------------------------------------------------------------------------- /BingMapsGrid/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/BingMapsGrid/pcfconfig.json -------------------------------------------------------------------------------- /BingMapsGrid/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/BingMapsGrid/tsconfig.json -------------------------------------------------------------------------------- /BooleanOptionset/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/BooleanOptionset/.eslintrc.json -------------------------------------------------------------------------------- /BooleanOptionset/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/BooleanOptionset/.gitignore -------------------------------------------------------------------------------- /BooleanOptionset/BooleanOptionset.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/BooleanOptionset/BooleanOptionset.pcfproj -------------------------------------------------------------------------------- /BooleanOptionset/BooleanOptionset/BooleanOptionsetControl/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /obj -------------------------------------------------------------------------------- /BooleanOptionset/BooleanOptionset/BooleanOptionsetControl/BooleanOptionsetControl.cdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/BooleanOptionset/BooleanOptionset/BooleanOptionsetControl/BooleanOptionsetControl.cdsproj -------------------------------------------------------------------------------- /BooleanOptionset/BooleanOptionset/BooleanOptionsetControl/Other/Customizations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/BooleanOptionset/BooleanOptionset/BooleanOptionsetControl/Other/Customizations.xml -------------------------------------------------------------------------------- /BooleanOptionset/BooleanOptionset/BooleanOptionsetControl/Other/Relationships.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /BooleanOptionset/BooleanOptionset/BooleanOptionsetControl/Other/Solution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/BooleanOptionset/BooleanOptionset/BooleanOptionsetControl/Other/Solution.xml -------------------------------------------------------------------------------- /BooleanOptionset/BooleanOptionset/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/BooleanOptionset/BooleanOptionset/ControlManifest.Input.xml -------------------------------------------------------------------------------- /BooleanOptionset/BooleanOptionset/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/BooleanOptionset/BooleanOptionset/css/style.css -------------------------------------------------------------------------------- /BooleanOptionset/BooleanOptionset/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/BooleanOptionset/BooleanOptionset/index.ts -------------------------------------------------------------------------------- /BooleanOptionset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/BooleanOptionset/README.md -------------------------------------------------------------------------------- /BooleanOptionset/featureconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /BooleanOptionset/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/BooleanOptionset/package-lock.json -------------------------------------------------------------------------------- /BooleanOptionset/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/BooleanOptionset/package.json -------------------------------------------------------------------------------- /BooleanOptionset/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/BooleanOptionset/pcfconfig.json -------------------------------------------------------------------------------- /BooleanOptionset/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/BooleanOptionset/tsconfig.json -------------------------------------------------------------------------------- /Calendar/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/.eslintrc.json -------------------------------------------------------------------------------- /Calendar/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/.gitignore -------------------------------------------------------------------------------- /Calendar/Calendar.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar.pcfproj -------------------------------------------------------------------------------- /Calendar/Calendar/CalendarControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/CalendarControl.tsx -------------------------------------------------------------------------------- /Calendar/Calendar/CalendarControl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/CalendarControl/.gitignore -------------------------------------------------------------------------------- /Calendar/Calendar/CalendarControl/CalendarControl.cdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/CalendarControl/CalendarControl.cdsproj -------------------------------------------------------------------------------- /Calendar/Calendar/CalendarControl/Other/Customizations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/CalendarControl/Other/Customizations.xml -------------------------------------------------------------------------------- /Calendar/Calendar/CalendarControl/Other/Relationships.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Calendar/Calendar/CalendarControl/Other/Solution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/CalendarControl/Other/Solution.xml -------------------------------------------------------------------------------- /Calendar/Calendar/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/ControlManifest.Input.xml -------------------------------------------------------------------------------- /Calendar/Calendar/accessors/tooltipAccessor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/accessors/tooltipAccessor.tsx -------------------------------------------------------------------------------- /Calendar/Calendar/components/MobileToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/components/MobileToolbar.tsx -------------------------------------------------------------------------------- /Calendar/Calendar/components/Translations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/components/Translations.tsx -------------------------------------------------------------------------------- /Calendar/Calendar/components/WorkWeek.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/components/WorkWeek.tsx -------------------------------------------------------------------------------- /Calendar/Calendar/css/react-big-calendar.override.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/css/react-big-calendar.override.css -------------------------------------------------------------------------------- /Calendar/Calendar/getters/dayPropsGetter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/getters/dayPropsGetter.ts -------------------------------------------------------------------------------- /Calendar/Calendar/getters/eventPropsGetter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/getters/eventPropsGetter.ts -------------------------------------------------------------------------------- /Calendar/Calendar/getters/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/getters/index.ts -------------------------------------------------------------------------------- /Calendar/Calendar/handlers/handleEventKeyPress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/handlers/handleEventKeyPress.ts -------------------------------------------------------------------------------- /Calendar/Calendar/handlers/handleEventSelected.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/handlers/handleEventSelected.ts -------------------------------------------------------------------------------- /Calendar/Calendar/handlers/handleNavigate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/handlers/handleNavigate.ts -------------------------------------------------------------------------------- /Calendar/Calendar/handlers/handleOnView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/handlers/handleOnView.ts -------------------------------------------------------------------------------- /Calendar/Calendar/handlers/handleSlotSelect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/handlers/handleSlotSelect.ts -------------------------------------------------------------------------------- /Calendar/Calendar/handlers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/handlers/index.ts -------------------------------------------------------------------------------- /Calendar/Calendar/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/hooks/index.ts -------------------------------------------------------------------------------- /Calendar/Calendar/hooks/useCalendarColors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/hooks/useCalendarColors.ts -------------------------------------------------------------------------------- /Calendar/Calendar/hooks/useCalendarData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/hooks/useCalendarData.ts -------------------------------------------------------------------------------- /Calendar/Calendar/hooks/useCalendarDate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/hooks/useCalendarDate.ts -------------------------------------------------------------------------------- /Calendar/Calendar/hooks/useCalendarHourRange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/hooks/useCalendarHourRange.ts -------------------------------------------------------------------------------- /Calendar/Calendar/hooks/useCalendarPopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/hooks/useCalendarPopup.ts -------------------------------------------------------------------------------- /Calendar/Calendar/hooks/useCalendarSelectable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/hooks/useCalendarSelectable.ts -------------------------------------------------------------------------------- /Calendar/Calendar/hooks/useCalendarStepAndTimeslots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/hooks/useCalendarStepAndTimeslots.ts -------------------------------------------------------------------------------- /Calendar/Calendar/hooks/useCalendarView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/hooks/useCalendarView.ts -------------------------------------------------------------------------------- /Calendar/Calendar/hooks/useDayLayoutAlgorithm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/hooks/useDayLayoutAlgorithm.ts -------------------------------------------------------------------------------- /Calendar/Calendar/hooks/useEventHeaderFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/hooks/useEventHeaderFormat.ts -------------------------------------------------------------------------------- /Calendar/Calendar/hooks/useEventSelectable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/hooks/useEventSelectable.ts -------------------------------------------------------------------------------- /Calendar/Calendar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/index.ts -------------------------------------------------------------------------------- /Calendar/Calendar/renderers/agendaEventRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/renderers/agendaEventRenderer.tsx -------------------------------------------------------------------------------- /Calendar/Calendar/renderers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/renderers/index.ts -------------------------------------------------------------------------------- /Calendar/Calendar/renderers/resourceHeaderRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/renderers/resourceHeaderRenderer.tsx -------------------------------------------------------------------------------- /Calendar/Calendar/renderers/timeGutterHeaderRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/renderers/timeGutterHeaderRenderer.tsx -------------------------------------------------------------------------------- /Calendar/Calendar/renderers/timeSlotWrapperRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/renderers/timeSlotWrapperRenderer.tsx -------------------------------------------------------------------------------- /Calendar/Calendar/types/IEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/types/IEvent.ts -------------------------------------------------------------------------------- /Calendar/Calendar/types/Keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/types/Keys.ts -------------------------------------------------------------------------------- /Calendar/Calendar/types/Resource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/types/Resource.ts -------------------------------------------------------------------------------- /Calendar/Calendar/types/SlotInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/types/SlotInfo.ts -------------------------------------------------------------------------------- /Calendar/Calendar/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/types/index.ts -------------------------------------------------------------------------------- /Calendar/Calendar/types/is-hexcolor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/types/is-hexcolor.d.ts -------------------------------------------------------------------------------- /Calendar/Calendar/types/react-big-calendar.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/types/react-big-calendar.d.ts -------------------------------------------------------------------------------- /Calendar/Calendar/utils/CalendarHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/utils/CalendarHelpers.ts -------------------------------------------------------------------------------- /Calendar/Calendar/utils/Constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/utils/Constants.ts -------------------------------------------------------------------------------- /Calendar/Calendar/utils/DataHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/utils/DataHelpers.ts -------------------------------------------------------------------------------- /Calendar/Calendar/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Calendar/utils/index.ts -------------------------------------------------------------------------------- /Calendar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/README.md -------------------------------------------------------------------------------- /Calendar/Sample/CanvasCalendar_1.0.0.5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Sample/CanvasCalendar_1.0.0.5.zip -------------------------------------------------------------------------------- /Calendar/Sample/CanvasCalendar_1.0.0.5_managed.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Sample/CanvasCalendar_1.0.0.5_managed.zip -------------------------------------------------------------------------------- /Calendar/Sample/CanvasCalendar_1_0_0_4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Sample/CanvasCalendar_1_0_0_4.zip -------------------------------------------------------------------------------- /Calendar/Sample/CanvasCalendar_1_0_0_4_managed.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/Sample/CanvasCalendar_1_0_0_4_managed.zip -------------------------------------------------------------------------------- /Calendar/data/events.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/data/events.csv -------------------------------------------------------------------------------- /Calendar/data/events_powerapps_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/data/events_powerapps_table.txt -------------------------------------------------------------------------------- /Calendar/data/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/data/generate.py -------------------------------------------------------------------------------- /Calendar/data/resources.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/data/resources.csv -------------------------------------------------------------------------------- /Calendar/featureconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /Calendar/images/CalendarControlForCanvasAndModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/images/CalendarControlForCanvasAndModel.png -------------------------------------------------------------------------------- /Calendar/images/CanvasCalendarAllResourcesAdvancedProps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/images/CanvasCalendarAllResourcesAdvancedProps.png -------------------------------------------------------------------------------- /Calendar/images/CanvasCalendarAllResourcesDataSource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/images/CanvasCalendarAllResourcesDataSource.png -------------------------------------------------------------------------------- /Calendar/images/CanvasCalendarAllResourcesResourceHeader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/images/CanvasCalendarAllResourcesResourceHeader.png -------------------------------------------------------------------------------- /Calendar/images/CanvasCalendarDateControlProp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/images/CanvasCalendarDateControlProp.png -------------------------------------------------------------------------------- /Calendar/images/CanvasCalendarDateOnChange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/images/CanvasCalendarDateOnChange.png -------------------------------------------------------------------------------- /Calendar/images/CanvasCalendarDateOnStart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/images/CanvasCalendarDateOnStart.png -------------------------------------------------------------------------------- /Calendar/images/CanvasCalendarDatePickerProps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/images/CanvasCalendarDatePickerProps.png -------------------------------------------------------------------------------- /Calendar/images/CanvasCalendarEventsOnly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/images/CanvasCalendarEventsOnly.png -------------------------------------------------------------------------------- /Calendar/images/CanvasCalendarEventsOnlyAdvancedProps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/images/CanvasCalendarEventsOnlyAdvancedProps.png -------------------------------------------------------------------------------- /Calendar/images/CanvasCalendarEventsOnlyDataSource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/images/CanvasCalendarEventsOnlyDataSource.png -------------------------------------------------------------------------------- /Calendar/images/CanvasCalendarEventsOnlyOnLoad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/images/CanvasCalendarEventsOnlyOnLoad.png -------------------------------------------------------------------------------- /Calendar/images/CanvasCalendarOnChange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/images/CanvasCalendarOnChange.png -------------------------------------------------------------------------------- /Calendar/images/CanvasCalendarOnChangeProperties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/images/CanvasCalendarOnChangeProperties.png -------------------------------------------------------------------------------- /Calendar/images/CanvasCalendarResourcesWithEventsAdvancedProps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/images/CanvasCalendarResourcesWithEventsAdvancedProps.png -------------------------------------------------------------------------------- /Calendar/images/CanvasCalendarResourcesWithEventsData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/images/CanvasCalendarResourcesWithEventsData.png -------------------------------------------------------------------------------- /Calendar/images/CanvasCalendarResourcesWithEventsDataSource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/images/CanvasCalendarResourcesWithEventsDataSource.png -------------------------------------------------------------------------------- /Calendar/images/CanvasCalendarResourcesWithEventsResourceHeader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/images/CanvasCalendarResourcesWithEventsResourceHeader.png -------------------------------------------------------------------------------- /Calendar/images/ModelCalendarAddColumns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/images/ModelCalendarAddColumns.png -------------------------------------------------------------------------------- /Calendar/images/ModelCalendarAddControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/images/ModelCalendarAddControl.png -------------------------------------------------------------------------------- /Calendar/images/ModelCalendarSelectCalendarControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/images/ModelCalendarSelectCalendarControl.png -------------------------------------------------------------------------------- /Calendar/images/ModelCalendarSelectProperties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/images/ModelCalendarSelectProperties.png -------------------------------------------------------------------------------- /Calendar/images/ModelCalendarShowAs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/images/ModelCalendarShowAs.png -------------------------------------------------------------------------------- /Calendar/images/ModelCalendarShowAsCalendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/images/ModelCalendarShowAsCalendar.png -------------------------------------------------------------------------------- /Calendar/images/ModelCalendarSubGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/images/ModelCalendarSubGrid.png -------------------------------------------------------------------------------- /Calendar/images/ModelCalendarSubGridHeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/images/ModelCalendarSubGridHeight.png -------------------------------------------------------------------------------- /Calendar/images/calendarcontrol.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/images/calendarcontrol.gif -------------------------------------------------------------------------------- /Calendar/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/package-lock.json -------------------------------------------------------------------------------- /Calendar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/package.json -------------------------------------------------------------------------------- /Calendar/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/pcfconfig.json -------------------------------------------------------------------------------- /Calendar/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Calendar/tsconfig.json -------------------------------------------------------------------------------- /CanvasFileDownloader/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileDownloader/.eslintrc.json -------------------------------------------------------------------------------- /CanvasFileDownloader/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileDownloader/.gitignore -------------------------------------------------------------------------------- /CanvasFileDownloader/CanvasFileDownloader.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileDownloader/CanvasFileDownloader.pcfproj -------------------------------------------------------------------------------- /CanvasFileDownloader/CanvasFileDownloader/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileDownloader/CanvasFileDownloader/ControlManifest.Input.xml -------------------------------------------------------------------------------- /CanvasFileDownloader/CanvasFileDownloader/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileDownloader/CanvasFileDownloader/index.ts -------------------------------------------------------------------------------- /CanvasFileDownloader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileDownloader/README.md -------------------------------------------------------------------------------- /CanvasFileDownloader/Solution/CanvasFileDownloaderControl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileDownloader/Solution/CanvasFileDownloaderControl/.gitignore -------------------------------------------------------------------------------- /CanvasFileDownloader/Solution/CanvasFileDownloaderControl/CanvasFileDownloaderControl.cdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileDownloader/Solution/CanvasFileDownloaderControl/CanvasFileDownloaderControl.cdsproj -------------------------------------------------------------------------------- /CanvasFileDownloader/Solution/CanvasFileDownloaderControl/src/Other/Customizations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileDownloader/Solution/CanvasFileDownloaderControl/src/Other/Customizations.xml -------------------------------------------------------------------------------- /CanvasFileDownloader/Solution/CanvasFileDownloaderControl/src/Other/Relationships.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CanvasFileDownloader/Solution/CanvasFileDownloaderControl/src/Other/Solution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileDownloader/Solution/CanvasFileDownloaderControl/src/Other/Solution.xml -------------------------------------------------------------------------------- /CanvasFileDownloader/featureconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /CanvasFileDownloader/images/AddComponentToForm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileDownloader/images/AddComponentToForm.png -------------------------------------------------------------------------------- /CanvasFileDownloader/images/CanvasFileDownloader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileDownloader/images/CanvasFileDownloader.png -------------------------------------------------------------------------------- /CanvasFileDownloader/images/ComponentProperties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileDownloader/images/ComponentProperties.png -------------------------------------------------------------------------------- /CanvasFileDownloader/images/DownloadButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileDownloader/images/DownloadButton.png -------------------------------------------------------------------------------- /CanvasFileDownloader/images/FileDownloaded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileDownloader/images/FileDownloaded.png -------------------------------------------------------------------------------- /CanvasFileDownloader/images/ImportComponent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileDownloader/images/ImportComponent.png -------------------------------------------------------------------------------- /CanvasFileDownloader/images/ImportComponentRibbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileDownloader/images/ImportComponentRibbon.png -------------------------------------------------------------------------------- /CanvasFileDownloader/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileDownloader/package-lock.json -------------------------------------------------------------------------------- /CanvasFileDownloader/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileDownloader/package.json -------------------------------------------------------------------------------- /CanvasFileDownloader/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileDownloader/pcfconfig.json -------------------------------------------------------------------------------- /CanvasFileDownloader/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileDownloader/tsconfig.json -------------------------------------------------------------------------------- /CanvasFileUploader/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileUploader/.eslintrc.json -------------------------------------------------------------------------------- /CanvasFileUploader/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileUploader/.gitignore -------------------------------------------------------------------------------- /CanvasFileUploader/CanvasFileUploader.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileUploader/CanvasFileUploader.pcfproj -------------------------------------------------------------------------------- /CanvasFileUploader/CanvasFileUploader/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileUploader/CanvasFileUploader/ControlManifest.Input.xml -------------------------------------------------------------------------------- /CanvasFileUploader/CanvasFileUploader/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileUploader/CanvasFileUploader/index.ts -------------------------------------------------------------------------------- /CanvasFileUploader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileUploader/README.md -------------------------------------------------------------------------------- /CanvasFileUploader/Solution/CanvasFileUploaderComponent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileUploader/Solution/CanvasFileUploaderComponent/.gitignore -------------------------------------------------------------------------------- /CanvasFileUploader/Solution/CanvasFileUploaderComponent/CanvasFileUploaderComponent.cdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileUploader/Solution/CanvasFileUploaderComponent/CanvasFileUploaderComponent.cdsproj -------------------------------------------------------------------------------- /CanvasFileUploader/Solution/CanvasFileUploaderComponent/src/Other/Customizations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileUploader/Solution/CanvasFileUploaderComponent/src/Other/Customizations.xml -------------------------------------------------------------------------------- /CanvasFileUploader/Solution/CanvasFileUploaderComponent/src/Other/Relationships.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CanvasFileUploader/Solution/CanvasFileUploaderComponent/src/Other/Solution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileUploader/Solution/CanvasFileUploaderComponent/src/Other/Solution.xml -------------------------------------------------------------------------------- /CanvasFileUploader/featureconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /CanvasFileUploader/images/AddComponentToForm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileUploader/images/AddComponentToForm.png -------------------------------------------------------------------------------- /CanvasFileUploader/images/CanvasComponentUpload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileUploader/images/CanvasComponentUpload.png -------------------------------------------------------------------------------- /CanvasFileUploader/images/CanvasFileUploader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileUploader/images/CanvasFileUploader.gif -------------------------------------------------------------------------------- /CanvasFileUploader/images/ComponentProperties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileUploader/images/ComponentProperties.png -------------------------------------------------------------------------------- /CanvasFileUploader/images/CustomAppStart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileUploader/images/CustomAppStart.png -------------------------------------------------------------------------------- /CanvasFileUploader/images/ImageViewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileUploader/images/ImageViewer.png -------------------------------------------------------------------------------- /CanvasFileUploader/images/ImportComponent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileUploader/images/ImportComponent.png -------------------------------------------------------------------------------- /CanvasFileUploader/images/ImportComponentRibbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileUploader/images/ImportComponentRibbon.png -------------------------------------------------------------------------------- /CanvasFileUploader/images/PDFViewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileUploader/images/PDFViewer.png -------------------------------------------------------------------------------- /CanvasFileUploader/images/StandardInput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileUploader/images/StandardInput.png -------------------------------------------------------------------------------- /CanvasFileUploader/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileUploader/package-lock.json -------------------------------------------------------------------------------- /CanvasFileUploader/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileUploader/package.json -------------------------------------------------------------------------------- /CanvasFileUploader/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileUploader/pcfconfig.json -------------------------------------------------------------------------------- /CanvasFileUploader/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/CanvasFileUploader/tsconfig.json -------------------------------------------------------------------------------- /ColorPicker/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ColorPicker/.eslintrc.json -------------------------------------------------------------------------------- /ColorPicker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ColorPicker/.gitignore -------------------------------------------------------------------------------- /ColorPicker/ColorPicker.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ColorPicker/ColorPicker.pcfproj -------------------------------------------------------------------------------- /ColorPicker/ColorPicker/ColorPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ColorPicker/ColorPicker/ColorPicker.tsx -------------------------------------------------------------------------------- /ColorPicker/ColorPicker/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ColorPicker/ColorPicker/ControlManifest.Input.xml -------------------------------------------------------------------------------- /ColorPicker/ColorPicker/ControlPicker/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /obj -------------------------------------------------------------------------------- /ColorPicker/ColorPicker/ControlPicker/ControlPicker.cdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ColorPicker/ColorPicker/ControlPicker/ControlPicker.cdsproj -------------------------------------------------------------------------------- /ColorPicker/ColorPicker/ControlPicker/Other/Customizations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ColorPicker/ColorPicker/ControlPicker/Other/Customizations.xml -------------------------------------------------------------------------------- /ColorPicker/ColorPicker/ControlPicker/Other/Relationships.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ColorPicker/ColorPicker/ControlPicker/Other/Solution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ColorPicker/ColorPicker/ControlPicker/Other/Solution.xml -------------------------------------------------------------------------------- /ColorPicker/ColorPicker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ColorPicker/ColorPicker/index.ts -------------------------------------------------------------------------------- /ColorPicker/ColorPicker/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ColorPicker/ColorPicker/preview.png -------------------------------------------------------------------------------- /ColorPicker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ColorPicker/README.md -------------------------------------------------------------------------------- /ColorPicker/featureconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /ColorPicker/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ColorPicker/package-lock.json -------------------------------------------------------------------------------- /ColorPicker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ColorPicker/package.json -------------------------------------------------------------------------------- /ColorPicker/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ColorPicker/pcfconfig.json -------------------------------------------------------------------------------- /ColorPicker/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ColorPicker/tsconfig.json -------------------------------------------------------------------------------- /DadJoke/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DadJoke/.eslintrc.json -------------------------------------------------------------------------------- /DadJoke/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DadJoke/.gitignore -------------------------------------------------------------------------------- /DadJoke/DadJoke.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DadJoke/DadJoke.pcfproj -------------------------------------------------------------------------------- /DadJoke/DadJoke/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DadJoke/DadJoke/ControlManifest.Input.xml -------------------------------------------------------------------------------- /DadJoke/DadJoke/css/DadJoke.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DadJoke/DadJoke/css/DadJoke.css -------------------------------------------------------------------------------- /DadJoke/DadJoke/img/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DadJoke/DadJoke/img/preview.png -------------------------------------------------------------------------------- /DadJoke/DadJoke/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DadJoke/DadJoke/index.ts -------------------------------------------------------------------------------- /DadJoke/DadJoke/strings/DadJoke.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DadJoke/DadJoke/strings/DadJoke.1033.resx -------------------------------------------------------------------------------- /DadJoke/Solution/RAW!DadJoke/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DadJoke/Solution/RAW!DadJoke/.gitignore -------------------------------------------------------------------------------- /DadJoke/Solution/RAW!DadJoke/RAW!DadJoke.cdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DadJoke/Solution/RAW!DadJoke/RAW!DadJoke.cdsproj -------------------------------------------------------------------------------- /DadJoke/Solution/RAW!DadJoke/src/Other/Customizations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DadJoke/Solution/RAW!DadJoke/src/Other/Customizations.xml -------------------------------------------------------------------------------- /DadJoke/Solution/RAW!DadJoke/src/Other/Relationships.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /DadJoke/Solution/RAW!DadJoke/src/Other/Solution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DadJoke/Solution/RAW!DadJoke/src/Other/Solution.xml -------------------------------------------------------------------------------- /DadJoke/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DadJoke/package-lock.json -------------------------------------------------------------------------------- /DadJoke/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DadJoke/package.json -------------------------------------------------------------------------------- /DadJoke/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DadJoke/pcfconfig.json -------------------------------------------------------------------------------- /DadJoke/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DadJoke/tsconfig.json -------------------------------------------------------------------------------- /DetailListGrid/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DetailListGrid/.eslintrc.json -------------------------------------------------------------------------------- /DetailListGrid/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DetailListGrid/.gitignore -------------------------------------------------------------------------------- /DetailListGrid/DetailListGrid.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DetailListGrid/DetailListGrid.pcfproj -------------------------------------------------------------------------------- /DetailListGrid/DetailListGrid/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DetailListGrid/DetailListGrid/ControlManifest.Input.xml -------------------------------------------------------------------------------- /DetailListGrid/DetailListGrid/DetailListGridControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DetailListGrid/DetailListGrid/DetailListGridControl.tsx -------------------------------------------------------------------------------- /DetailListGrid/DetailListGrid/DetailListGridControl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DetailListGrid/DetailListGrid/DetailListGridControl/.gitignore -------------------------------------------------------------------------------- /DetailListGrid/DetailListGrid/DetailListGridControl/DetailListGridControl.cdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DetailListGrid/DetailListGrid/DetailListGridControl/DetailListGridControl.cdsproj -------------------------------------------------------------------------------- /DetailListGrid/DetailListGrid/DetailListGridControl/Other/Customizations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DetailListGrid/DetailListGrid/DetailListGridControl/Other/Customizations.xml -------------------------------------------------------------------------------- /DetailListGrid/DetailListGrid/DetailListGridControl/Other/Relationships.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /DetailListGrid/DetailListGrid/DetailListGridControl/Other/Solution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DetailListGrid/DetailListGrid/DetailListGridControl/Other/Solution.xml -------------------------------------------------------------------------------- /DetailListGrid/DetailListGrid/css/DetailListGridControl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DetailListGrid/DetailListGrid/css/DetailListGridControl.css -------------------------------------------------------------------------------- /DetailListGrid/DetailListGrid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DetailListGrid/DetailListGrid/index.ts -------------------------------------------------------------------------------- /DetailListGrid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DetailListGrid/README.md -------------------------------------------------------------------------------- /DetailListGrid/featureconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /DetailListGrid/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DetailListGrid/package-lock.json -------------------------------------------------------------------------------- /DetailListGrid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DetailListGrid/package.json -------------------------------------------------------------------------------- /DetailListGrid/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DetailListGrid/pcfconfig.json -------------------------------------------------------------------------------- /DetailListGrid/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DetailListGrid/tsconfig.json -------------------------------------------------------------------------------- /DocxTemplatesCanvas/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DocxTemplatesCanvas/.eslintrc.json -------------------------------------------------------------------------------- /DocxTemplatesCanvas/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DocxTemplatesCanvas/.gitignore -------------------------------------------------------------------------------- /DocxTemplatesCanvas/DocxTemplatesCanvas.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DocxTemplatesCanvas/DocxTemplatesCanvas.pcfproj -------------------------------------------------------------------------------- /DocxTemplatesCanvas/DocxTemplatesCanvas/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DocxTemplatesCanvas/DocxTemplatesCanvas/ControlManifest.Input.xml -------------------------------------------------------------------------------- /DocxTemplatesCanvas/DocxTemplatesCanvas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DocxTemplatesCanvas/DocxTemplatesCanvas/index.ts -------------------------------------------------------------------------------- /DocxTemplatesCanvas/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DocxTemplatesCanvas/README.MD -------------------------------------------------------------------------------- /DocxTemplatesCanvas/Sample/DocxTemplateSample_1_0_0_1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DocxTemplatesCanvas/Sample/DocxTemplateSample_1_0_0_1.zip -------------------------------------------------------------------------------- /DocxTemplatesCanvas/Sample/DocxTemplateSample_1_0_0_1_managed.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DocxTemplatesCanvas/Sample/DocxTemplateSample_1_0_0_1_managed.zip -------------------------------------------------------------------------------- /DocxTemplatesCanvas/Sample/SampleTemplate.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DocxTemplatesCanvas/Sample/SampleTemplate.docx -------------------------------------------------------------------------------- /DocxTemplatesCanvas/Sample/SampleTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DocxTemplatesCanvas/Sample/SampleTemplate.png -------------------------------------------------------------------------------- /DocxTemplatesCanvas/Sample/contoso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DocxTemplatesCanvas/Sample/contoso.png -------------------------------------------------------------------------------- /DocxTemplatesCanvas/Solution/RAWDocxTemplatesCanvas/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DocxTemplatesCanvas/Solution/RAWDocxTemplatesCanvas/.gitignore -------------------------------------------------------------------------------- /DocxTemplatesCanvas/Solution/RAWDocxTemplatesCanvas/RAWDocxTemplatesCanvas.cdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DocxTemplatesCanvas/Solution/RAWDocxTemplatesCanvas/RAWDocxTemplatesCanvas.cdsproj -------------------------------------------------------------------------------- /DocxTemplatesCanvas/Solution/RAWDocxTemplatesCanvas/src/Other/Customizations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DocxTemplatesCanvas/Solution/RAWDocxTemplatesCanvas/src/Other/Customizations.xml -------------------------------------------------------------------------------- /DocxTemplatesCanvas/Solution/RAWDocxTemplatesCanvas/src/Other/Relationships.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /DocxTemplatesCanvas/Solution/RAWDocxTemplatesCanvas/src/Other/Solution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DocxTemplatesCanvas/Solution/RAWDocxTemplatesCanvas/src/Other/Solution.xml -------------------------------------------------------------------------------- /DocxTemplatesCanvas/featureconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "pcfAllowCustomWebpack": "on" 3 | } -------------------------------------------------------------------------------- /DocxTemplatesCanvas/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DocxTemplatesCanvas/image.png -------------------------------------------------------------------------------- /DocxTemplatesCanvas/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DocxTemplatesCanvas/package-lock.json -------------------------------------------------------------------------------- /DocxTemplatesCanvas/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DocxTemplatesCanvas/package.json -------------------------------------------------------------------------------- /DocxTemplatesCanvas/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DocxTemplatesCanvas/pcfconfig.json -------------------------------------------------------------------------------- /DocxTemplatesCanvas/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DocxTemplatesCanvas/tsconfig.json -------------------------------------------------------------------------------- /DocxTemplatesCanvas/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DocxTemplatesCanvas/webpack.config.js -------------------------------------------------------------------------------- /DownloadTools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/DownloadTools.ps1 -------------------------------------------------------------------------------- /ExportPDFManager/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/.gitignore -------------------------------------------------------------------------------- /ExportPDFManager/ExportPDFManager.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/ExportPDFManager.pcfproj -------------------------------------------------------------------------------- /ExportPDFManager/ExportPDFManager/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/ExportPDFManager/ControlManifest.Input.xml -------------------------------------------------------------------------------- /ExportPDFManager/ExportPDFManager/ExportPDFManagerApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/ExportPDFManager/ExportPDFManagerApp.tsx -------------------------------------------------------------------------------- /ExportPDFManager/ExportPDFManager/components/ExportPDFManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/ExportPDFManager/components/ExportPDFManager.tsx -------------------------------------------------------------------------------- /ExportPDFManager/ExportPDFManager/hooks/useDisabledStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/ExportPDFManager/hooks/useDisabledStatus.ts -------------------------------------------------------------------------------- /ExportPDFManager/ExportPDFManager/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/ExportPDFManager/index.ts -------------------------------------------------------------------------------- /ExportPDFManager/ExportPDFManager/resources/ExportPDFManager.1025.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/ExportPDFManager/resources/ExportPDFManager.1025.resx -------------------------------------------------------------------------------- /ExportPDFManager/ExportPDFManager/resources/ExportPDFManager.1031.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/ExportPDFManager/resources/ExportPDFManager.1031.resx -------------------------------------------------------------------------------- /ExportPDFManager/ExportPDFManager/resources/ExportPDFManager.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/ExportPDFManager/resources/ExportPDFManager.1033.resx -------------------------------------------------------------------------------- /ExportPDFManager/ExportPDFManager/resources/ExportPDFManager.1036.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/ExportPDFManager/resources/ExportPDFManager.1036.resx -------------------------------------------------------------------------------- /ExportPDFManager/ExportPDFManager/resources/ExportPDFManager.1040.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/ExportPDFManager/resources/ExportPDFManager.1040.resx -------------------------------------------------------------------------------- /ExportPDFManager/ExportPDFManager/resources/ExportPDFManager.1041.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/ExportPDFManager/resources/ExportPDFManager.1041.resx -------------------------------------------------------------------------------- /ExportPDFManager/ExportPDFManager/resources/ExportPDFManager.1042.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/ExportPDFManager/resources/ExportPDFManager.1042.resx -------------------------------------------------------------------------------- /ExportPDFManager/ExportPDFManager/resources/ExportPDFManager.1043.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/ExportPDFManager/resources/ExportPDFManager.1043.resx -------------------------------------------------------------------------------- /ExportPDFManager/ExportPDFManager/resources/ExportPDFManager.3082.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/ExportPDFManager/resources/ExportPDFManager.3082.resx -------------------------------------------------------------------------------- /ExportPDFManager/ExportPDFManager/resources/ExportPDFManager.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ExportPDFManager/ExportPDFManager/services/MetadataService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/ExportPDFManager/services/MetadataService.ts -------------------------------------------------------------------------------- /ExportPDFManager/ExportPDFManager/services/PcfContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/ExportPDFManager/services/PcfContext.tsx -------------------------------------------------------------------------------- /ExportPDFManager/ExportPDFManager/services/PcfContextService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/ExportPDFManager/services/PcfContextService.ts -------------------------------------------------------------------------------- /ExportPDFManager/ExportPDFManager/types/PdfEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/ExportPDFManager/types/PdfEntity.ts -------------------------------------------------------------------------------- /ExportPDFManager/ExportPDFManager/types/PdfSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/ExportPDFManager/types/PdfSetting.ts -------------------------------------------------------------------------------- /ExportPDFManager/ExportPDFManager/types/SaveState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/ExportPDFManager/types/SaveState.ts -------------------------------------------------------------------------------- /ExportPDFManager/ExportPDFManager/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/ExportPDFManager/types/index.ts -------------------------------------------------------------------------------- /ExportPDFManager/ExportPDFManager/utils/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/ExportPDFManager/utils/styles.ts -------------------------------------------------------------------------------- /ExportPDFManager/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/README.MD -------------------------------------------------------------------------------- /ExportPDFManager/Solution/ExportPDFManagerControl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/Solution/ExportPDFManagerControl/.gitignore -------------------------------------------------------------------------------- /ExportPDFManager/Solution/ExportPDFManagerControl/ExportPDFManagerControl.cdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/Solution/ExportPDFManagerControl/ExportPDFManagerControl.cdsproj -------------------------------------------------------------------------------- /ExportPDFManager/Solution/ExportPDFManagerControl/src/Other/Customizations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/Solution/ExportPDFManagerControl/src/Other/Customizations.xml -------------------------------------------------------------------------------- /ExportPDFManager/Solution/ExportPDFManagerControl/src/Other/Relationships.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ExportPDFManager/Solution/ExportPDFManagerControl/src/Other/Solution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/Solution/ExportPDFManagerControl/src/Other/Solution.xml -------------------------------------------------------------------------------- /ExportPDFManager/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/eslint.config.mjs -------------------------------------------------------------------------------- /ExportPDFManager/featureconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "pcfAllowCustomWebpack": "on" 3 | } -------------------------------------------------------------------------------- /ExportPDFManager/images/2025-03-31_16-12-42.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/images/2025-03-31_16-12-42.PNG -------------------------------------------------------------------------------- /ExportPDFManager/images/2025-03-31_16-13-13.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/images/2025-03-31_16-13-13.PNG -------------------------------------------------------------------------------- /ExportPDFManager/images/2025-04-02_15-21-37.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/images/2025-04-02_15-21-37.PNG -------------------------------------------------------------------------------- /ExportPDFManager/images/2025-04-02_15-22-37.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/images/2025-04-02_15-22-37.PNG -------------------------------------------------------------------------------- /ExportPDFManager/images/Export PDF Manager.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/images/Export PDF Manager.gif -------------------------------------------------------------------------------- /ExportPDFManager/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/package-lock.json -------------------------------------------------------------------------------- /ExportPDFManager/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/package.json -------------------------------------------------------------------------------- /ExportPDFManager/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/pcfconfig.json -------------------------------------------------------------------------------- /ExportPDFManager/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/tsconfig.json -------------------------------------------------------------------------------- /ExportPDFManager/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ExportPDFManager/webpack.config.js -------------------------------------------------------------------------------- /Frame/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Frame/.eslintrc.json -------------------------------------------------------------------------------- /Frame/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Frame/.gitignore -------------------------------------------------------------------------------- /Frame/RAWframeComponent.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Frame/RAWframeComponent.pcfproj -------------------------------------------------------------------------------- /Frame/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Frame/README.md -------------------------------------------------------------------------------- /Frame/Sample/RAWFrameSample_1_0_0_5_managed.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Frame/Sample/RAWFrameSample_1_0_0_5_managed.zip -------------------------------------------------------------------------------- /Frame/Solution/RAWframe/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Frame/Solution/RAWframe/.gitignore -------------------------------------------------------------------------------- /Frame/Solution/RAWframe/RAWframe.cdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Frame/Solution/RAWframe/RAWframe.cdsproj -------------------------------------------------------------------------------- /Frame/Solution/RAWframe/src/Other/Customizations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Frame/Solution/RAWframe/src/Other/Customizations.xml -------------------------------------------------------------------------------- /Frame/Solution/RAWframe/src/Other/Relationships.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Frame/Solution/RAWframe/src/Other/Solution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Frame/Solution/RAWframe/src/Other/Solution.xml -------------------------------------------------------------------------------- /Frame/featureconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /Frame/frame/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Frame/frame/ControlManifest.Input.xml -------------------------------------------------------------------------------- /Frame/frame/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Frame/frame/index.ts -------------------------------------------------------------------------------- /Frame/images/RAWFrame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Frame/images/RAWFrame.png -------------------------------------------------------------------------------- /Frame/js/BackButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Frame/js/BackButton.html -------------------------------------------------------------------------------- /Frame/js/CanvasAppLauncher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Frame/js/CanvasAppLauncher.html -------------------------------------------------------------------------------- /Frame/js/CreateContacts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Frame/js/CreateContacts.html -------------------------------------------------------------------------------- /Frame/js/DefaultOptionSetDisplayValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Frame/js/DefaultOptionSetDisplayValue.html -------------------------------------------------------------------------------- /Frame/js/GetFirstAccount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Frame/js/GetFirstAccount.html -------------------------------------------------------------------------------- /Frame/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Frame/package-lock.json -------------------------------------------------------------------------------- /Frame/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Frame/package.json -------------------------------------------------------------------------------- /Frame/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Frame/pcfconfig.json -------------------------------------------------------------------------------- /Frame/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Frame/tsconfig.json -------------------------------------------------------------------------------- /ImageCrop/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/.gitignore -------------------------------------------------------------------------------- /ImageCrop/ImageCrop.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/ImageCrop.pcfproj -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/ImageCrop/ControlManifest.Input.xml -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/components/imageCropControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/ImageCrop/components/imageCropControl.tsx -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/components/imageCropWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/ImageCrop/components/imageCropWrapper.tsx -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/hooks/cropUtils.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/ImageCrop/hooks/index.ts -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/hooks/useAspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/ImageCrop/hooks/useAspect.ts -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/hooks/useBrowserScaling.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/hooks/useCircularCrop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/ImageCrop/hooks/useCircularCrop.ts -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/hooks/useCropToBase64.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/ImageCrop/hooks/useCropToBase64.ts -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/hooks/useDefaultCrop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/ImageCrop/hooks/useDefaultCrop.ts -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/hooks/useDisabled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/ImageCrop/hooks/useDisabled.ts -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/hooks/useImageLoaded.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/ImageCrop/hooks/useImageLoaded.ts -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/hooks/useImageSrc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/ImageCrop/hooks/useImageSrc.ts -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/hooks/useKeepSelection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/ImageCrop/hooks/useKeepSelection.ts -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/hooks/useLocked.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/ImageCrop/hooks/useLocked.ts -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/hooks/useMaxHeight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/ImageCrop/hooks/useMaxHeight.ts -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/hooks/useMaxWidth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/ImageCrop/hooks/useMaxWidth.ts -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/hooks/useMinHeight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/ImageCrop/hooks/useMinHeight.ts -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/hooks/useMinWidth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/ImageCrop/hooks/useMinWidth.ts -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/hooks/useResetCropOnImageLoad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/ImageCrop/hooks/useResetCropOnImageLoad.ts -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/hooks/useResponsiveAppScaling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/ImageCrop/hooks/useResponsiveAppScaling.ts -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/hooks/useRotation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/ImageCrop/hooks/useRotation.ts -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/hooks/useRuleOfThirds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/ImageCrop/hooks/useRuleOfThirds.ts -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/hooks/useScaling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/ImageCrop/hooks/useScaling.ts -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/imageCropApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/ImageCrop/imageCropApp.tsx -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/ImageCrop/index.ts -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/resources/ImageCrop.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/ImageCrop/resources/ImageCrop.1033.resx -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/services/pcfContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/ImageCrop/services/pcfContext.tsx -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/services/pcfContextService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/ImageCrop/services/pcfContextService.ts -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/types/actionOutputSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/ImageCrop/types/actionOutputSchema.ts -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/types/imageCropTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/ImageCrop/types/imageCropTypes.ts -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/ImageCrop/types/index.ts -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/utils/cropUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/ImageCrop/utils/cropUtils.ts -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/ImageCrop/utils/index.ts -------------------------------------------------------------------------------- /ImageCrop/ImageCrop/utils/stringUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/ImageCrop/utils/stringUtils.ts -------------------------------------------------------------------------------- /ImageCrop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/README.md -------------------------------------------------------------------------------- /ImageCrop/Sample/RAW Image Crop.msapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/Sample/RAW Image Crop.msapp -------------------------------------------------------------------------------- /ImageCrop/Solution/RAW!ImageCropControl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/Solution/RAW!ImageCropControl/.gitignore -------------------------------------------------------------------------------- /ImageCrop/Solution/RAW!ImageCropControl/RAW!ImageCropControl.cdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/Solution/RAW!ImageCropControl/RAW!ImageCropControl.cdsproj -------------------------------------------------------------------------------- /ImageCrop/Solution/RAW!ImageCropControl/src/Other/Customizations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/Solution/RAW!ImageCropControl/src/Other/Customizations.xml -------------------------------------------------------------------------------- /ImageCrop/Solution/RAW!ImageCropControl/src/Other/Relationships.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ImageCrop/Solution/RAW!ImageCropControl/src/Other/Solution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/Solution/RAW!ImageCropControl/src/Other/Solution.xml -------------------------------------------------------------------------------- /ImageCrop/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/eslint.config.mjs -------------------------------------------------------------------------------- /ImageCrop/featureconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "pcfAllowCustomWebpack": "on" 3 | } -------------------------------------------------------------------------------- /ImageCrop/images/image-cropper-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/images/image-cropper-demo.gif -------------------------------------------------------------------------------- /ImageCrop/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/package-lock.json -------------------------------------------------------------------------------- /ImageCrop/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/package.json -------------------------------------------------------------------------------- /ImageCrop/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/pcfconfig.json -------------------------------------------------------------------------------- /ImageCrop/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/ImageCrop/tsconfig.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/LICENSE -------------------------------------------------------------------------------- /PDFFormFillCanvas/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PDFFormFillCanvas/.eslintrc.json -------------------------------------------------------------------------------- /PDFFormFillCanvas/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PDFFormFillCanvas/.gitignore -------------------------------------------------------------------------------- /PDFFormFillCanvas/PDFFormFillCanvas.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PDFFormFillCanvas/PDFFormFillCanvas.pcfproj -------------------------------------------------------------------------------- /PDFFormFillCanvas/PDFFormFillCanvas/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PDFFormFillCanvas/PDFFormFillCanvas/ControlManifest.Input.xml -------------------------------------------------------------------------------- /PDFFormFillCanvas/PDFFormFillCanvas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PDFFormFillCanvas/PDFFormFillCanvas/index.ts -------------------------------------------------------------------------------- /PDFFormFillCanvas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PDFFormFillCanvas/README.md -------------------------------------------------------------------------------- /PDFFormFillCanvas/Sample/PDFFormFiller_1_0_0_1_managed.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PDFFormFillCanvas/Sample/PDFFormFiller_1_0_0_1_managed.zip -------------------------------------------------------------------------------- /PDFFormFillCanvas/Solutions/RAWPDFFormFillCanvas/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PDFFormFillCanvas/Solutions/RAWPDFFormFillCanvas/.gitignore -------------------------------------------------------------------------------- /PDFFormFillCanvas/Solutions/RAWPDFFormFillCanvas/RAWPDFFormFillCanvas.cdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PDFFormFillCanvas/Solutions/RAWPDFFormFillCanvas/RAWPDFFormFillCanvas.cdsproj -------------------------------------------------------------------------------- /PDFFormFillCanvas/Solutions/RAWPDFFormFillCanvas/src/Other/Customizations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PDFFormFillCanvas/Solutions/RAWPDFFormFillCanvas/src/Other/Customizations.xml -------------------------------------------------------------------------------- /PDFFormFillCanvas/Solutions/RAWPDFFormFillCanvas/src/Other/Relationships.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /PDFFormFillCanvas/Solutions/RAWPDFFormFillCanvas/src/Other/Solution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PDFFormFillCanvas/Solutions/RAWPDFFormFillCanvas/src/Other/Solution.xml -------------------------------------------------------------------------------- /PDFFormFillCanvas/featureconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "pcfAllowCustomWebpack": "on" 3 | } -------------------------------------------------------------------------------- /PDFFormFillCanvas/images/ImportComponent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PDFFormFillCanvas/images/ImportComponent.png -------------------------------------------------------------------------------- /PDFFormFillCanvas/images/ImportComponentFromCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PDFFormFillCanvas/images/ImportComponentFromCode.png -------------------------------------------------------------------------------- /PDFFormFillCanvas/images/PDFFormFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PDFFormFillCanvas/images/PDFFormFill.png -------------------------------------------------------------------------------- /PDFFormFillCanvas/images/YouTube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PDFFormFillCanvas/images/YouTube.png -------------------------------------------------------------------------------- /PDFFormFillCanvas/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PDFFormFillCanvas/package-lock.json -------------------------------------------------------------------------------- /PDFFormFillCanvas/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PDFFormFillCanvas/package.json -------------------------------------------------------------------------------- /PDFFormFillCanvas/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PDFFormFillCanvas/pcfconfig.json -------------------------------------------------------------------------------- /PDFFormFillCanvas/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PDFFormFillCanvas/tsconfig.json -------------------------------------------------------------------------------- /PDFFormFillCanvas/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PDFFormFillCanvas/webpack.config.js -------------------------------------------------------------------------------- /PowerPagesFileManager/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/.gitignore -------------------------------------------------------------------------------- /PowerPagesFileManager/PowerPagesFileManager.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/PowerPagesFileManager.pcfproj -------------------------------------------------------------------------------- /PowerPagesFileManager/PowerPagesFileManager/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/PowerPagesFileManager/ControlManifest.Input.xml -------------------------------------------------------------------------------- /PowerPagesFileManager/PowerPagesFileManager/PortalFilesApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/PowerPagesFileManager/PortalFilesApp.tsx -------------------------------------------------------------------------------- /PowerPagesFileManager/PowerPagesFileManager/components/AnnotationsGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/PowerPagesFileManager/components/AnnotationsGrid.tsx -------------------------------------------------------------------------------- /PowerPagesFileManager/PowerPagesFileManager/components/DeleteConfirmationDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/PowerPagesFileManager/components/DeleteConfirmationDialog.tsx -------------------------------------------------------------------------------- /PowerPagesFileManager/PowerPagesFileManager/components/FileOverwriteDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/PowerPagesFileManager/components/FileOverwriteDialog.tsx -------------------------------------------------------------------------------- /PowerPagesFileManager/PowerPagesFileManager/components/HeaderButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/PowerPagesFileManager/components/HeaderButtons.tsx -------------------------------------------------------------------------------- /PowerPagesFileManager/PowerPagesFileManager/hooks/useAnnotations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/PowerPagesFileManager/hooks/useAnnotations.ts -------------------------------------------------------------------------------- /PowerPagesFileManager/PowerPagesFileManager/hooks/useFileUploads.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/PowerPagesFileManager/hooks/useFileUploads.ts -------------------------------------------------------------------------------- /PowerPagesFileManager/PowerPagesFileManager/hooks/useWindowSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/PowerPagesFileManager/hooks/useWindowSize.ts -------------------------------------------------------------------------------- /PowerPagesFileManager/PowerPagesFileManager/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/PowerPagesFileManager/index.ts -------------------------------------------------------------------------------- /PowerPagesFileManager/PowerPagesFileManager/resources/PortalFiles.1031.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/PowerPagesFileManager/resources/PortalFiles.1031.resx -------------------------------------------------------------------------------- /PowerPagesFileManager/PowerPagesFileManager/resources/PortalFiles.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/PowerPagesFileManager/resources/PortalFiles.1033.resx -------------------------------------------------------------------------------- /PowerPagesFileManager/PowerPagesFileManager/resources/PortalFiles.1034.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/PowerPagesFileManager/resources/PortalFiles.1034.resx -------------------------------------------------------------------------------- /PowerPagesFileManager/PowerPagesFileManager/resources/PortalFiles.1036.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/PowerPagesFileManager/resources/PortalFiles.1036.resx -------------------------------------------------------------------------------- /PowerPagesFileManager/PowerPagesFileManager/resources/PortalFiles.1040.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/PowerPagesFileManager/resources/PortalFiles.1040.resx -------------------------------------------------------------------------------- /PowerPagesFileManager/PowerPagesFileManager/resources/PortalFiles.1041.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/PowerPagesFileManager/resources/PortalFiles.1041.resx -------------------------------------------------------------------------------- /PowerPagesFileManager/PowerPagesFileManager/resources/PortalFiles.1042.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/PowerPagesFileManager/resources/PortalFiles.1042.resx -------------------------------------------------------------------------------- /PowerPagesFileManager/PowerPagesFileManager/resources/PortalFiles.1043.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/PowerPagesFileManager/resources/PortalFiles.1043.resx -------------------------------------------------------------------------------- /PowerPagesFileManager/PowerPagesFileManager/resources/PortalFiles.1046.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/PowerPagesFileManager/resources/PortalFiles.1046.resx -------------------------------------------------------------------------------- /PowerPagesFileManager/PowerPagesFileManager/resources/PortalFiles.2052.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/PowerPagesFileManager/resources/PortalFiles.2052.resx -------------------------------------------------------------------------------- /PowerPagesFileManager/PowerPagesFileManager/resources/PortalFiles.3082.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/PowerPagesFileManager/resources/PortalFiles.3082.resx -------------------------------------------------------------------------------- /PowerPagesFileManager/PowerPagesFileManager/services/AnnotationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/PowerPagesFileManager/services/AnnotationService.ts -------------------------------------------------------------------------------- /PowerPagesFileManager/PowerPagesFileManager/services/HttpClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/PowerPagesFileManager/services/HttpClient.ts -------------------------------------------------------------------------------- /PowerPagesFileManager/PowerPagesFileManager/services/PcfContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/PowerPagesFileManager/services/PcfContext.tsx -------------------------------------------------------------------------------- /PowerPagesFileManager/PowerPagesFileManager/services/PcfContextService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/PowerPagesFileManager/services/PcfContextService.ts -------------------------------------------------------------------------------- /PowerPagesFileManager/PowerPagesFileManager/types/Annotations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/PowerPagesFileManager/types/Annotations.ts -------------------------------------------------------------------------------- /PowerPagesFileManager/PowerPagesFileManager/types/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Annotations"; 2 | -------------------------------------------------------------------------------- /PowerPagesFileManager/PowerPagesFileManager/utils/constants.ts: -------------------------------------------------------------------------------- 1 | export const AZURE_FILE_EXTENSION = ".azure.txt"; 2 | -------------------------------------------------------------------------------- /PowerPagesFileManager/PowerPagesFileManager/utils/formatDate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/PowerPagesFileManager/utils/formatDate.ts -------------------------------------------------------------------------------- /PowerPagesFileManager/PowerPagesFileManager/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/PowerPagesFileManager/utils/index.ts -------------------------------------------------------------------------------- /PowerPagesFileManager/PowerPagesFileManager/utils/layouts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/PowerPagesFileManager/utils/layouts.ts -------------------------------------------------------------------------------- /PowerPagesFileManager/PowerPagesFileManager/utils/localization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/PowerPagesFileManager/utils/localization.ts -------------------------------------------------------------------------------- /PowerPagesFileManager/PowerPagesFileManager/utils/themeGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/PowerPagesFileManager/utils/themeGenerator.ts -------------------------------------------------------------------------------- /PowerPagesFileManager/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/README.MD -------------------------------------------------------------------------------- /PowerPagesFileManager/Solution/PowerPagesFileManagerSolution/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/Solution/PowerPagesFileManagerSolution/.gitignore -------------------------------------------------------------------------------- /PowerPagesFileManager/Solution/PowerPagesFileManagerSolution/PowerPagesFileManagerSolution.cdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/Solution/PowerPagesFileManagerSolution/PowerPagesFileManagerSolution.cdsproj -------------------------------------------------------------------------------- /PowerPagesFileManager/Solution/PowerPagesFileManagerSolution/src/Other/Customizations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/Solution/PowerPagesFileManagerSolution/src/Other/Customizations.xml -------------------------------------------------------------------------------- /PowerPagesFileManager/Solution/PowerPagesFileManagerSolution/src/Other/Relationships.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /PowerPagesFileManager/Solution/PowerPagesFileManagerSolution/src/Other/Solution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/Solution/PowerPagesFileManagerSolution/src/Other/Solution.xml -------------------------------------------------------------------------------- /PowerPagesFileManager/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/eslint.config.mjs -------------------------------------------------------------------------------- /PowerPagesFileManager/images/PowerPagesFileManager.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/images/PowerPagesFileManager.gif -------------------------------------------------------------------------------- /PowerPagesFileManager/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/package-lock.json -------------------------------------------------------------------------------- /PowerPagesFileManager/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/package.json -------------------------------------------------------------------------------- /PowerPagesFileManager/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/pcfconfig.json -------------------------------------------------------------------------------- /PowerPagesFileManager/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/PowerPagesFileManager/tsconfig.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/README.md -------------------------------------------------------------------------------- /RestrictedChoice/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RestrictedChoice/.gitignore -------------------------------------------------------------------------------- /RestrictedChoice/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RestrictedChoice/README.MD -------------------------------------------------------------------------------- /RestrictedChoice/RestrictedChoice.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RestrictedChoice/RestrictedChoice.pcfproj -------------------------------------------------------------------------------- /RestrictedChoice/RestrictedChoice/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RestrictedChoice/RestrictedChoice/ControlManifest.Input.xml -------------------------------------------------------------------------------- /RestrictedChoice/RestrictedChoice/RestrictedChoiceApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RestrictedChoice/RestrictedChoice/RestrictedChoiceApp.tsx -------------------------------------------------------------------------------- /RestrictedChoice/RestrictedChoice/components/RestrictedChoice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RestrictedChoice/RestrictedChoice/components/RestrictedChoice.tsx -------------------------------------------------------------------------------- /RestrictedChoice/RestrictedChoice/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RestrictedChoice/RestrictedChoice/index.ts -------------------------------------------------------------------------------- /RestrictedChoice/RestrictedChoice/resources/RestrictedChoice.1025.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RestrictedChoice/RestrictedChoice/resources/RestrictedChoice.1025.resx -------------------------------------------------------------------------------- /RestrictedChoice/RestrictedChoice/resources/RestrictedChoice.1031.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RestrictedChoice/RestrictedChoice/resources/RestrictedChoice.1031.resx -------------------------------------------------------------------------------- /RestrictedChoice/RestrictedChoice/resources/RestrictedChoice.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RestrictedChoice/RestrictedChoice/resources/RestrictedChoice.1033.resx -------------------------------------------------------------------------------- /RestrictedChoice/RestrictedChoice/resources/RestrictedChoice.1036.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RestrictedChoice/RestrictedChoice/resources/RestrictedChoice.1036.resx -------------------------------------------------------------------------------- /RestrictedChoice/RestrictedChoice/resources/RestrictedChoice.1040.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RestrictedChoice/RestrictedChoice/resources/RestrictedChoice.1040.resx -------------------------------------------------------------------------------- /RestrictedChoice/RestrictedChoice/resources/RestrictedChoice.1041.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RestrictedChoice/RestrictedChoice/resources/RestrictedChoice.1041.resx -------------------------------------------------------------------------------- /RestrictedChoice/RestrictedChoice/resources/RestrictedChoice.1042.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RestrictedChoice/RestrictedChoice/resources/RestrictedChoice.1042.resx -------------------------------------------------------------------------------- /RestrictedChoice/RestrictedChoice/resources/RestrictedChoice.1043.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RestrictedChoice/RestrictedChoice/resources/RestrictedChoice.1043.resx -------------------------------------------------------------------------------- /RestrictedChoice/RestrictedChoice/resources/RestrictedChoice.3082.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RestrictedChoice/RestrictedChoice/resources/RestrictedChoice.3082.resx -------------------------------------------------------------------------------- /RestrictedChoice/RestrictedChoice/services/PcfContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RestrictedChoice/RestrictedChoice/services/PcfContext.tsx -------------------------------------------------------------------------------- /RestrictedChoice/RestrictedChoice/services/PcfContextService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RestrictedChoice/RestrictedChoice/services/PcfContextService.ts -------------------------------------------------------------------------------- /RestrictedChoice/RestrictedChoice/utils/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RestrictedChoice/RestrictedChoice/utils/styles.ts -------------------------------------------------------------------------------- /RestrictedChoice/Solution/RestrictedChoiceControl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RestrictedChoice/Solution/RestrictedChoiceControl/.gitignore -------------------------------------------------------------------------------- /RestrictedChoice/Solution/RestrictedChoiceControl/RestrictedChoiceControl.cdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RestrictedChoice/Solution/RestrictedChoiceControl/RestrictedChoiceControl.cdsproj -------------------------------------------------------------------------------- /RestrictedChoice/Solution/RestrictedChoiceControl/src/Other/Customizations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RestrictedChoice/Solution/RestrictedChoiceControl/src/Other/Customizations.xml -------------------------------------------------------------------------------- /RestrictedChoice/Solution/RestrictedChoiceControl/src/Other/Relationships.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /RestrictedChoice/Solution/RestrictedChoiceControl/src/Other/Solution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RestrictedChoice/Solution/RestrictedChoiceControl/src/Other/Solution.xml -------------------------------------------------------------------------------- /RestrictedChoice/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RestrictedChoice/eslint.config.mjs -------------------------------------------------------------------------------- /RestrictedChoice/featureconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "pcfAllowCustomWebpack": "on" 3 | } -------------------------------------------------------------------------------- /RestrictedChoice/images/2025-03-07_15-36-00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RestrictedChoice/images/2025-03-07_15-36-00.png -------------------------------------------------------------------------------- /RestrictedChoice/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RestrictedChoice/package-lock.json -------------------------------------------------------------------------------- /RestrictedChoice/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RestrictedChoice/package.json -------------------------------------------------------------------------------- /RestrictedChoice/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RestrictedChoice/pcfconfig.json -------------------------------------------------------------------------------- /RestrictedChoice/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RestrictedChoice/tsconfig.json -------------------------------------------------------------------------------- /RestrictedChoice/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RestrictedChoice/webpack.config.js -------------------------------------------------------------------------------- /RotationalImage/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RotationalImage/.eslintrc.json -------------------------------------------------------------------------------- /RotationalImage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RotationalImage/.gitignore -------------------------------------------------------------------------------- /RotationalImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RotationalImage/README.md -------------------------------------------------------------------------------- /RotationalImage/RotationalImage.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RotationalImage/RotationalImage.pcfproj -------------------------------------------------------------------------------- /RotationalImage/RotationalImage/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RotationalImage/RotationalImage/ControlManifest.Input.xml -------------------------------------------------------------------------------- /RotationalImage/RotationalImage/RotationalImageComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RotationalImage/RotationalImage/RotationalImageComponent.tsx -------------------------------------------------------------------------------- /RotationalImage/RotationalImage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RotationalImage/RotationalImage/index.ts -------------------------------------------------------------------------------- /RotationalImage/Solution/RotationalImageComponent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RotationalImage/Solution/RotationalImageComponent/.gitignore -------------------------------------------------------------------------------- /RotationalImage/Solution/RotationalImageComponent/RotationalImageComponent.cdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RotationalImage/Solution/RotationalImageComponent/RotationalImageComponent.cdsproj -------------------------------------------------------------------------------- /RotationalImage/Solution/RotationalImageComponent/src/Other/Customizations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RotationalImage/Solution/RotationalImageComponent/src/Other/Customizations.xml -------------------------------------------------------------------------------- /RotationalImage/Solution/RotationalImageComponent/src/Other/Relationships.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /RotationalImage/Solution/RotationalImageComponent/src/Other/Solution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RotationalImage/Solution/RotationalImageComponent/src/Other/Solution.xml -------------------------------------------------------------------------------- /RotationalImage/featureconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /RotationalImage/images/AddComponentToForm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RotationalImage/images/AddComponentToForm.png -------------------------------------------------------------------------------- /RotationalImage/images/ComponentProperties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RotationalImage/images/ComponentProperties.png -------------------------------------------------------------------------------- /RotationalImage/images/ConverImageToBase64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RotationalImage/images/ConverImageToBase64.gif -------------------------------------------------------------------------------- /RotationalImage/images/ImportComponent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RotationalImage/images/ImportComponent.png -------------------------------------------------------------------------------- /RotationalImage/images/ImportComponentRibbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RotationalImage/images/ImportComponentRibbon.png -------------------------------------------------------------------------------- /RotationalImage/images/RotationalImage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RotationalImage/images/RotationalImage.gif -------------------------------------------------------------------------------- /RotationalImage/images/RunOnStart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RotationalImage/images/RunOnStart.png -------------------------------------------------------------------------------- /RotationalImage/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RotationalImage/package-lock.json -------------------------------------------------------------------------------- /RotationalImage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RotationalImage/package.json -------------------------------------------------------------------------------- /RotationalImage/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RotationalImage/pcfconfig.json -------------------------------------------------------------------------------- /RotationalImage/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RotationalImage/tsconfig.json -------------------------------------------------------------------------------- /RuntimeInfo/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RuntimeInfo/.eslintrc.json -------------------------------------------------------------------------------- /RuntimeInfo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RuntimeInfo/.gitignore -------------------------------------------------------------------------------- /RuntimeInfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RuntimeInfo/README.md -------------------------------------------------------------------------------- /RuntimeInfo/RuntimeInfo.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RuntimeInfo/RuntimeInfo.pcfproj -------------------------------------------------------------------------------- /RuntimeInfo/RuntimeInfo/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RuntimeInfo/RuntimeInfo/ControlManifest.Input.xml -------------------------------------------------------------------------------- /RuntimeInfo/RuntimeInfo/browser-info.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'browser-info'; -------------------------------------------------------------------------------- /RuntimeInfo/RuntimeInfo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RuntimeInfo/RuntimeInfo/index.ts -------------------------------------------------------------------------------- /RuntimeInfo/Solution/RuntimeInfoComponent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RuntimeInfo/Solution/RuntimeInfoComponent/.gitignore -------------------------------------------------------------------------------- /RuntimeInfo/Solution/RuntimeInfoComponent/RuntimeInfoComponent.cdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RuntimeInfo/Solution/RuntimeInfoComponent/RuntimeInfoComponent.cdsproj -------------------------------------------------------------------------------- /RuntimeInfo/Solution/RuntimeInfoComponent/src/Other/Customizations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RuntimeInfo/Solution/RuntimeInfoComponent/src/Other/Customizations.xml -------------------------------------------------------------------------------- /RuntimeInfo/Solution/RuntimeInfoComponent/src/Other/Relationships.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /RuntimeInfo/Solution/RuntimeInfoComponent/src/Other/Solution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RuntimeInfo/Solution/RuntimeInfoComponent/src/Other/Solution.xml -------------------------------------------------------------------------------- /RuntimeInfo/featureconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /RuntimeInfo/images/EditComponentName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RuntimeInfo/images/EditComponentName.png -------------------------------------------------------------------------------- /RuntimeInfo/images/EditComponentNameUpdateName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RuntimeInfo/images/EditComponentNameUpdateName.png -------------------------------------------------------------------------------- /RuntimeInfo/images/ImportComponent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RuntimeInfo/images/ImportComponent.png -------------------------------------------------------------------------------- /RuntimeInfo/images/ImportComponentFromCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RuntimeInfo/images/ImportComponentFromCode.png -------------------------------------------------------------------------------- /RuntimeInfo/images/RunTimeInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RuntimeInfo/images/RunTimeInfo.png -------------------------------------------------------------------------------- /RuntimeInfo/images/RuntimeInfoDesktopFirefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RuntimeInfo/images/RuntimeInfoDesktopFirefox.png -------------------------------------------------------------------------------- /RuntimeInfo/images/RuntimeInfoPhone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RuntimeInfo/images/RuntimeInfoPhone.png -------------------------------------------------------------------------------- /RuntimeInfo/images/UtilizePropertyInTextField.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RuntimeInfo/images/UtilizePropertyInTextField.png -------------------------------------------------------------------------------- /RuntimeInfo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RuntimeInfo/package-lock.json -------------------------------------------------------------------------------- /RuntimeInfo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RuntimeInfo/package.json -------------------------------------------------------------------------------- /RuntimeInfo/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RuntimeInfo/pcfconfig.json -------------------------------------------------------------------------------- /RuntimeInfo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/RuntimeInfo/tsconfig.json -------------------------------------------------------------------------------- /Scheduler/.github/instructions/copilot.instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/.github/instructions/copilot.instructions.md -------------------------------------------------------------------------------- /Scheduler/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/.gitignore -------------------------------------------------------------------------------- /Scheduler/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/.vscode/settings.json -------------------------------------------------------------------------------- /Scheduler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/README.md -------------------------------------------------------------------------------- /Scheduler/Sample/RAW! Scheduler Sample.msapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Sample/RAW! Scheduler Sample.msapp -------------------------------------------------------------------------------- /Scheduler/Scheduler.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler.pcfproj -------------------------------------------------------------------------------- /Scheduler/Scheduler/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/ControlManifest.Input.xml -------------------------------------------------------------------------------- /Scheduler/Scheduler/components/callbacks/eventClicked.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/components/callbacks/eventClicked.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/components/callbacks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/components/callbacks/index.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/components/callbacks/newEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/components/callbacks/newEvent.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/components/callbacks/nextClick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/components/callbacks/nextClick.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/components/callbacks/onViewChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/components/callbacks/onViewChange.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/components/callbacks/prevClick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/components/callbacks/prevClick.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/components/callbacks/slotClickedFunc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/components/callbacks/slotClickedFunc.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/components/callbacks/toggleExpandFunc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/components/callbacks/toggleExpandFunc.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/components/renderers/eventItemPopoverTemplateResolver.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/components/renderers/eventItemPopoverTemplateResolver.tsx -------------------------------------------------------------------------------- /Scheduler/Scheduler/components/renderers/eventItemTemplateResolver.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/components/renderers/eventItemTemplateResolver.tsx -------------------------------------------------------------------------------- /Scheduler/Scheduler/components/renderers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/components/renderers/index.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/components/scheduler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/components/scheduler.tsx -------------------------------------------------------------------------------- /Scheduler/Scheduler/components/schedulerWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/components/schedulerWrapper.tsx -------------------------------------------------------------------------------- /Scheduler/Scheduler/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/hooks/index.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/hooks/useAvailableViews.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/hooks/useAvailableViews.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/hooks/useDayViewOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/hooks/useDayViewOptions.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/hooks/useDisplayWeekend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/hooks/useDisplayWeekend.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/hooks/useNonWorkingTimeColors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/hooks/useNonWorkingTimeColors.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/hooks/useResourceNameHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/hooks/useResourceNameHeader.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/hooks/useSchedulerDate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/hooks/useSchedulerDate.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/hooks/useSchedulerLanguage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/hooks/useSchedulerLanguage.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/hooks/useSchedulerView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/hooks/useSchedulerView.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/hooks/useShowHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/hooks/useShowHeader.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/hooks/useWorkWeekDays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/hooks/useWorkWeekDays.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/index.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/mocks/MockPCFClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/mocks/MockPCFClient.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/mocks/MockPCFContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/mocks/MockPCFContext.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/mocks/MockPCFDataSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/mocks/MockPCFDataSet.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/mocks/MockPCFDevice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/mocks/MockPCFDevice.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/mocks/MockPCFFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/mocks/MockPCFFactory.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/mocks/MockPCFFormatting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/mocks/MockPCFFormatting.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/mocks/MockPCFMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/mocks/MockPCFMode.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/mocks/MockPCFNavigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/mocks/MockPCFNavigation.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/mocks/MockPCFParameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/mocks/MockPCFParameters.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/mocks/MockPCFResources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/mocks/MockPCFResources.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/mocks/MockPCFUserSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/mocks/MockPCFUserSettings.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/mocks/MockPCFUtility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/mocks/MockPCFUtility.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/mocks/MockPCFWebApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/mocks/MockPCFWebApi.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/mocks/index.ts: -------------------------------------------------------------------------------- 1 | export * from "."; 2 | -------------------------------------------------------------------------------- /Scheduler/Scheduler/resources/Scheduler.1025.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/resources/Scheduler.1025.resx -------------------------------------------------------------------------------- /Scheduler/Scheduler/resources/Scheduler.1031.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/resources/Scheduler.1031.resx -------------------------------------------------------------------------------- /Scheduler/Scheduler/resources/Scheduler.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/resources/Scheduler.1033.resx -------------------------------------------------------------------------------- /Scheduler/Scheduler/resources/Scheduler.1036.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/resources/Scheduler.1036.resx -------------------------------------------------------------------------------- /Scheduler/Scheduler/resources/Scheduler.1040.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/resources/Scheduler.1040.resx -------------------------------------------------------------------------------- /Scheduler/Scheduler/resources/Scheduler.1041.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/resources/Scheduler.1041.resx -------------------------------------------------------------------------------- /Scheduler/Scheduler/resources/Scheduler.1042.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/resources/Scheduler.1042.resx -------------------------------------------------------------------------------- /Scheduler/Scheduler/resources/Scheduler.1043.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/resources/Scheduler.1043.resx -------------------------------------------------------------------------------- /Scheduler/Scheduler/resources/Scheduler.3082.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/resources/Scheduler.3082.resx -------------------------------------------------------------------------------- /Scheduler/Scheduler/resources/schedulerOverrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/resources/schedulerOverrides.css -------------------------------------------------------------------------------- /Scheduler/Scheduler/schedulerApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/schedulerApp.tsx -------------------------------------------------------------------------------- /Scheduler/Scheduler/services/calendarDataService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/services/calendarDataService.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/services/metadataService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/services/metadataService.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/services/pcfContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/services/pcfContext.tsx -------------------------------------------------------------------------------- /Scheduler/Scheduler/services/pcfContextService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/services/pcfContextService.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/services/schedulerBehaviors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/services/schedulerBehaviors.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/test/index.html -------------------------------------------------------------------------------- /Scheduler/Scheduler/test/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/test/main.tsx -------------------------------------------------------------------------------- /Scheduler/Scheduler/test/testApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/test/testApp.tsx -------------------------------------------------------------------------------- /Scheduler/Scheduler/test/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/test/tsconfig.app.json -------------------------------------------------------------------------------- /Scheduler/Scheduler/test/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/test/vite.config.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/types/extendedSchedulerData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/types/extendedSchedulerData.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/types/index.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/types/schedulerTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/types/schedulerTypes.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/types/schedulerViews.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/types/schedulerViews.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/utils/constants.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/utils/demoData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/utils/demoData.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/utils/formattingHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/utils/formattingHelpers.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/utils/locales.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/utils/locales.ts -------------------------------------------------------------------------------- /Scheduler/Scheduler/utils/localization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Scheduler/utils/localization.ts -------------------------------------------------------------------------------- /Scheduler/Solution/RAWSchedulerComponent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Solution/RAWSchedulerComponent/.gitignore -------------------------------------------------------------------------------- /Scheduler/Solution/RAWSchedulerComponent/RAWSchedulerComponent.cdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Solution/RAWSchedulerComponent/RAWSchedulerComponent.cdsproj -------------------------------------------------------------------------------- /Scheduler/Solution/RAWSchedulerComponent/src/Other/Customizations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Solution/RAWSchedulerComponent/src/Other/Customizations.xml -------------------------------------------------------------------------------- /Scheduler/Solution/RAWSchedulerComponent/src/Other/Relationships.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Scheduler/Solution/RAWSchedulerComponent/src/Other/Solution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/Solution/RAWSchedulerComponent/src/Other/Solution.xml -------------------------------------------------------------------------------- /Scheduler/data/events.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/data/events.csv -------------------------------------------------------------------------------- /Scheduler/data/events_powerapps_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/data/events_powerapps_table.txt -------------------------------------------------------------------------------- /Scheduler/data/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/data/generate.py -------------------------------------------------------------------------------- /Scheduler/data/resources.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/data/resources.csv -------------------------------------------------------------------------------- /Scheduler/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/eslint.config.mjs -------------------------------------------------------------------------------- /Scheduler/featureconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "pcfAllowCustomWebpack": "on" 3 | } -------------------------------------------------------------------------------- /Scheduler/images/scheduler-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/images/scheduler-demo.gif -------------------------------------------------------------------------------- /Scheduler/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/package-lock.json -------------------------------------------------------------------------------- /Scheduler/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/package.json -------------------------------------------------------------------------------- /Scheduler/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/pcfconfig.json -------------------------------------------------------------------------------- /Scheduler/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/Scheduler/tsconfig.json -------------------------------------------------------------------------------- /WorldDaylightMap/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/WorldDaylightMap/.eslintrc.json -------------------------------------------------------------------------------- /WorldDaylightMap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/WorldDaylightMap/.gitignore -------------------------------------------------------------------------------- /WorldDaylightMap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/WorldDaylightMap/README.md -------------------------------------------------------------------------------- /WorldDaylightMap/Sample/World Daylight Map.msapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/WorldDaylightMap/Sample/World Daylight Map.msapp -------------------------------------------------------------------------------- /WorldDaylightMap/Solution/RAWWorldDaylightMap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/WorldDaylightMap/Solution/RAWWorldDaylightMap/.gitignore -------------------------------------------------------------------------------- /WorldDaylightMap/Solution/RAWWorldDaylightMap/RAWWorldDaylightMap.cdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/WorldDaylightMap/Solution/RAWWorldDaylightMap/RAWWorldDaylightMap.cdsproj -------------------------------------------------------------------------------- /WorldDaylightMap/Solution/RAWWorldDaylightMap/src/Other/Customizations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/WorldDaylightMap/Solution/RAWWorldDaylightMap/src/Other/Customizations.xml -------------------------------------------------------------------------------- /WorldDaylightMap/Solution/RAWWorldDaylightMap/src/Other/Relationships.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WorldDaylightMap/Solution/RAWWorldDaylightMap/src/Other/Solution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/WorldDaylightMap/Solution/RAWWorldDaylightMap/src/Other/Solution.xml -------------------------------------------------------------------------------- /WorldDaylightMap/WorldDaylightMap.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/WorldDaylightMap/WorldDaylightMap.pcfproj -------------------------------------------------------------------------------- /WorldDaylightMap/WorldDaylightMap/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/WorldDaylightMap/WorldDaylightMap/ControlManifest.Input.xml -------------------------------------------------------------------------------- /WorldDaylightMap/WorldDaylightMap/WorldDaylightMap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/WorldDaylightMap/WorldDaylightMap/WorldDaylightMap.tsx -------------------------------------------------------------------------------- /WorldDaylightMap/WorldDaylightMap/css/WorldDaylightMap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/WorldDaylightMap/WorldDaylightMap/css/WorldDaylightMap.css -------------------------------------------------------------------------------- /WorldDaylightMap/WorldDaylightMap/img/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/WorldDaylightMap/WorldDaylightMap/img/preview.png -------------------------------------------------------------------------------- /WorldDaylightMap/WorldDaylightMap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/WorldDaylightMap/WorldDaylightMap/index.ts -------------------------------------------------------------------------------- /WorldDaylightMap/WorldDaylightMap/strings/WorldDaylightMap.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/WorldDaylightMap/WorldDaylightMap/strings/WorldDaylightMap.1033.resx -------------------------------------------------------------------------------- /WorldDaylightMap/featureconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /WorldDaylightMap/images/world-daylight-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/WorldDaylightMap/images/world-daylight-map.png -------------------------------------------------------------------------------- /WorldDaylightMap/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/WorldDaylightMap/package-lock.json -------------------------------------------------------------------------------- /WorldDaylightMap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/WorldDaylightMap/package.json -------------------------------------------------------------------------------- /WorldDaylightMap/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/WorldDaylightMap/pcfconfig.json -------------------------------------------------------------------------------- /WorldDaylightMap/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/WorldDaylightMap/tsconfig.json -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilson504/PCFControls/HEAD/package.json --------------------------------------------------------------------------------