├── .gitignore ├── ActionButton ├── .gitignore ├── ActionButton.pcfproj ├── ActionButton │ ├── ButtonControl.tsx │ ├── ControlManifest.Input.xml │ ├── imgs │ │ └── logo.png │ ├── index.ts │ ├── screenshots │ │ ├── screenshot.png │ │ └── screenshot2.png │ └── strings │ │ ├── ActionButton.1031.resx │ │ ├── ActionButton.1033.resx │ │ └── ActionButton.1036.resx ├── eslint.config.mjs ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── ChoicesSelector ├── .gitignore ├── ChoicesSelector.pcfproj ├── ChoicesSelector │ ├── ChoicesSelectorControl.tsx │ ├── ControlManifest.Input.xml │ ├── IChoicesSelectorProps.ts │ ├── index.ts │ └── strings │ │ ├── ChoicesSelector.1033.resx │ │ └── ChoicesSelector.1036.resx ├── eslint.config.mjs ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── ColumnHeader ├── .gitignore ├── ColumnHeader.pcfproj ├── ColumnHeader │ ├── ControlManifest.Input.xml │ ├── HeaderColumn.tsx │ ├── index.ts │ └── strings │ │ ├── ColumnHeader.1033.resx │ │ └── ColumnHeader.1036.resx ├── eslint.config.mjs ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── CustomSwitch ├── .gitignore ├── CustomSwitch.pcfproj ├── CustomSwitch │ ├── ControlManifest.Input.xml │ ├── CustomSwitchSolution │ │ ├── .gitignore │ │ ├── CustomSwitchSolution.cdsproj │ │ └── Other │ │ │ ├── Customizations.xml │ │ │ ├── Relationships.xml │ │ │ └── Solution.xml │ ├── css │ │ └── CustomSwitch.css │ ├── imgs │ │ └── preview.png │ ├── index.ts │ └── strings │ │ ├── CustomSwitch.1031.resx │ │ ├── CustomSwitch.1033.resx │ │ └── CustomSwitch.1036.resx ├── eslint.config.mjs ├── package-lock.json ├── package.json ├── pcfconfig.json ├── screenshots │ └── capture.png └── tsconfig.json ├── DateAsCheckbox ├── .gitignore ├── DateAsCheckbox.pcfproj ├── DateAsCheckbox │ ├── ControlManifest.Input.xml │ ├── DateAsCheckBoxSolution │ │ ├── .gitignore │ │ ├── DateAsCheckBoxSolution.cdsproj │ │ └── src │ │ │ └── Other │ │ │ ├── Customizations.xml │ │ │ ├── Relationships.xml │ │ │ └── Solution.xml │ ├── css │ │ └── DateAsCheckbox.css │ ├── index.ts │ └── strings │ │ ├── DateAsCheckbox.1031.resx │ │ ├── DateAsCheckbox.1033.resx │ │ └── DateAsCheckbox.1036.resx ├── eslint.config.mjs ├── package-lock.json ├── package.json ├── pcfconfig.json ├── screenshots │ └── dateAsCheckbox.gif └── tsconfig.json ├── DateRangePickerPCF ├── .eslintrc.json ├── .gitignore ├── DateRangePickerPCF.pcfproj ├── DateRangerPickerPCF │ ├── ControlManifest.Input.xml │ ├── CustomTheme.less │ ├── MyDateRangePicker.tsx │ ├── index.ts │ └── strings │ │ ├── DateRangePicker.1033.resx │ │ └── DateRangePicker.1036.resx ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── DateRangePickerSolution ├── Build Release-DateRangePicker.bat ├── DateRangePicker.cdsproj └── src │ └── Other │ ├── Customizations.xml │ ├── Relationships.xml │ └── Solution.xml ├── LICENSE ├── LinearSliderWithSteps ├── .gitignore ├── LinearSliderWithSteps.pcfproj ├── LinearSliderWithSteps │ ├── ControlManifest.Input.xml │ ├── css │ │ └── LinearSliderWithSteps.css │ ├── imgs │ │ └── screenshot.png │ ├── index.ts │ └── strings │ │ ├── LinearSliderWithSteps.1031.resx │ │ ├── LinearSliderWithSteps.1033.resx │ │ └── LinearSliderWithSteps.1036.resx ├── eslint.config.mjs ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── LookupToPicklist ├── .gitignore ├── LooklupToPicklist │ ├── ControlManifest.Input.xml │ ├── Interfaces.ts │ ├── LookupCombobox.tsx │ ├── img │ │ └── LookupToPicklist_preview.png │ ├── index.ts │ └── strings │ │ ├── LookupToPicklist.1031.resx │ │ ├── LookupToPicklist.1033.resx │ │ └── LookupToPicklist.1036.resx ├── LookupToPicklist.pcfproj ├── eslint.config.mjs ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── MscrmToolsPCFControls ├── .gitignore ├── Build Release-DateRangePicker.bat ├── Build Release.bat ├── MscrmToolsPCFControls.cdsproj └── src │ └── Other │ ├── Customizations.xml │ ├── Relationships.xml │ └── Solution.xml ├── NNCheckboxes ├── .gitignore ├── NNCheckboxes.pcfproj ├── NNCheckboxes │ ├── ControlManifest.Input.xml │ ├── Solution │ │ ├── .gitignore │ │ ├── Other │ │ │ ├── Customizations.xml │ │ │ ├── Relationships.xml │ │ │ └── Solution.xml │ │ └── Solution.cdsproj │ ├── css │ │ └── NNCheckboxes.css │ ├── imgs │ │ ├── logo.png │ │ └── nncheckboxes.png │ ├── index.ts │ ├── referential.ts │ ├── reldef.ts │ └── strings │ │ ├── NNCheckboxes.1031.resx │ │ ├── NNCheckboxes.1033.resx │ │ └── NNCheckboxes.1036.resx ├── Screenshots │ ├── ColorAndGroups.png │ ├── Configuration.png │ ├── Control.png │ ├── Sample1.png │ ├── Sample10.png │ ├── Sample2.png │ ├── Sample3.png │ ├── Sample4.png │ ├── Sample5.png │ ├── Sample6.png │ ├── Sample7.png │ ├── Sample8.png │ ├── Sample9.png │ └── video.gif ├── eslint.config.mjs ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json ├── README.md ├── ReactNotifier ├── .gitignore ├── ReactNotifier.pcfproj ├── ReactNotifier │ ├── ControlManifest.Input.xml │ ├── NotificationControl.tsx │ ├── imgs │ │ └── ReactNotification.png │ ├── index.ts │ └── strings │ │ ├── ReactNotifier.1031.resx │ │ ├── ReactNotifier.1033.resx │ │ └── ReactNotifier.1036.resx ├── eslint.config.mjs ├── package-lock.json ├── package.json ├── pcfconfig.json └── tsconfig.json └── YearDropdown ├── .eslintrc.json ├── .gitignore ├── YearDropdown.pcfproj ├── YearDropdown ├── .eslintrc.json ├── ControlManifest.Input.xml ├── components │ ├── DropdownNew.tsx │ ├── DropdownOld.tsx │ ├── IRecordSelectorProps.ts │ └── RecordSelector.tsx ├── img │ └── YearDropdown.png ├── index.ts └── strings │ ├── YearDropdown.1031.resx │ ├── YearDropdown.1033.resx │ └── YearDropdown.1036.resx ├── eslint.config.mjs ├── package-lock.json ├── package.json ├── pcfconfig.json ├── screenshots └── YearDropdown.gif └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/.gitignore -------------------------------------------------------------------------------- /ActionButton/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ActionButton/.gitignore -------------------------------------------------------------------------------- /ActionButton/ActionButton.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ActionButton/ActionButton.pcfproj -------------------------------------------------------------------------------- /ActionButton/ActionButton/ButtonControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ActionButton/ActionButton/ButtonControl.tsx -------------------------------------------------------------------------------- /ActionButton/ActionButton/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ActionButton/ActionButton/ControlManifest.Input.xml -------------------------------------------------------------------------------- /ActionButton/ActionButton/imgs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ActionButton/ActionButton/imgs/logo.png -------------------------------------------------------------------------------- /ActionButton/ActionButton/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ActionButton/ActionButton/index.ts -------------------------------------------------------------------------------- /ActionButton/ActionButton/screenshots/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ActionButton/ActionButton/screenshots/screenshot.png -------------------------------------------------------------------------------- /ActionButton/ActionButton/screenshots/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ActionButton/ActionButton/screenshots/screenshot2.png -------------------------------------------------------------------------------- /ActionButton/ActionButton/strings/ActionButton.1031.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ActionButton/ActionButton/strings/ActionButton.1031.resx -------------------------------------------------------------------------------- /ActionButton/ActionButton/strings/ActionButton.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ActionButton/ActionButton/strings/ActionButton.1033.resx -------------------------------------------------------------------------------- /ActionButton/ActionButton/strings/ActionButton.1036.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ActionButton/ActionButton/strings/ActionButton.1036.resx -------------------------------------------------------------------------------- /ActionButton/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ActionButton/eslint.config.mjs -------------------------------------------------------------------------------- /ActionButton/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ActionButton/package-lock.json -------------------------------------------------------------------------------- /ActionButton/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ActionButton/package.json -------------------------------------------------------------------------------- /ActionButton/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ActionButton/pcfconfig.json -------------------------------------------------------------------------------- /ActionButton/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ActionButton/tsconfig.json -------------------------------------------------------------------------------- /ChoicesSelector/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ChoicesSelector/.gitignore -------------------------------------------------------------------------------- /ChoicesSelector/ChoicesSelector.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ChoicesSelector/ChoicesSelector.pcfproj -------------------------------------------------------------------------------- /ChoicesSelector/ChoicesSelector/ChoicesSelectorControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ChoicesSelector/ChoicesSelector/ChoicesSelectorControl.tsx -------------------------------------------------------------------------------- /ChoicesSelector/ChoicesSelector/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ChoicesSelector/ChoicesSelector/ControlManifest.Input.xml -------------------------------------------------------------------------------- /ChoicesSelector/ChoicesSelector/IChoicesSelectorProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ChoicesSelector/ChoicesSelector/IChoicesSelectorProps.ts -------------------------------------------------------------------------------- /ChoicesSelector/ChoicesSelector/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ChoicesSelector/ChoicesSelector/index.ts -------------------------------------------------------------------------------- /ChoicesSelector/ChoicesSelector/strings/ChoicesSelector.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ChoicesSelector/ChoicesSelector/strings/ChoicesSelector.1033.resx -------------------------------------------------------------------------------- /ChoicesSelector/ChoicesSelector/strings/ChoicesSelector.1036.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ChoicesSelector/ChoicesSelector/strings/ChoicesSelector.1036.resx -------------------------------------------------------------------------------- /ChoicesSelector/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ChoicesSelector/eslint.config.mjs -------------------------------------------------------------------------------- /ChoicesSelector/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ChoicesSelector/package-lock.json -------------------------------------------------------------------------------- /ChoicesSelector/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ChoicesSelector/package.json -------------------------------------------------------------------------------- /ChoicesSelector/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ChoicesSelector/pcfconfig.json -------------------------------------------------------------------------------- /ChoicesSelector/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ChoicesSelector/tsconfig.json -------------------------------------------------------------------------------- /ColumnHeader/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ColumnHeader/.gitignore -------------------------------------------------------------------------------- /ColumnHeader/ColumnHeader.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ColumnHeader/ColumnHeader.pcfproj -------------------------------------------------------------------------------- /ColumnHeader/ColumnHeader/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ColumnHeader/ColumnHeader/ControlManifest.Input.xml -------------------------------------------------------------------------------- /ColumnHeader/ColumnHeader/HeaderColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ColumnHeader/ColumnHeader/HeaderColumn.tsx -------------------------------------------------------------------------------- /ColumnHeader/ColumnHeader/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ColumnHeader/ColumnHeader/index.ts -------------------------------------------------------------------------------- /ColumnHeader/ColumnHeader/strings/ColumnHeader.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ColumnHeader/ColumnHeader/strings/ColumnHeader.1033.resx -------------------------------------------------------------------------------- /ColumnHeader/ColumnHeader/strings/ColumnHeader.1036.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ColumnHeader/ColumnHeader/strings/ColumnHeader.1036.resx -------------------------------------------------------------------------------- /ColumnHeader/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ColumnHeader/eslint.config.mjs -------------------------------------------------------------------------------- /ColumnHeader/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ColumnHeader/package-lock.json -------------------------------------------------------------------------------- /ColumnHeader/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ColumnHeader/package.json -------------------------------------------------------------------------------- /ColumnHeader/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ColumnHeader/pcfconfig.json -------------------------------------------------------------------------------- /ColumnHeader/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ColumnHeader/tsconfig.json -------------------------------------------------------------------------------- /CustomSwitch/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/CustomSwitch/.gitignore -------------------------------------------------------------------------------- /CustomSwitch/CustomSwitch.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/CustomSwitch/CustomSwitch.pcfproj -------------------------------------------------------------------------------- /CustomSwitch/CustomSwitch/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/CustomSwitch/CustomSwitch/ControlManifest.Input.xml -------------------------------------------------------------------------------- /CustomSwitch/CustomSwitch/CustomSwitchSolution/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /obj -------------------------------------------------------------------------------- /CustomSwitch/CustomSwitch/CustomSwitchSolution/CustomSwitchSolution.cdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/CustomSwitch/CustomSwitch/CustomSwitchSolution/CustomSwitchSolution.cdsproj -------------------------------------------------------------------------------- /CustomSwitch/CustomSwitch/CustomSwitchSolution/Other/Customizations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/CustomSwitch/CustomSwitch/CustomSwitchSolution/Other/Customizations.xml -------------------------------------------------------------------------------- /CustomSwitch/CustomSwitch/CustomSwitchSolution/Other/Relationships.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CustomSwitch/CustomSwitch/CustomSwitchSolution/Other/Solution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/CustomSwitch/CustomSwitch/CustomSwitchSolution/Other/Solution.xml -------------------------------------------------------------------------------- /CustomSwitch/CustomSwitch/css/CustomSwitch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/CustomSwitch/CustomSwitch/css/CustomSwitch.css -------------------------------------------------------------------------------- /CustomSwitch/CustomSwitch/imgs/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/CustomSwitch/CustomSwitch/imgs/preview.png -------------------------------------------------------------------------------- /CustomSwitch/CustomSwitch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/CustomSwitch/CustomSwitch/index.ts -------------------------------------------------------------------------------- /CustomSwitch/CustomSwitch/strings/CustomSwitch.1031.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/CustomSwitch/CustomSwitch/strings/CustomSwitch.1031.resx -------------------------------------------------------------------------------- /CustomSwitch/CustomSwitch/strings/CustomSwitch.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/CustomSwitch/CustomSwitch/strings/CustomSwitch.1033.resx -------------------------------------------------------------------------------- /CustomSwitch/CustomSwitch/strings/CustomSwitch.1036.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/CustomSwitch/CustomSwitch/strings/CustomSwitch.1036.resx -------------------------------------------------------------------------------- /CustomSwitch/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/CustomSwitch/eslint.config.mjs -------------------------------------------------------------------------------- /CustomSwitch/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/CustomSwitch/package-lock.json -------------------------------------------------------------------------------- /CustomSwitch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/CustomSwitch/package.json -------------------------------------------------------------------------------- /CustomSwitch/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/CustomSwitch/pcfconfig.json -------------------------------------------------------------------------------- /CustomSwitch/screenshots/capture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/CustomSwitch/screenshots/capture.png -------------------------------------------------------------------------------- /CustomSwitch/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/CustomSwitch/tsconfig.json -------------------------------------------------------------------------------- /DateAsCheckbox/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateAsCheckbox/.gitignore -------------------------------------------------------------------------------- /DateAsCheckbox/DateAsCheckbox.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateAsCheckbox/DateAsCheckbox.pcfproj -------------------------------------------------------------------------------- /DateAsCheckbox/DateAsCheckbox/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateAsCheckbox/DateAsCheckbox/ControlManifest.Input.xml -------------------------------------------------------------------------------- /DateAsCheckbox/DateAsCheckbox/DateAsCheckBoxSolution/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateAsCheckbox/DateAsCheckbox/DateAsCheckBoxSolution/.gitignore -------------------------------------------------------------------------------- /DateAsCheckbox/DateAsCheckbox/DateAsCheckBoxSolution/DateAsCheckBoxSolution.cdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateAsCheckbox/DateAsCheckbox/DateAsCheckBoxSolution/DateAsCheckBoxSolution.cdsproj -------------------------------------------------------------------------------- /DateAsCheckbox/DateAsCheckbox/DateAsCheckBoxSolution/src/Other/Customizations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateAsCheckbox/DateAsCheckbox/DateAsCheckBoxSolution/src/Other/Customizations.xml -------------------------------------------------------------------------------- /DateAsCheckbox/DateAsCheckbox/DateAsCheckBoxSolution/src/Other/Relationships.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /DateAsCheckbox/DateAsCheckbox/DateAsCheckBoxSolution/src/Other/Solution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateAsCheckbox/DateAsCheckbox/DateAsCheckBoxSolution/src/Other/Solution.xml -------------------------------------------------------------------------------- /DateAsCheckbox/DateAsCheckbox/css/DateAsCheckbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateAsCheckbox/DateAsCheckbox/css/DateAsCheckbox.css -------------------------------------------------------------------------------- /DateAsCheckbox/DateAsCheckbox/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateAsCheckbox/DateAsCheckbox/index.ts -------------------------------------------------------------------------------- /DateAsCheckbox/DateAsCheckbox/strings/DateAsCheckbox.1031.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateAsCheckbox/DateAsCheckbox/strings/DateAsCheckbox.1031.resx -------------------------------------------------------------------------------- /DateAsCheckbox/DateAsCheckbox/strings/DateAsCheckbox.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateAsCheckbox/DateAsCheckbox/strings/DateAsCheckbox.1033.resx -------------------------------------------------------------------------------- /DateAsCheckbox/DateAsCheckbox/strings/DateAsCheckbox.1036.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateAsCheckbox/DateAsCheckbox/strings/DateAsCheckbox.1036.resx -------------------------------------------------------------------------------- /DateAsCheckbox/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateAsCheckbox/eslint.config.mjs -------------------------------------------------------------------------------- /DateAsCheckbox/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateAsCheckbox/package-lock.json -------------------------------------------------------------------------------- /DateAsCheckbox/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateAsCheckbox/package.json -------------------------------------------------------------------------------- /DateAsCheckbox/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateAsCheckbox/pcfconfig.json -------------------------------------------------------------------------------- /DateAsCheckbox/screenshots/dateAsCheckbox.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateAsCheckbox/screenshots/dateAsCheckbox.gif -------------------------------------------------------------------------------- /DateAsCheckbox/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateAsCheckbox/tsconfig.json -------------------------------------------------------------------------------- /DateRangePickerPCF/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateRangePickerPCF/.eslintrc.json -------------------------------------------------------------------------------- /DateRangePickerPCF/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateRangePickerPCF/.gitignore -------------------------------------------------------------------------------- /DateRangePickerPCF/DateRangePickerPCF.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateRangePickerPCF/DateRangePickerPCF.pcfproj -------------------------------------------------------------------------------- /DateRangePickerPCF/DateRangerPickerPCF/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateRangePickerPCF/DateRangerPickerPCF/ControlManifest.Input.xml -------------------------------------------------------------------------------- /DateRangePickerPCF/DateRangerPickerPCF/CustomTheme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateRangePickerPCF/DateRangerPickerPCF/CustomTheme.less -------------------------------------------------------------------------------- /DateRangePickerPCF/DateRangerPickerPCF/MyDateRangePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateRangePickerPCF/DateRangerPickerPCF/MyDateRangePicker.tsx -------------------------------------------------------------------------------- /DateRangePickerPCF/DateRangerPickerPCF/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateRangePickerPCF/DateRangerPickerPCF/index.ts -------------------------------------------------------------------------------- /DateRangePickerPCF/DateRangerPickerPCF/strings/DateRangePicker.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateRangePickerPCF/DateRangerPickerPCF/strings/DateRangePicker.1033.resx -------------------------------------------------------------------------------- /DateRangePickerPCF/DateRangerPickerPCF/strings/DateRangePicker.1036.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateRangePickerPCF/DateRangerPickerPCF/strings/DateRangePicker.1036.resx -------------------------------------------------------------------------------- /DateRangePickerPCF/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateRangePickerPCF/package-lock.json -------------------------------------------------------------------------------- /DateRangePickerPCF/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateRangePickerPCF/package.json -------------------------------------------------------------------------------- /DateRangePickerPCF/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateRangePickerPCF/pcfconfig.json -------------------------------------------------------------------------------- /DateRangePickerPCF/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateRangePickerPCF/tsconfig.json -------------------------------------------------------------------------------- /DateRangePickerSolution/Build Release-DateRangePicker.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateRangePickerSolution/Build Release-DateRangePicker.bat -------------------------------------------------------------------------------- /DateRangePickerSolution/DateRangePicker.cdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateRangePickerSolution/DateRangePicker.cdsproj -------------------------------------------------------------------------------- /DateRangePickerSolution/src/Other/Customizations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateRangePickerSolution/src/Other/Customizations.xml -------------------------------------------------------------------------------- /DateRangePickerSolution/src/Other/Relationships.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /DateRangePickerSolution/src/Other/Solution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/DateRangePickerSolution/src/Other/Solution.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/LICENSE -------------------------------------------------------------------------------- /LinearSliderWithSteps/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/LinearSliderWithSteps/.gitignore -------------------------------------------------------------------------------- /LinearSliderWithSteps/LinearSliderWithSteps.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/LinearSliderWithSteps/LinearSliderWithSteps.pcfproj -------------------------------------------------------------------------------- /LinearSliderWithSteps/LinearSliderWithSteps/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/LinearSliderWithSteps/LinearSliderWithSteps/ControlManifest.Input.xml -------------------------------------------------------------------------------- /LinearSliderWithSteps/LinearSliderWithSteps/css/LinearSliderWithSteps.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/LinearSliderWithSteps/LinearSliderWithSteps/css/LinearSliderWithSteps.css -------------------------------------------------------------------------------- /LinearSliderWithSteps/LinearSliderWithSteps/imgs/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/LinearSliderWithSteps/LinearSliderWithSteps/imgs/screenshot.png -------------------------------------------------------------------------------- /LinearSliderWithSteps/LinearSliderWithSteps/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/LinearSliderWithSteps/LinearSliderWithSteps/index.ts -------------------------------------------------------------------------------- /LinearSliderWithSteps/LinearSliderWithSteps/strings/LinearSliderWithSteps.1031.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/LinearSliderWithSteps/LinearSliderWithSteps/strings/LinearSliderWithSteps.1031.resx -------------------------------------------------------------------------------- /LinearSliderWithSteps/LinearSliderWithSteps/strings/LinearSliderWithSteps.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/LinearSliderWithSteps/LinearSliderWithSteps/strings/LinearSliderWithSteps.1033.resx -------------------------------------------------------------------------------- /LinearSliderWithSteps/LinearSliderWithSteps/strings/LinearSliderWithSteps.1036.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/LinearSliderWithSteps/LinearSliderWithSteps/strings/LinearSliderWithSteps.1036.resx -------------------------------------------------------------------------------- /LinearSliderWithSteps/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/LinearSliderWithSteps/eslint.config.mjs -------------------------------------------------------------------------------- /LinearSliderWithSteps/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/LinearSliderWithSteps/package-lock.json -------------------------------------------------------------------------------- /LinearSliderWithSteps/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/LinearSliderWithSteps/package.json -------------------------------------------------------------------------------- /LinearSliderWithSteps/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/LinearSliderWithSteps/pcfconfig.json -------------------------------------------------------------------------------- /LinearSliderWithSteps/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/LinearSliderWithSteps/tsconfig.json -------------------------------------------------------------------------------- /LookupToPicklist/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/LookupToPicklist/.gitignore -------------------------------------------------------------------------------- /LookupToPicklist/LooklupToPicklist/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/LookupToPicklist/LooklupToPicklist/ControlManifest.Input.xml -------------------------------------------------------------------------------- /LookupToPicklist/LooklupToPicklist/Interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/LookupToPicklist/LooklupToPicklist/Interfaces.ts -------------------------------------------------------------------------------- /LookupToPicklist/LooklupToPicklist/LookupCombobox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/LookupToPicklist/LooklupToPicklist/LookupCombobox.tsx -------------------------------------------------------------------------------- /LookupToPicklist/LooklupToPicklist/img/LookupToPicklist_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/LookupToPicklist/LooklupToPicklist/img/LookupToPicklist_preview.png -------------------------------------------------------------------------------- /LookupToPicklist/LooklupToPicklist/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/LookupToPicklist/LooklupToPicklist/index.ts -------------------------------------------------------------------------------- /LookupToPicklist/LooklupToPicklist/strings/LookupToPicklist.1031.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/LookupToPicklist/LooklupToPicklist/strings/LookupToPicklist.1031.resx -------------------------------------------------------------------------------- /LookupToPicklist/LooklupToPicklist/strings/LookupToPicklist.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/LookupToPicklist/LooklupToPicklist/strings/LookupToPicklist.1033.resx -------------------------------------------------------------------------------- /LookupToPicklist/LooklupToPicklist/strings/LookupToPicklist.1036.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/LookupToPicklist/LooklupToPicklist/strings/LookupToPicklist.1036.resx -------------------------------------------------------------------------------- /LookupToPicklist/LookupToPicklist.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/LookupToPicklist/LookupToPicklist.pcfproj -------------------------------------------------------------------------------- /LookupToPicklist/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/LookupToPicklist/eslint.config.mjs -------------------------------------------------------------------------------- /LookupToPicklist/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/LookupToPicklist/package-lock.json -------------------------------------------------------------------------------- /LookupToPicklist/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/LookupToPicklist/package.json -------------------------------------------------------------------------------- /LookupToPicklist/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/LookupToPicklist/pcfconfig.json -------------------------------------------------------------------------------- /LookupToPicklist/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/LookupToPicklist/tsconfig.json -------------------------------------------------------------------------------- /MscrmToolsPCFControls/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/MscrmToolsPCFControls/.gitignore -------------------------------------------------------------------------------- /MscrmToolsPCFControls/Build Release-DateRangePicker.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/MscrmToolsPCFControls/Build Release-DateRangePicker.bat -------------------------------------------------------------------------------- /MscrmToolsPCFControls/Build Release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/MscrmToolsPCFControls/Build Release.bat -------------------------------------------------------------------------------- /MscrmToolsPCFControls/MscrmToolsPCFControls.cdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/MscrmToolsPCFControls/MscrmToolsPCFControls.cdsproj -------------------------------------------------------------------------------- /MscrmToolsPCFControls/src/Other/Customizations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/MscrmToolsPCFControls/src/Other/Customizations.xml -------------------------------------------------------------------------------- /MscrmToolsPCFControls/src/Other/Relationships.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MscrmToolsPCFControls/src/Other/Solution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/MscrmToolsPCFControls/src/Other/Solution.xml -------------------------------------------------------------------------------- /NNCheckboxes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/NNCheckboxes/.gitignore -------------------------------------------------------------------------------- /NNCheckboxes/NNCheckboxes.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/NNCheckboxes/NNCheckboxes.pcfproj -------------------------------------------------------------------------------- /NNCheckboxes/NNCheckboxes/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/NNCheckboxes/NNCheckboxes/ControlManifest.Input.xml -------------------------------------------------------------------------------- /NNCheckboxes/NNCheckboxes/Solution/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /obj -------------------------------------------------------------------------------- /NNCheckboxes/NNCheckboxes/Solution/Other/Customizations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/NNCheckboxes/NNCheckboxes/Solution/Other/Customizations.xml -------------------------------------------------------------------------------- /NNCheckboxes/NNCheckboxes/Solution/Other/Relationships.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /NNCheckboxes/NNCheckboxes/Solution/Other/Solution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/NNCheckboxes/NNCheckboxes/Solution/Other/Solution.xml -------------------------------------------------------------------------------- /NNCheckboxes/NNCheckboxes/Solution/Solution.cdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/NNCheckboxes/NNCheckboxes/Solution/Solution.cdsproj -------------------------------------------------------------------------------- /NNCheckboxes/NNCheckboxes/css/NNCheckboxes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/NNCheckboxes/NNCheckboxes/css/NNCheckboxes.css -------------------------------------------------------------------------------- /NNCheckboxes/NNCheckboxes/imgs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/NNCheckboxes/NNCheckboxes/imgs/logo.png -------------------------------------------------------------------------------- /NNCheckboxes/NNCheckboxes/imgs/nncheckboxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/NNCheckboxes/NNCheckboxes/imgs/nncheckboxes.png -------------------------------------------------------------------------------- /NNCheckboxes/NNCheckboxes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/NNCheckboxes/NNCheckboxes/index.ts -------------------------------------------------------------------------------- /NNCheckboxes/NNCheckboxes/referential.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/NNCheckboxes/NNCheckboxes/referential.ts -------------------------------------------------------------------------------- /NNCheckboxes/NNCheckboxes/reldef.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/NNCheckboxes/NNCheckboxes/reldef.ts -------------------------------------------------------------------------------- /NNCheckboxes/NNCheckboxes/strings/NNCheckboxes.1031.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/NNCheckboxes/NNCheckboxes/strings/NNCheckboxes.1031.resx -------------------------------------------------------------------------------- /NNCheckboxes/NNCheckboxes/strings/NNCheckboxes.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/NNCheckboxes/NNCheckboxes/strings/NNCheckboxes.1033.resx -------------------------------------------------------------------------------- /NNCheckboxes/NNCheckboxes/strings/NNCheckboxes.1036.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/NNCheckboxes/NNCheckboxes/strings/NNCheckboxes.1036.resx -------------------------------------------------------------------------------- /NNCheckboxes/Screenshots/ColorAndGroups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/NNCheckboxes/Screenshots/ColorAndGroups.png -------------------------------------------------------------------------------- /NNCheckboxes/Screenshots/Configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/NNCheckboxes/Screenshots/Configuration.png -------------------------------------------------------------------------------- /NNCheckboxes/Screenshots/Control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/NNCheckboxes/Screenshots/Control.png -------------------------------------------------------------------------------- /NNCheckboxes/Screenshots/Sample1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/NNCheckboxes/Screenshots/Sample1.png -------------------------------------------------------------------------------- /NNCheckboxes/Screenshots/Sample10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/NNCheckboxes/Screenshots/Sample10.png -------------------------------------------------------------------------------- /NNCheckboxes/Screenshots/Sample2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/NNCheckboxes/Screenshots/Sample2.png -------------------------------------------------------------------------------- /NNCheckboxes/Screenshots/Sample3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/NNCheckboxes/Screenshots/Sample3.png -------------------------------------------------------------------------------- /NNCheckboxes/Screenshots/Sample4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/NNCheckboxes/Screenshots/Sample4.png -------------------------------------------------------------------------------- /NNCheckboxes/Screenshots/Sample5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/NNCheckboxes/Screenshots/Sample5.png -------------------------------------------------------------------------------- /NNCheckboxes/Screenshots/Sample6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/NNCheckboxes/Screenshots/Sample6.png -------------------------------------------------------------------------------- /NNCheckboxes/Screenshots/Sample7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/NNCheckboxes/Screenshots/Sample7.png -------------------------------------------------------------------------------- /NNCheckboxes/Screenshots/Sample8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/NNCheckboxes/Screenshots/Sample8.png -------------------------------------------------------------------------------- /NNCheckboxes/Screenshots/Sample9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/NNCheckboxes/Screenshots/Sample9.png -------------------------------------------------------------------------------- /NNCheckboxes/Screenshots/video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/NNCheckboxes/Screenshots/video.gif -------------------------------------------------------------------------------- /NNCheckboxes/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/NNCheckboxes/eslint.config.mjs -------------------------------------------------------------------------------- /NNCheckboxes/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/NNCheckboxes/package-lock.json -------------------------------------------------------------------------------- /NNCheckboxes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/NNCheckboxes/package.json -------------------------------------------------------------------------------- /NNCheckboxes/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/NNCheckboxes/pcfconfig.json -------------------------------------------------------------------------------- /NNCheckboxes/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/NNCheckboxes/tsconfig.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/README.md -------------------------------------------------------------------------------- /ReactNotifier/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ReactNotifier/.gitignore -------------------------------------------------------------------------------- /ReactNotifier/ReactNotifier.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ReactNotifier/ReactNotifier.pcfproj -------------------------------------------------------------------------------- /ReactNotifier/ReactNotifier/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ReactNotifier/ReactNotifier/ControlManifest.Input.xml -------------------------------------------------------------------------------- /ReactNotifier/ReactNotifier/NotificationControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ReactNotifier/ReactNotifier/NotificationControl.tsx -------------------------------------------------------------------------------- /ReactNotifier/ReactNotifier/imgs/ReactNotification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ReactNotifier/ReactNotifier/imgs/ReactNotification.png -------------------------------------------------------------------------------- /ReactNotifier/ReactNotifier/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ReactNotifier/ReactNotifier/index.ts -------------------------------------------------------------------------------- /ReactNotifier/ReactNotifier/strings/ReactNotifier.1031.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ReactNotifier/ReactNotifier/strings/ReactNotifier.1031.resx -------------------------------------------------------------------------------- /ReactNotifier/ReactNotifier/strings/ReactNotifier.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ReactNotifier/ReactNotifier/strings/ReactNotifier.1033.resx -------------------------------------------------------------------------------- /ReactNotifier/ReactNotifier/strings/ReactNotifier.1036.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ReactNotifier/ReactNotifier/strings/ReactNotifier.1036.resx -------------------------------------------------------------------------------- /ReactNotifier/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ReactNotifier/eslint.config.mjs -------------------------------------------------------------------------------- /ReactNotifier/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ReactNotifier/package-lock.json -------------------------------------------------------------------------------- /ReactNotifier/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ReactNotifier/package.json -------------------------------------------------------------------------------- /ReactNotifier/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ReactNotifier/pcfconfig.json -------------------------------------------------------------------------------- /ReactNotifier/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/ReactNotifier/tsconfig.json -------------------------------------------------------------------------------- /YearDropdown/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/YearDropdown/.eslintrc.json -------------------------------------------------------------------------------- /YearDropdown/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/YearDropdown/.gitignore -------------------------------------------------------------------------------- /YearDropdown/YearDropdown.pcfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/YearDropdown/YearDropdown.pcfproj -------------------------------------------------------------------------------- /YearDropdown/YearDropdown/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/YearDropdown/YearDropdown/.eslintrc.json -------------------------------------------------------------------------------- /YearDropdown/YearDropdown/ControlManifest.Input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/YearDropdown/YearDropdown/ControlManifest.Input.xml -------------------------------------------------------------------------------- /YearDropdown/YearDropdown/components/DropdownNew.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/YearDropdown/YearDropdown/components/DropdownNew.tsx -------------------------------------------------------------------------------- /YearDropdown/YearDropdown/components/DropdownOld.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/YearDropdown/YearDropdown/components/DropdownOld.tsx -------------------------------------------------------------------------------- /YearDropdown/YearDropdown/components/IRecordSelectorProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/YearDropdown/YearDropdown/components/IRecordSelectorProps.ts -------------------------------------------------------------------------------- /YearDropdown/YearDropdown/components/RecordSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/YearDropdown/YearDropdown/components/RecordSelector.tsx -------------------------------------------------------------------------------- /YearDropdown/YearDropdown/img/YearDropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/YearDropdown/YearDropdown/img/YearDropdown.png -------------------------------------------------------------------------------- /YearDropdown/YearDropdown/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/YearDropdown/YearDropdown/index.ts -------------------------------------------------------------------------------- /YearDropdown/YearDropdown/strings/YearDropdown.1031.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/YearDropdown/YearDropdown/strings/YearDropdown.1031.resx -------------------------------------------------------------------------------- /YearDropdown/YearDropdown/strings/YearDropdown.1033.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/YearDropdown/YearDropdown/strings/YearDropdown.1033.resx -------------------------------------------------------------------------------- /YearDropdown/YearDropdown/strings/YearDropdown.1036.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/YearDropdown/YearDropdown/strings/YearDropdown.1036.resx -------------------------------------------------------------------------------- /YearDropdown/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/YearDropdown/eslint.config.mjs -------------------------------------------------------------------------------- /YearDropdown/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/YearDropdown/package-lock.json -------------------------------------------------------------------------------- /YearDropdown/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/YearDropdown/package.json -------------------------------------------------------------------------------- /YearDropdown/pcfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/YearDropdown/pcfconfig.json -------------------------------------------------------------------------------- /YearDropdown/screenshots/YearDropdown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/YearDropdown/screenshots/YearDropdown.gif -------------------------------------------------------------------------------- /YearDropdown/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MscrmTools/PCF-Controls/HEAD/YearDropdown/tsconfig.json --------------------------------------------------------------------------------