├── .editorconfig ├── .gitattributes ├── .gitignore ├── .npmignore ├── .vscode ├── settings.json └── tasks.json ├── .yo-rc.json ├── LICENSE.md ├── README.md ├── config ├── config.json ├── deploy-azure-storage.json ├── package-solution.json ├── prepare-deploy.json ├── serve.json ├── tslint.json └── write-manifests.json ├── gulpfile.js ├── package.json ├── sp-client-custom-fields.njsproj ├── src ├── GuidHelper.ts ├── PropertyFieldAlignPicker.ts ├── PropertyFieldAlignPickerHost.tsx ├── PropertyFieldAutoComplete.ts ├── PropertyFieldAutoCompleteHost.tsx ├── PropertyFieldColorPicker.ts ├── PropertyFieldColorPickerHost.tsx ├── PropertyFieldColorPickerMini.ts ├── PropertyFieldColorPickerMiniHost.tsx ├── PropertyFieldCustomList.ts ├── PropertyFieldCustomListHost.tsx ├── PropertyFieldDatePicker.ts ├── PropertyFieldDatePickerHost.tsx ├── PropertyFieldDateTimePicker.ts ├── PropertyFieldDateTimePickerHost.tsx ├── PropertyFieldDimensionPicker.ts ├── PropertyFieldDimensionPickerHost.tsx ├── PropertyFieldDisplayMode.ts ├── PropertyFieldDisplayModeHost.tsx ├── PropertyFieldDocumentPicker.ts ├── PropertyFieldDocumentPickerHost.tsx ├── PropertyFieldDropDownSelect.ts ├── PropertyFieldDropDownSelectHost.tsx ├── PropertyFieldDropDownTreeView.ts ├── PropertyFieldDropDownTreeViewHost.tsx ├── PropertyFieldFontPicker.ts ├── PropertyFieldFontPickerHost.tsx ├── PropertyFieldFontSizePicker.ts ├── PropertyFieldFontSizePickerHost.tsx ├── PropertyFieldGroupPicker.ts ├── PropertyFieldGroupPickerHost.tsx ├── PropertyFieldIconPicker.ts ├── PropertyFieldIconPickerHost.tsx ├── PropertyFieldMapPicker.ts ├── PropertyFieldMapPickerHost.tsx ├── PropertyFieldMaskedInput.ts ├── PropertyFieldMaskedInputHost.tsx ├── PropertyFieldNumericInput.ts ├── PropertyFieldNumericInputHost.tsx ├── PropertyFieldOfficeVideoPicker.ts ├── PropertyFieldOfficeVideoPickerHost.tsx ├── PropertyFieldPassword.ts ├── PropertyFieldPasswordHost.tsx ├── PropertyFieldPeoplePicker.ts ├── PropertyFieldPeoplePickerHost.tsx ├── PropertyFieldPhoneNumber.ts ├── PropertyFieldPhoneNumberHost.tsx ├── PropertyFieldPicturePicker.ts ├── PropertyFieldPicturePickerHost.tsx ├── PropertyFieldRichTextBox.ts ├── PropertyFieldRichTextBoxHost.tsx ├── PropertyFieldSPFolderPicker.ts ├── PropertyFieldSPFolderPickerHost.tsx ├── PropertyFieldSPListMultiplePicker.ts ├── PropertyFieldSPListMultiplePickerHost.tsx ├── PropertyFieldSPListPicker.ts ├── PropertyFieldSPListPickerHost.tsx ├── PropertyFieldSPListQuery.ts ├── PropertyFieldSPListQueryHost.tsx ├── PropertyFieldSearchPropertiesPicker.ts ├── PropertyFieldSearchPropertiesPickerHost.tsx ├── PropertyFieldSliderRange.ts ├── PropertyFieldSliderRangeHost.tsx ├── PropertyFieldSortableList.ts ├── PropertyFieldSortableListHost.tsx ├── PropertyFieldStarRating.ts ├── PropertyFieldStarRatingHost.tsx ├── PropertyFieldTagPicker.ts ├── PropertyFieldTagPickerHost.tsx ├── PropertyFieldTermSetPicker.ts ├── PropertyFieldTermSetPickerHost.tsx ├── PropertyFieldTreeView.ts ├── PropertyFieldTreeViewHost.tsx ├── PropertyFields.module.scss ├── loc │ ├── ar-ae.js │ ├── ar-dz.js │ ├── ar-eg.js │ ├── ar-ma.js │ ├── ar-qa.js │ ├── ar-sa.js │ ├── ar-tn.js │ ├── da-dk.js │ ├── de-at.js │ ├── de-ch.js │ ├── de-de.js │ ├── de-li.js │ ├── de-lu.js │ ├── el-gr.js │ ├── en-au.js │ ├── en-ca.js │ ├── en-gb.js │ ├── en-ie.js │ ├── en-nz.js │ ├── en-us.js │ ├── es-ar.js │ ├── es-cl.js │ ├── es-es.js │ ├── es-mx.js │ ├── es-pe.js │ ├── es-uy.js │ ├── fi-fi.js │ ├── fr-be.js │ ├── fr-ca.js │ ├── fr-ch.js │ ├── fr-fr.js │ ├── hi-in.js │ ├── hu-hu.js │ ├── it-ch.js │ ├── it-it.js │ ├── ja-jp.js │ ├── mystrings.d.ts │ ├── nb-no.js │ ├── nl-nl.js │ ├── nn-no.js │ ├── pt-br.js │ ├── pt-pt.js │ ├── ru-ru.js │ ├── sv-se.js │ ├── th-th.js │ ├── tr-tr.js │ └── zh-cn.js └── webparts │ └── test │ ├── ITestWebPartProps.ts │ ├── Test.module.scss │ ├── TestWebPart.manifest.json │ ├── TestWebPart.ts │ ├── components │ └── Test.tsx │ ├── loc │ ├── en-us.js │ └── mystrings.d.ts │ └── tests │ └── Test.test.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/.npmignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/.yo-rc.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/README.md -------------------------------------------------------------------------------- /config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/config/config.json -------------------------------------------------------------------------------- /config/deploy-azure-storage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/config/deploy-azure-storage.json -------------------------------------------------------------------------------- /config/package-solution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/config/package-solution.json -------------------------------------------------------------------------------- /config/prepare-deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/config/prepare-deploy.json -------------------------------------------------------------------------------- /config/serve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/config/serve.json -------------------------------------------------------------------------------- /config/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/config/tslint.json -------------------------------------------------------------------------------- /config/write-manifests.json: -------------------------------------------------------------------------------- 1 | { 2 | "cdnBasePath": "" 3 | } -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/package.json -------------------------------------------------------------------------------- /sp-client-custom-fields.njsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/sp-client-custom-fields.njsproj -------------------------------------------------------------------------------- /src/GuidHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/GuidHelper.ts -------------------------------------------------------------------------------- /src/PropertyFieldAlignPicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldAlignPicker.ts -------------------------------------------------------------------------------- /src/PropertyFieldAlignPickerHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldAlignPickerHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldAutoComplete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldAutoComplete.ts -------------------------------------------------------------------------------- /src/PropertyFieldAutoCompleteHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldAutoCompleteHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldColorPicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldColorPicker.ts -------------------------------------------------------------------------------- /src/PropertyFieldColorPickerHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldColorPickerHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldColorPickerMini.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldColorPickerMini.ts -------------------------------------------------------------------------------- /src/PropertyFieldColorPickerMiniHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldColorPickerMiniHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldCustomList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldCustomList.ts -------------------------------------------------------------------------------- /src/PropertyFieldCustomListHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldCustomListHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldDatePicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldDatePicker.ts -------------------------------------------------------------------------------- /src/PropertyFieldDatePickerHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldDatePickerHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldDateTimePicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldDateTimePicker.ts -------------------------------------------------------------------------------- /src/PropertyFieldDateTimePickerHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldDateTimePickerHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldDimensionPicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldDimensionPicker.ts -------------------------------------------------------------------------------- /src/PropertyFieldDimensionPickerHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldDimensionPickerHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldDisplayMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldDisplayMode.ts -------------------------------------------------------------------------------- /src/PropertyFieldDisplayModeHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldDisplayModeHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldDocumentPicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldDocumentPicker.ts -------------------------------------------------------------------------------- /src/PropertyFieldDocumentPickerHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldDocumentPickerHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldDropDownSelect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldDropDownSelect.ts -------------------------------------------------------------------------------- /src/PropertyFieldDropDownSelectHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldDropDownSelectHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldDropDownTreeView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldDropDownTreeView.ts -------------------------------------------------------------------------------- /src/PropertyFieldDropDownTreeViewHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldDropDownTreeViewHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldFontPicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldFontPicker.ts -------------------------------------------------------------------------------- /src/PropertyFieldFontPickerHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldFontPickerHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldFontSizePicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldFontSizePicker.ts -------------------------------------------------------------------------------- /src/PropertyFieldFontSizePickerHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldFontSizePickerHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldGroupPicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldGroupPicker.ts -------------------------------------------------------------------------------- /src/PropertyFieldGroupPickerHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldGroupPickerHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldIconPicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldIconPicker.ts -------------------------------------------------------------------------------- /src/PropertyFieldIconPickerHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldIconPickerHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldMapPicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldMapPicker.ts -------------------------------------------------------------------------------- /src/PropertyFieldMapPickerHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldMapPickerHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldMaskedInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldMaskedInput.ts -------------------------------------------------------------------------------- /src/PropertyFieldMaskedInputHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldMaskedInputHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldNumericInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldNumericInput.ts -------------------------------------------------------------------------------- /src/PropertyFieldNumericInputHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldNumericInputHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldOfficeVideoPicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldOfficeVideoPicker.ts -------------------------------------------------------------------------------- /src/PropertyFieldOfficeVideoPickerHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldOfficeVideoPickerHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldPassword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldPassword.ts -------------------------------------------------------------------------------- /src/PropertyFieldPasswordHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldPasswordHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldPeoplePicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldPeoplePicker.ts -------------------------------------------------------------------------------- /src/PropertyFieldPeoplePickerHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldPeoplePickerHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldPhoneNumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldPhoneNumber.ts -------------------------------------------------------------------------------- /src/PropertyFieldPhoneNumberHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldPhoneNumberHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldPicturePicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldPicturePicker.ts -------------------------------------------------------------------------------- /src/PropertyFieldPicturePickerHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldPicturePickerHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldRichTextBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldRichTextBox.ts -------------------------------------------------------------------------------- /src/PropertyFieldRichTextBoxHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldRichTextBoxHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldSPFolderPicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldSPFolderPicker.ts -------------------------------------------------------------------------------- /src/PropertyFieldSPFolderPickerHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldSPFolderPickerHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldSPListMultiplePicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldSPListMultiplePicker.ts -------------------------------------------------------------------------------- /src/PropertyFieldSPListMultiplePickerHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldSPListMultiplePickerHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldSPListPicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldSPListPicker.ts -------------------------------------------------------------------------------- /src/PropertyFieldSPListPickerHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldSPListPickerHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldSPListQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldSPListQuery.ts -------------------------------------------------------------------------------- /src/PropertyFieldSPListQueryHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldSPListQueryHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldSearchPropertiesPicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldSearchPropertiesPicker.ts -------------------------------------------------------------------------------- /src/PropertyFieldSearchPropertiesPickerHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldSearchPropertiesPickerHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldSliderRange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldSliderRange.ts -------------------------------------------------------------------------------- /src/PropertyFieldSliderRangeHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldSliderRangeHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldSortableList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldSortableList.ts -------------------------------------------------------------------------------- /src/PropertyFieldSortableListHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldSortableListHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldStarRating.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldStarRating.ts -------------------------------------------------------------------------------- /src/PropertyFieldStarRatingHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldStarRatingHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldTagPicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldTagPicker.ts -------------------------------------------------------------------------------- /src/PropertyFieldTagPickerHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldTagPickerHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldTermSetPicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldTermSetPicker.ts -------------------------------------------------------------------------------- /src/PropertyFieldTermSetPickerHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldTermSetPickerHost.tsx -------------------------------------------------------------------------------- /src/PropertyFieldTreeView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldTreeView.ts -------------------------------------------------------------------------------- /src/PropertyFieldTreeViewHost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFieldTreeViewHost.tsx -------------------------------------------------------------------------------- /src/PropertyFields.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/PropertyFields.module.scss -------------------------------------------------------------------------------- /src/loc/ar-ae.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/ar-ae.js -------------------------------------------------------------------------------- /src/loc/ar-dz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/ar-dz.js -------------------------------------------------------------------------------- /src/loc/ar-eg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/ar-eg.js -------------------------------------------------------------------------------- /src/loc/ar-ma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/ar-ma.js -------------------------------------------------------------------------------- /src/loc/ar-qa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/ar-qa.js -------------------------------------------------------------------------------- /src/loc/ar-sa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/ar-sa.js -------------------------------------------------------------------------------- /src/loc/ar-tn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/ar-tn.js -------------------------------------------------------------------------------- /src/loc/da-dk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/da-dk.js -------------------------------------------------------------------------------- /src/loc/de-at.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/de-at.js -------------------------------------------------------------------------------- /src/loc/de-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/de-ch.js -------------------------------------------------------------------------------- /src/loc/de-de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/de-de.js -------------------------------------------------------------------------------- /src/loc/de-li.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/de-li.js -------------------------------------------------------------------------------- /src/loc/de-lu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/de-lu.js -------------------------------------------------------------------------------- /src/loc/el-gr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/el-gr.js -------------------------------------------------------------------------------- /src/loc/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/en-au.js -------------------------------------------------------------------------------- /src/loc/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/en-ca.js -------------------------------------------------------------------------------- /src/loc/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/en-gb.js -------------------------------------------------------------------------------- /src/loc/en-ie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/en-ie.js -------------------------------------------------------------------------------- /src/loc/en-nz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/en-nz.js -------------------------------------------------------------------------------- /src/loc/en-us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/en-us.js -------------------------------------------------------------------------------- /src/loc/es-ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/es-ar.js -------------------------------------------------------------------------------- /src/loc/es-cl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/es-cl.js -------------------------------------------------------------------------------- /src/loc/es-es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/es-es.js -------------------------------------------------------------------------------- /src/loc/es-mx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/es-mx.js -------------------------------------------------------------------------------- /src/loc/es-pe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/es-pe.js -------------------------------------------------------------------------------- /src/loc/es-uy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/es-uy.js -------------------------------------------------------------------------------- /src/loc/fi-fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/fi-fi.js -------------------------------------------------------------------------------- /src/loc/fr-be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/fr-be.js -------------------------------------------------------------------------------- /src/loc/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/fr-ca.js -------------------------------------------------------------------------------- /src/loc/fr-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/fr-ch.js -------------------------------------------------------------------------------- /src/loc/fr-fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/fr-fr.js -------------------------------------------------------------------------------- /src/loc/hi-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/hi-in.js -------------------------------------------------------------------------------- /src/loc/hu-hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/hu-hu.js -------------------------------------------------------------------------------- /src/loc/it-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/it-ch.js -------------------------------------------------------------------------------- /src/loc/it-it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/it-it.js -------------------------------------------------------------------------------- /src/loc/ja-jp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/ja-jp.js -------------------------------------------------------------------------------- /src/loc/mystrings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/mystrings.d.ts -------------------------------------------------------------------------------- /src/loc/nb-no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/nb-no.js -------------------------------------------------------------------------------- /src/loc/nl-nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/nl-nl.js -------------------------------------------------------------------------------- /src/loc/nn-no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/nn-no.js -------------------------------------------------------------------------------- /src/loc/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/pt-br.js -------------------------------------------------------------------------------- /src/loc/pt-pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/pt-pt.js -------------------------------------------------------------------------------- /src/loc/ru-ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/ru-ru.js -------------------------------------------------------------------------------- /src/loc/sv-se.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/sv-se.js -------------------------------------------------------------------------------- /src/loc/th-th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/th-th.js -------------------------------------------------------------------------------- /src/loc/tr-tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/tr-tr.js -------------------------------------------------------------------------------- /src/loc/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/loc/zh-cn.js -------------------------------------------------------------------------------- /src/webparts/test/ITestWebPartProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/webparts/test/ITestWebPartProps.ts -------------------------------------------------------------------------------- /src/webparts/test/Test.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/webparts/test/Test.module.scss -------------------------------------------------------------------------------- /src/webparts/test/TestWebPart.manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/webparts/test/TestWebPart.manifest.json -------------------------------------------------------------------------------- /src/webparts/test/TestWebPart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/webparts/test/TestWebPart.ts -------------------------------------------------------------------------------- /src/webparts/test/components/Test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/webparts/test/components/Test.tsx -------------------------------------------------------------------------------- /src/webparts/test/loc/en-us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/webparts/test/loc/en-us.js -------------------------------------------------------------------------------- /src/webparts/test/loc/mystrings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/webparts/test/loc/mystrings.d.ts -------------------------------------------------------------------------------- /src/webparts/test/tests/Test.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/src/webparts/test/tests/Test.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlivierCC/sp-client-custom-fields/HEAD/tsconfig.json --------------------------------------------------------------------------------