├── .gitignore ├── AppManifest.xml ├── Extensions ├── CSOMPromise.d.ts ├── CSOMPromise.ts ├── Elements.xml ├── SharePointProjectItem.spdata └── sp-ts-csr.ts ├── Features └── MainFeature │ ├── MainFeature.Template.xml │ └── MainFeature.feature ├── Images ├── AppIcon.png ├── Elements.xml └── SharePointProjectItem.spdata ├── Package ├── Package.Template.xml └── Package.package ├── Pages ├── Default.aspx ├── Elements.xml └── SharePointProjectItem.spdata ├── README.md ├── SPTypeScript.csproj ├── SPTypeScript.sln ├── Sample_AngularForm ├── AngularFormFiles │ ├── AngularForm.d.ts │ ├── AngularForm.html │ ├── AngularForm.js │ ├── AngularForm.js.map │ ├── AngularForm.ts │ ├── Elements.xml │ └── SharePointProjectItem.spdata ├── Elements.xml ├── Sample_AngularFormInstance │ ├── Elements.xml │ └── SharePointProjectItem.spdata ├── Schema.xml └── SharePointProjectItem.spdata ├── Sample_Animation ├── Animation.d.ts ├── Animation.ts ├── Default.aspx ├── Elements.xml ├── SharePointProjectItem.spdata └── photo.jpg ├── Sample_AutoFill ├── Elements.xml ├── Page.aspx ├── SharePointProjectItem.spdata ├── autofill.d.ts └── autofill.ts ├── Sample_BasicCSOMActions ├── Account.html ├── Announcements │ ├── Elements.xml │ └── SharePointProjectItem.spdata ├── AppUIEvents.d.ts ├── AppUIEvents.ts ├── BasicTasksJSOM.css ├── BasicTasksJSOM.d.ts ├── BasicTasksJSOM.html ├── BasicTasksJSOM.ts ├── ChromeLoader.d.ts ├── ChromeLoader.ts ├── Contact.html ├── Elements.xml ├── Help.html ├── SharePointProjectItem.spdata └── Shared Documents │ ├── Elements.xml │ └── SharePointProjectItem.spdata ├── Sample_CSRComplexityField ├── CSRField.d.ts ├── CSRField.ts ├── CustomFieldList │ ├── CustomFieldListInstance │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ ├── Elements.xml │ ├── Schema.xml │ └── SharePointProjectItem.spdata ├── Elements.xml └── SharePointProjectItem.spdata ├── Sample_CSRConditionalFormatting ├── ConditionalFormattingTasksList │ ├── Elements.xml │ └── SharePointProjectItem.spdata └── Scripts_ConditionalFormattingList │ ├── ConditionalFormatting.d.ts │ ├── ConditionalFormatting.js │ ├── ConditionalFormatting.js.map │ ├── ConditionalFormatting.min.js │ ├── ConditionalFormatting.min.js.map │ ├── ConditionalFormatting.ts │ ├── Elements.xml │ └── SharePointProjectItem.spdata ├── Sample_CSRCustomForm ├── CSRFormFields │ ├── CSRFormField.d.ts │ ├── CSRFormField.js │ ├── CSRFormField.js.map │ ├── CSRFormField.ts │ ├── Elements.xml │ └── SharePointProjectItem.spdata ├── Elements.xml ├── Sample_CSRCustomFormInstance │ ├── Elements.xml │ └── SharePointProjectItem.spdata ├── Schema.xml └── SharePointProjectItem.spdata ├── Sample_CSRCustomLayout ├── Elements.xml ├── NewForm.d.ts ├── NewForm.ts ├── Sample_CSRCustomLayoutInstance │ ├── Elements.xml │ └── SharePointProjectItem.spdata ├── Schema.xml └── SharePointProjectItem.spdata ├── Sample_CSRListView ├── CustomList │ ├── CustomListInstance │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ ├── Elements.xml │ ├── Schema.xml │ └── SharePointProjectItem.spdata └── Scripts_CSRListView │ ├── CSRListView.d.ts │ ├── CSRListView.js │ ├── CSRListView.js.map │ ├── CSRListView.min.js │ ├── CSRListView.min.js.map │ ├── CSRListView.ts │ ├── Elements.xml │ └── SharePointProjectItem.spdata ├── Sample_CSRTabs ├── CSRTabs.d.ts ├── CSRTabs.ts ├── Elements.xml ├── ListWithTabsForm │ ├── Elements.xml │ ├── Form.aspx │ ├── ListWithTabsFormInstance │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ ├── Schema.xml │ └── SharePointProjectItem.spdata └── SharePointProjectItem.spdata ├── Sample_CascadedDropdown ├── Details1 │ ├── Details1Instance │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ ├── Elements.xml │ ├── Schema.xml │ └── SharePointProjectItem.spdata ├── Elements.xml ├── FieldCascadedLookup.d.ts ├── FieldCascadedLookup.ts └── SharePointProjectItem.spdata ├── Sample_CustomFieldRendering ├── CustomFieldRenderingList │ ├── CustomFieldRenderingListInstance │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ ├── Elements.xml │ ├── Schema.xml │ └── SharePointProjectItem.spdata └── CustomFieldRenderingModule │ ├── Elements.xml │ ├── SharePointProjectItem.spdata │ ├── fieldsamples.visafield.js │ ├── fieldsamples.visafield.js.map │ ├── fieldsamples.visafield.min.js │ ├── fieldsamples.visafield.min.js.map │ └── fieldsamples.visafield.ts ├── Sample_CustomJsGrid ├── App.d.ts ├── App.ts ├── Default.aspx ├── Elements.xml └── SharePointProjectItem.spdata ├── Sample_FieldLookupBySearch ├── DetailsList │ ├── DetailsListInstance │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ ├── Elements.xml │ ├── Schema.xml │ └── SharePointProjectItem.spdata ├── Elements.xml ├── FieldLookupSearch.d.ts ├── FieldLookupSearch.ts ├── MasterList │ ├── Elements.xml │ └── SharePointProjectItem.spdata └── SharePointProjectItem.spdata ├── Sample_Publishing ├── Default.aspx ├── Elements.xml ├── SharePointProjectItem.spdata ├── publishing.d.ts └── publishing.ts ├── Sample_Reputation ├── ReputationListWithLikes │ ├── Elements.xml │ ├── ReputationListWithLikesInstance │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ ├── Schema.xml │ └── SharePointProjectItem.spdata └── ReputationModule │ ├── Elements.xml │ ├── SharePointProjectItem.spdata │ ├── likes.d.ts │ ├── likes.js │ ├── likes.js.map │ └── likes.ts ├── Sample_SearchCSOM └── SearchCSOM │ ├── Elements.xml │ ├── Search.aspx │ ├── Search.d.ts │ ├── Search.js │ ├── Search.js.map │ ├── Search.min.js │ ├── Search.min.js.map │ ├── Search.ts │ └── SharePointProjectItem.spdata ├── Sample_Social ├── Default.aspx ├── Elements.xml ├── SharePointProjectItem.spdata ├── Social.d.ts └── Social.ts ├── Sample_Taxonomy └── Taxonomy │ ├── App.d.ts │ ├── App.js │ ├── App.js.map │ ├── App.min.js │ ├── App.min.js.map │ ├── App.ts │ ├── Default.aspx │ ├── Elements.xml │ └── SharePointProjectItem.spdata ├── Sample_UserProfiles ├── Default.aspx ├── Elements.xml ├── SharePointProjectItem.spdata ├── UserProfiles.d.ts └── UserProfiles.ts ├── Sample_WhoIsWebPart ├── Elements.xml ├── Part.aspx ├── Part.css ├── Part.d.ts ├── Part.ts ├── SharePointProjectItem.spdata └── WhoIsWebPart │ ├── Elements.xml │ └── SharePointProjectItem.spdata ├── Sample_WorkflowServices ├── Default.aspx ├── Elements.xml ├── SharePointProjectItem.spdata ├── WorkflowServices.d.ts └── WorkflowServices.ts ├── Sample_mQuery ├── Elements.xml ├── Page.aspx ├── SharePointProjectItem.spdata ├── mquery.d.ts └── mquery.ts ├── Scripts ├── Elements.xml ├── SharePointProjectItem.spdata ├── angular-mocks.js ├── angular.js ├── angular.min.js ├── angular.min.js.map └── typings │ ├── angularjs │ ├── angular-animate.d.ts │ ├── angular-cookies.d.ts │ ├── angular-mocks.d.ts │ ├── angular-resource.d.ts │ ├── angular-route.d.ts │ ├── angular-sanitize.d.ts │ ├── angular-scenario.d.ts │ └── angular.d.ts │ ├── jquery.ui.datetimepicker │ └── jquery.ui.datetimepicker.d.ts │ ├── jquery │ └── jquery.d.ts │ ├── jqueryui │ └── jqueryui.d.ts │ ├── knockout │ └── knockout.d.ts │ ├── microsoft-ajax │ └── microsoft.ajax.d.ts │ └── sharepoint │ ├── AssetPickers.d.ts │ ├── CUI.d.ts │ ├── SP.BusinessData.d.ts │ ├── SP.DocumentManagement.d.ts │ ├── SP.Init.d.ts │ ├── SP.JSGrid.d.ts │ ├── SP.Policy.d.ts │ ├── SP.Publishing.d.ts │ ├── SP.RequestExecutor.d.ts │ ├── SP.Res.d.ts │ ├── SP.Ribbon.d.ts │ ├── SP.Search.d.ts │ ├── SP.Sharing.d.ts │ ├── SP.Social.d.ts │ ├── SP.Taxonomy.d.ts │ ├── SP.UI.ApplicationPages.d.ts │ ├── SP.UI.Controls.d.ts │ ├── SP.UI.RTE.d.ts │ ├── SP.UI.d.ts │ ├── SP.UserProfiles.d.ts │ ├── SP.Utilities.d.ts │ ├── SP.WebParts.d.ts │ ├── SP.Workflow.d.ts │ ├── SP.WorkflowServices.d.ts │ ├── SP.d.ts │ ├── SPAnimation.d.ts │ ├── SPGantt.d.ts │ ├── SPO.d.ts │ ├── Search.ClientControl.d.ts │ ├── autofill.d.ts │ ├── callout.d.ts │ ├── clientpeoplepicker.d.ts │ ├── clienttemplates.d.ts │ ├── core.d.ts │ ├── dragdrop.d.ts │ ├── inplview.d.ts │ ├── mQuery.d.ts │ ├── reputation.d.ts │ └── strings.d.ts ├── SharePointProjectItem.spdata ├── bower.json ├── gulpfile.js ├── package.json ├── packages.config ├── tsconfig.json └── typescripttemplates.nuspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/.gitignore -------------------------------------------------------------------------------- /AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/AppManifest.xml -------------------------------------------------------------------------------- /Extensions/CSOMPromise.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Extensions/CSOMPromise.d.ts -------------------------------------------------------------------------------- /Extensions/CSOMPromise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Extensions/CSOMPromise.ts -------------------------------------------------------------------------------- /Extensions/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Extensions/Elements.xml -------------------------------------------------------------------------------- /Extensions/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Extensions/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Extensions/sp-ts-csr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Extensions/sp-ts-csr.ts -------------------------------------------------------------------------------- /Features/MainFeature/MainFeature.Template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Features/MainFeature/MainFeature.Template.xml -------------------------------------------------------------------------------- /Features/MainFeature/MainFeature.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Features/MainFeature/MainFeature.feature -------------------------------------------------------------------------------- /Images/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Images/AppIcon.png -------------------------------------------------------------------------------- /Images/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Images/Elements.xml -------------------------------------------------------------------------------- /Images/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Images/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Package/Package.Template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Package/Package.Template.xml -------------------------------------------------------------------------------- /Package/Package.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Package/Package.package -------------------------------------------------------------------------------- /Pages/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Pages/Default.aspx -------------------------------------------------------------------------------- /Pages/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Pages/Elements.xml -------------------------------------------------------------------------------- /Pages/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Pages/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/README.md -------------------------------------------------------------------------------- /SPTypeScript.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/SPTypeScript.csproj -------------------------------------------------------------------------------- /SPTypeScript.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/SPTypeScript.sln -------------------------------------------------------------------------------- /Sample_AngularForm/AngularFormFiles/AngularForm.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_AngularForm/AngularFormFiles/AngularForm.d.ts -------------------------------------------------------------------------------- /Sample_AngularForm/AngularFormFiles/AngularForm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_AngularForm/AngularFormFiles/AngularForm.html -------------------------------------------------------------------------------- /Sample_AngularForm/AngularFormFiles/AngularForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_AngularForm/AngularFormFiles/AngularForm.js -------------------------------------------------------------------------------- /Sample_AngularForm/AngularFormFiles/AngularForm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_AngularForm/AngularFormFiles/AngularForm.js.map -------------------------------------------------------------------------------- /Sample_AngularForm/AngularFormFiles/AngularForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_AngularForm/AngularFormFiles/AngularForm.ts -------------------------------------------------------------------------------- /Sample_AngularForm/AngularFormFiles/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_AngularForm/AngularFormFiles/Elements.xml -------------------------------------------------------------------------------- /Sample_AngularForm/AngularFormFiles/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_AngularForm/AngularFormFiles/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_AngularForm/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_AngularForm/Elements.xml -------------------------------------------------------------------------------- /Sample_AngularForm/Sample_AngularFormInstance/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_AngularForm/Sample_AngularFormInstance/Elements.xml -------------------------------------------------------------------------------- /Sample_AngularForm/Sample_AngularFormInstance/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_AngularForm/Sample_AngularFormInstance/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_AngularForm/Schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_AngularForm/Schema.xml -------------------------------------------------------------------------------- /Sample_AngularForm/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_AngularForm/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_Animation/Animation.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample_Animation/Animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_Animation/Animation.ts -------------------------------------------------------------------------------- /Sample_Animation/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_Animation/Default.aspx -------------------------------------------------------------------------------- /Sample_Animation/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_Animation/Elements.xml -------------------------------------------------------------------------------- /Sample_Animation/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_Animation/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_Animation/photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_Animation/photo.jpg -------------------------------------------------------------------------------- /Sample_AutoFill/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_AutoFill/Elements.xml -------------------------------------------------------------------------------- /Sample_AutoFill/Page.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_AutoFill/Page.aspx -------------------------------------------------------------------------------- /Sample_AutoFill/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_AutoFill/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_AutoFill/autofill.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_AutoFill/autofill.d.ts -------------------------------------------------------------------------------- /Sample_AutoFill/autofill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_AutoFill/autofill.ts -------------------------------------------------------------------------------- /Sample_BasicCSOMActions/Account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_BasicCSOMActions/Account.html -------------------------------------------------------------------------------- /Sample_BasicCSOMActions/Announcements/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_BasicCSOMActions/Announcements/Elements.xml -------------------------------------------------------------------------------- /Sample_BasicCSOMActions/Announcements/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_BasicCSOMActions/Announcements/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_BasicCSOMActions/AppUIEvents.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample_BasicCSOMActions/AppUIEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_BasicCSOMActions/AppUIEvents.ts -------------------------------------------------------------------------------- /Sample_BasicCSOMActions/BasicTasksJSOM.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_BasicCSOMActions/BasicTasksJSOM.css -------------------------------------------------------------------------------- /Sample_BasicCSOMActions/BasicTasksJSOM.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_BasicCSOMActions/BasicTasksJSOM.d.ts -------------------------------------------------------------------------------- /Sample_BasicCSOMActions/BasicTasksJSOM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_BasicCSOMActions/BasicTasksJSOM.html -------------------------------------------------------------------------------- /Sample_BasicCSOMActions/BasicTasksJSOM.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_BasicCSOMActions/BasicTasksJSOM.ts -------------------------------------------------------------------------------- /Sample_BasicCSOMActions/ChromeLoader.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample_BasicCSOMActions/ChromeLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_BasicCSOMActions/ChromeLoader.ts -------------------------------------------------------------------------------- /Sample_BasicCSOMActions/Contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_BasicCSOMActions/Contact.html -------------------------------------------------------------------------------- /Sample_BasicCSOMActions/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_BasicCSOMActions/Elements.xml -------------------------------------------------------------------------------- /Sample_BasicCSOMActions/Help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_BasicCSOMActions/Help.html -------------------------------------------------------------------------------- /Sample_BasicCSOMActions/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_BasicCSOMActions/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_BasicCSOMActions/Shared Documents/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_BasicCSOMActions/Shared Documents/Elements.xml -------------------------------------------------------------------------------- /Sample_BasicCSOMActions/Shared Documents/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_BasicCSOMActions/Shared Documents/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_CSRComplexityField/CSRField.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRComplexityField/CSRField.d.ts -------------------------------------------------------------------------------- /Sample_CSRComplexityField/CSRField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRComplexityField/CSRField.ts -------------------------------------------------------------------------------- /Sample_CSRComplexityField/CustomFieldList/CustomFieldListInstance/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRComplexityField/CustomFieldList/CustomFieldListInstance/Elements.xml -------------------------------------------------------------------------------- /Sample_CSRComplexityField/CustomFieldList/CustomFieldListInstance/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRComplexityField/CustomFieldList/CustomFieldListInstance/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_CSRComplexityField/CustomFieldList/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRComplexityField/CustomFieldList/Elements.xml -------------------------------------------------------------------------------- /Sample_CSRComplexityField/CustomFieldList/Schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRComplexityField/CustomFieldList/Schema.xml -------------------------------------------------------------------------------- /Sample_CSRComplexityField/CustomFieldList/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRComplexityField/CustomFieldList/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_CSRComplexityField/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRComplexityField/Elements.xml -------------------------------------------------------------------------------- /Sample_CSRComplexityField/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRComplexityField/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_CSRConditionalFormatting/ConditionalFormattingTasksList/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRConditionalFormatting/ConditionalFormattingTasksList/Elements.xml -------------------------------------------------------------------------------- /Sample_CSRConditionalFormatting/ConditionalFormattingTasksList/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRConditionalFormatting/ConditionalFormattingTasksList/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_CSRConditionalFormatting/Scripts_ConditionalFormattingList/ConditionalFormatting.d.ts: -------------------------------------------------------------------------------- 1 | declare module _ { 2 | } 3 | -------------------------------------------------------------------------------- /Sample_CSRConditionalFormatting/Scripts_ConditionalFormattingList/ConditionalFormatting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRConditionalFormatting/Scripts_ConditionalFormattingList/ConditionalFormatting.js -------------------------------------------------------------------------------- /Sample_CSRConditionalFormatting/Scripts_ConditionalFormattingList/ConditionalFormatting.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRConditionalFormatting/Scripts_ConditionalFormattingList/ConditionalFormatting.js.map -------------------------------------------------------------------------------- /Sample_CSRConditionalFormatting/Scripts_ConditionalFormattingList/ConditionalFormatting.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRConditionalFormatting/Scripts_ConditionalFormattingList/ConditionalFormatting.min.js -------------------------------------------------------------------------------- /Sample_CSRConditionalFormatting/Scripts_ConditionalFormattingList/ConditionalFormatting.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRConditionalFormatting/Scripts_ConditionalFormattingList/ConditionalFormatting.min.js.map -------------------------------------------------------------------------------- /Sample_CSRConditionalFormatting/Scripts_ConditionalFormattingList/ConditionalFormatting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRConditionalFormatting/Scripts_ConditionalFormattingList/ConditionalFormatting.ts -------------------------------------------------------------------------------- /Sample_CSRConditionalFormatting/Scripts_ConditionalFormattingList/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRConditionalFormatting/Scripts_ConditionalFormattingList/Elements.xml -------------------------------------------------------------------------------- /Sample_CSRConditionalFormatting/Scripts_ConditionalFormattingList/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRConditionalFormatting/Scripts_ConditionalFormattingList/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_CSRCustomForm/CSRFormFields/CSRFormField.d.ts: -------------------------------------------------------------------------------- 1 | declare module _ { 2 | } 3 | -------------------------------------------------------------------------------- /Sample_CSRCustomForm/CSRFormFields/CSRFormField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRCustomForm/CSRFormFields/CSRFormField.js -------------------------------------------------------------------------------- /Sample_CSRCustomForm/CSRFormFields/CSRFormField.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRCustomForm/CSRFormFields/CSRFormField.js.map -------------------------------------------------------------------------------- /Sample_CSRCustomForm/CSRFormFields/CSRFormField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRCustomForm/CSRFormFields/CSRFormField.ts -------------------------------------------------------------------------------- /Sample_CSRCustomForm/CSRFormFields/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRCustomForm/CSRFormFields/Elements.xml -------------------------------------------------------------------------------- /Sample_CSRCustomForm/CSRFormFields/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRCustomForm/CSRFormFields/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_CSRCustomForm/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRCustomForm/Elements.xml -------------------------------------------------------------------------------- /Sample_CSRCustomForm/Sample_CSRCustomFormInstance/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRCustomForm/Sample_CSRCustomFormInstance/Elements.xml -------------------------------------------------------------------------------- /Sample_CSRCustomForm/Sample_CSRCustomFormInstance/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRCustomForm/Sample_CSRCustomFormInstance/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_CSRCustomForm/Schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRCustomForm/Schema.xml -------------------------------------------------------------------------------- /Sample_CSRCustomForm/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRCustomForm/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_CSRCustomLayout/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRCustomLayout/Elements.xml -------------------------------------------------------------------------------- /Sample_CSRCustomLayout/NewForm.d.ts: -------------------------------------------------------------------------------- 1 | declare module _ { 2 | } 3 | -------------------------------------------------------------------------------- /Sample_CSRCustomLayout/NewForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRCustomLayout/NewForm.ts -------------------------------------------------------------------------------- /Sample_CSRCustomLayout/Sample_CSRCustomLayoutInstance/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRCustomLayout/Sample_CSRCustomLayoutInstance/Elements.xml -------------------------------------------------------------------------------- /Sample_CSRCustomLayout/Sample_CSRCustomLayoutInstance/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRCustomLayout/Sample_CSRCustomLayoutInstance/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_CSRCustomLayout/Schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRCustomLayout/Schema.xml -------------------------------------------------------------------------------- /Sample_CSRCustomLayout/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRCustomLayout/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_CSRListView/CustomList/CustomListInstance/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRListView/CustomList/CustomListInstance/Elements.xml -------------------------------------------------------------------------------- /Sample_CSRListView/CustomList/CustomListInstance/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRListView/CustomList/CustomListInstance/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_CSRListView/CustomList/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRListView/CustomList/Elements.xml -------------------------------------------------------------------------------- /Sample_CSRListView/CustomList/Schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRListView/CustomList/Schema.xml -------------------------------------------------------------------------------- /Sample_CSRListView/CustomList/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRListView/CustomList/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_CSRListView/Scripts_CSRListView/CSRListView.d.ts: -------------------------------------------------------------------------------- 1 | declare module _ { 2 | } 3 | -------------------------------------------------------------------------------- /Sample_CSRListView/Scripts_CSRListView/CSRListView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRListView/Scripts_CSRListView/CSRListView.js -------------------------------------------------------------------------------- /Sample_CSRListView/Scripts_CSRListView/CSRListView.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRListView/Scripts_CSRListView/CSRListView.js.map -------------------------------------------------------------------------------- /Sample_CSRListView/Scripts_CSRListView/CSRListView.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRListView/Scripts_CSRListView/CSRListView.min.js -------------------------------------------------------------------------------- /Sample_CSRListView/Scripts_CSRListView/CSRListView.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRListView/Scripts_CSRListView/CSRListView.min.js.map -------------------------------------------------------------------------------- /Sample_CSRListView/Scripts_CSRListView/CSRListView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRListView/Scripts_CSRListView/CSRListView.ts -------------------------------------------------------------------------------- /Sample_CSRListView/Scripts_CSRListView/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRListView/Scripts_CSRListView/Elements.xml -------------------------------------------------------------------------------- /Sample_CSRListView/Scripts_CSRListView/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRListView/Scripts_CSRListView/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_CSRTabs/CSRTabs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRTabs/CSRTabs.d.ts -------------------------------------------------------------------------------- /Sample_CSRTabs/CSRTabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRTabs/CSRTabs.ts -------------------------------------------------------------------------------- /Sample_CSRTabs/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRTabs/Elements.xml -------------------------------------------------------------------------------- /Sample_CSRTabs/ListWithTabsForm/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRTabs/ListWithTabsForm/Elements.xml -------------------------------------------------------------------------------- /Sample_CSRTabs/ListWithTabsForm/Form.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRTabs/ListWithTabsForm/Form.aspx -------------------------------------------------------------------------------- /Sample_CSRTabs/ListWithTabsForm/ListWithTabsFormInstance/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRTabs/ListWithTabsForm/ListWithTabsFormInstance/Elements.xml -------------------------------------------------------------------------------- /Sample_CSRTabs/ListWithTabsForm/ListWithTabsFormInstance/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRTabs/ListWithTabsForm/ListWithTabsFormInstance/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_CSRTabs/ListWithTabsForm/Schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRTabs/ListWithTabsForm/Schema.xml -------------------------------------------------------------------------------- /Sample_CSRTabs/ListWithTabsForm/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRTabs/ListWithTabsForm/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_CSRTabs/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CSRTabs/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_CascadedDropdown/Details1/Details1Instance/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CascadedDropdown/Details1/Details1Instance/Elements.xml -------------------------------------------------------------------------------- /Sample_CascadedDropdown/Details1/Details1Instance/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CascadedDropdown/Details1/Details1Instance/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_CascadedDropdown/Details1/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CascadedDropdown/Details1/Elements.xml -------------------------------------------------------------------------------- /Sample_CascadedDropdown/Details1/Schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CascadedDropdown/Details1/Schema.xml -------------------------------------------------------------------------------- /Sample_CascadedDropdown/Details1/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CascadedDropdown/Details1/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_CascadedDropdown/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CascadedDropdown/Elements.xml -------------------------------------------------------------------------------- /Sample_CascadedDropdown/FieldCascadedLookup.d.ts: -------------------------------------------------------------------------------- 1 | declare module _ { 2 | } 3 | -------------------------------------------------------------------------------- /Sample_CascadedDropdown/FieldCascadedLookup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CascadedDropdown/FieldCascadedLookup.ts -------------------------------------------------------------------------------- /Sample_CascadedDropdown/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CascadedDropdown/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_CustomFieldRendering/CustomFieldRenderingList/CustomFieldRenderingListInstance/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CustomFieldRendering/CustomFieldRenderingList/CustomFieldRenderingListInstance/Elements.xml -------------------------------------------------------------------------------- /Sample_CustomFieldRendering/CustomFieldRenderingList/CustomFieldRenderingListInstance/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CustomFieldRendering/CustomFieldRenderingList/CustomFieldRenderingListInstance/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_CustomFieldRendering/CustomFieldRenderingList/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CustomFieldRendering/CustomFieldRenderingList/Elements.xml -------------------------------------------------------------------------------- /Sample_CustomFieldRendering/CustomFieldRenderingList/Schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CustomFieldRendering/CustomFieldRenderingList/Schema.xml -------------------------------------------------------------------------------- /Sample_CustomFieldRendering/CustomFieldRenderingList/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CustomFieldRendering/CustomFieldRenderingList/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_CustomFieldRendering/CustomFieldRenderingModule/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CustomFieldRendering/CustomFieldRenderingModule/Elements.xml -------------------------------------------------------------------------------- /Sample_CustomFieldRendering/CustomFieldRenderingModule/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CustomFieldRendering/CustomFieldRenderingModule/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_CustomFieldRendering/CustomFieldRenderingModule/fieldsamples.visafield.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CustomFieldRendering/CustomFieldRenderingModule/fieldsamples.visafield.js -------------------------------------------------------------------------------- /Sample_CustomFieldRendering/CustomFieldRenderingModule/fieldsamples.visafield.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CustomFieldRendering/CustomFieldRenderingModule/fieldsamples.visafield.js.map -------------------------------------------------------------------------------- /Sample_CustomFieldRendering/CustomFieldRenderingModule/fieldsamples.visafield.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CustomFieldRendering/CustomFieldRenderingModule/fieldsamples.visafield.min.js -------------------------------------------------------------------------------- /Sample_CustomFieldRendering/CustomFieldRenderingModule/fieldsamples.visafield.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CustomFieldRendering/CustomFieldRenderingModule/fieldsamples.visafield.min.js.map -------------------------------------------------------------------------------- /Sample_CustomFieldRendering/CustomFieldRenderingModule/fieldsamples.visafield.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CustomFieldRendering/CustomFieldRenderingModule/fieldsamples.visafield.ts -------------------------------------------------------------------------------- /Sample_CustomJsGrid/App.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample_CustomJsGrid/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CustomJsGrid/App.ts -------------------------------------------------------------------------------- /Sample_CustomJsGrid/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CustomJsGrid/Default.aspx -------------------------------------------------------------------------------- /Sample_CustomJsGrid/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CustomJsGrid/Elements.xml -------------------------------------------------------------------------------- /Sample_CustomJsGrid/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_CustomJsGrid/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_FieldLookupBySearch/DetailsList/DetailsListInstance/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_FieldLookupBySearch/DetailsList/DetailsListInstance/Elements.xml -------------------------------------------------------------------------------- /Sample_FieldLookupBySearch/DetailsList/DetailsListInstance/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_FieldLookupBySearch/DetailsList/DetailsListInstance/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_FieldLookupBySearch/DetailsList/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_FieldLookupBySearch/DetailsList/Elements.xml -------------------------------------------------------------------------------- /Sample_FieldLookupBySearch/DetailsList/Schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_FieldLookupBySearch/DetailsList/Schema.xml -------------------------------------------------------------------------------- /Sample_FieldLookupBySearch/DetailsList/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_FieldLookupBySearch/DetailsList/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_FieldLookupBySearch/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_FieldLookupBySearch/Elements.xml -------------------------------------------------------------------------------- /Sample_FieldLookupBySearch/FieldLookupSearch.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_FieldLookupBySearch/FieldLookupSearch.d.ts -------------------------------------------------------------------------------- /Sample_FieldLookupBySearch/FieldLookupSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_FieldLookupBySearch/FieldLookupSearch.ts -------------------------------------------------------------------------------- /Sample_FieldLookupBySearch/MasterList/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_FieldLookupBySearch/MasterList/Elements.xml -------------------------------------------------------------------------------- /Sample_FieldLookupBySearch/MasterList/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_FieldLookupBySearch/MasterList/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_FieldLookupBySearch/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_FieldLookupBySearch/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_Publishing/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_Publishing/Default.aspx -------------------------------------------------------------------------------- /Sample_Publishing/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_Publishing/Elements.xml -------------------------------------------------------------------------------- /Sample_Publishing/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_Publishing/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_Publishing/publishing.d.ts: -------------------------------------------------------------------------------- 1 | declare function createPage(evt: any): void; 2 | -------------------------------------------------------------------------------- /Sample_Publishing/publishing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_Publishing/publishing.ts -------------------------------------------------------------------------------- /Sample_Reputation/ReputationListWithLikes/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_Reputation/ReputationListWithLikes/Elements.xml -------------------------------------------------------------------------------- /Sample_Reputation/ReputationListWithLikes/ReputationListWithLikesInstance/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_Reputation/ReputationListWithLikes/ReputationListWithLikesInstance/Elements.xml -------------------------------------------------------------------------------- /Sample_Reputation/ReputationListWithLikes/ReputationListWithLikesInstance/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_Reputation/ReputationListWithLikes/ReputationListWithLikesInstance/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_Reputation/ReputationListWithLikes/Schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_Reputation/ReputationListWithLikes/Schema.xml -------------------------------------------------------------------------------- /Sample_Reputation/ReputationListWithLikes/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_Reputation/ReputationListWithLikes/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_Reputation/ReputationModule/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_Reputation/ReputationModule/Elements.xml -------------------------------------------------------------------------------- /Sample_Reputation/ReputationModule/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_Reputation/ReputationModule/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_Reputation/ReputationModule/likes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_Reputation/ReputationModule/likes.d.ts -------------------------------------------------------------------------------- /Sample_Reputation/ReputationModule/likes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_Reputation/ReputationModule/likes.js -------------------------------------------------------------------------------- /Sample_Reputation/ReputationModule/likes.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_Reputation/ReputationModule/likes.js.map -------------------------------------------------------------------------------- /Sample_Reputation/ReputationModule/likes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_Reputation/ReputationModule/likes.ts -------------------------------------------------------------------------------- /Sample_SearchCSOM/SearchCSOM/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_SearchCSOM/SearchCSOM/Elements.xml -------------------------------------------------------------------------------- /Sample_SearchCSOM/SearchCSOM/Search.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_SearchCSOM/SearchCSOM/Search.aspx -------------------------------------------------------------------------------- /Sample_SearchCSOM/SearchCSOM/Search.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample_SearchCSOM/SearchCSOM/Search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_SearchCSOM/SearchCSOM/Search.js -------------------------------------------------------------------------------- /Sample_SearchCSOM/SearchCSOM/Search.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_SearchCSOM/SearchCSOM/Search.js.map -------------------------------------------------------------------------------- /Sample_SearchCSOM/SearchCSOM/Search.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_SearchCSOM/SearchCSOM/Search.min.js -------------------------------------------------------------------------------- /Sample_SearchCSOM/SearchCSOM/Search.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_SearchCSOM/SearchCSOM/Search.min.js.map -------------------------------------------------------------------------------- /Sample_SearchCSOM/SearchCSOM/Search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_SearchCSOM/SearchCSOM/Search.ts -------------------------------------------------------------------------------- /Sample_SearchCSOM/SearchCSOM/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_SearchCSOM/SearchCSOM/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_Social/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_Social/Default.aspx -------------------------------------------------------------------------------- /Sample_Social/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_Social/Elements.xml -------------------------------------------------------------------------------- /Sample_Social/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_Social/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_Social/Social.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample_Social/Social.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_Social/Social.ts -------------------------------------------------------------------------------- /Sample_Taxonomy/Taxonomy/App.d.ts: -------------------------------------------------------------------------------- 1 | declare module _ { 2 | } 3 | -------------------------------------------------------------------------------- /Sample_Taxonomy/Taxonomy/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_Taxonomy/Taxonomy/App.js -------------------------------------------------------------------------------- /Sample_Taxonomy/Taxonomy/App.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_Taxonomy/Taxonomy/App.js.map -------------------------------------------------------------------------------- /Sample_Taxonomy/Taxonomy/App.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_Taxonomy/Taxonomy/App.min.js -------------------------------------------------------------------------------- /Sample_Taxonomy/Taxonomy/App.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_Taxonomy/Taxonomy/App.min.js.map -------------------------------------------------------------------------------- /Sample_Taxonomy/Taxonomy/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_Taxonomy/Taxonomy/App.ts -------------------------------------------------------------------------------- /Sample_Taxonomy/Taxonomy/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_Taxonomy/Taxonomy/Default.aspx -------------------------------------------------------------------------------- /Sample_Taxonomy/Taxonomy/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_Taxonomy/Taxonomy/Elements.xml -------------------------------------------------------------------------------- /Sample_Taxonomy/Taxonomy/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_Taxonomy/Taxonomy/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_UserProfiles/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_UserProfiles/Default.aspx -------------------------------------------------------------------------------- /Sample_UserProfiles/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_UserProfiles/Elements.xml -------------------------------------------------------------------------------- /Sample_UserProfiles/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_UserProfiles/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_UserProfiles/UserProfiles.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample_UserProfiles/UserProfiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_UserProfiles/UserProfiles.ts -------------------------------------------------------------------------------- /Sample_WhoIsWebPart/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_WhoIsWebPart/Elements.xml -------------------------------------------------------------------------------- /Sample_WhoIsWebPart/Part.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_WhoIsWebPart/Part.aspx -------------------------------------------------------------------------------- /Sample_WhoIsWebPart/Part.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_WhoIsWebPart/Part.css -------------------------------------------------------------------------------- /Sample_WhoIsWebPart/Part.d.ts: -------------------------------------------------------------------------------- 1 | declare module _ { 2 | } 3 | -------------------------------------------------------------------------------- /Sample_WhoIsWebPart/Part.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_WhoIsWebPart/Part.ts -------------------------------------------------------------------------------- /Sample_WhoIsWebPart/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_WhoIsWebPart/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_WhoIsWebPart/WhoIsWebPart/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_WhoIsWebPart/WhoIsWebPart/Elements.xml -------------------------------------------------------------------------------- /Sample_WhoIsWebPart/WhoIsWebPart/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_WhoIsWebPart/WhoIsWebPart/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_WorkflowServices/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_WorkflowServices/Default.aspx -------------------------------------------------------------------------------- /Sample_WorkflowServices/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_WorkflowServices/Elements.xml -------------------------------------------------------------------------------- /Sample_WorkflowServices/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_WorkflowServices/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_WorkflowServices/WorkflowServices.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample_WorkflowServices/WorkflowServices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_WorkflowServices/WorkflowServices.ts -------------------------------------------------------------------------------- /Sample_mQuery/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_mQuery/Elements.xml -------------------------------------------------------------------------------- /Sample_mQuery/Page.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_mQuery/Page.aspx -------------------------------------------------------------------------------- /Sample_mQuery/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_mQuery/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Sample_mQuery/mquery.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_mQuery/mquery.d.ts -------------------------------------------------------------------------------- /Sample_mQuery/mquery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Sample_mQuery/mquery.ts -------------------------------------------------------------------------------- /Scripts/Elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/Elements.xml -------------------------------------------------------------------------------- /Scripts/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Scripts/angular-mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/angular-mocks.js -------------------------------------------------------------------------------- /Scripts/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/angular.js -------------------------------------------------------------------------------- /Scripts/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/angular.min.js -------------------------------------------------------------------------------- /Scripts/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/angular.min.js.map -------------------------------------------------------------------------------- /Scripts/typings/angularjs/angular-animate.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/angularjs/angular-animate.d.ts -------------------------------------------------------------------------------- /Scripts/typings/angularjs/angular-cookies.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/angularjs/angular-cookies.d.ts -------------------------------------------------------------------------------- /Scripts/typings/angularjs/angular-mocks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/angularjs/angular-mocks.d.ts -------------------------------------------------------------------------------- /Scripts/typings/angularjs/angular-resource.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/angularjs/angular-resource.d.ts -------------------------------------------------------------------------------- /Scripts/typings/angularjs/angular-route.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/angularjs/angular-route.d.ts -------------------------------------------------------------------------------- /Scripts/typings/angularjs/angular-sanitize.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/angularjs/angular-sanitize.d.ts -------------------------------------------------------------------------------- /Scripts/typings/angularjs/angular-scenario.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/angularjs/angular-scenario.d.ts -------------------------------------------------------------------------------- /Scripts/typings/angularjs/angular.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/angularjs/angular.d.ts -------------------------------------------------------------------------------- /Scripts/typings/jquery.ui.datetimepicker/jquery.ui.datetimepicker.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/jquery.ui.datetimepicker/jquery.ui.datetimepicker.d.ts -------------------------------------------------------------------------------- /Scripts/typings/jquery/jquery.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/jquery/jquery.d.ts -------------------------------------------------------------------------------- /Scripts/typings/jqueryui/jqueryui.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/jqueryui/jqueryui.d.ts -------------------------------------------------------------------------------- /Scripts/typings/knockout/knockout.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/knockout/knockout.d.ts -------------------------------------------------------------------------------- /Scripts/typings/microsoft-ajax/microsoft.ajax.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/microsoft-ajax/microsoft.ajax.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/AssetPickers.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/AssetPickers.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/CUI.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/CUI.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/SP.BusinessData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/SP.BusinessData.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/SP.DocumentManagement.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/SP.DocumentManagement.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/SP.Init.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/SP.Init.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/SP.JSGrid.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/SP.JSGrid.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/SP.Policy.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/SP.Policy.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/SP.Publishing.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/SP.Publishing.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/SP.RequestExecutor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/SP.RequestExecutor.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/SP.Res.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/SP.Res.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/SP.Ribbon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/SP.Ribbon.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/SP.Search.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/SP.Search.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/SP.Sharing.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/SP.Sharing.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/SP.Social.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/SP.Social.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/SP.Taxonomy.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/SP.Taxonomy.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/SP.UI.ApplicationPages.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/SP.UI.ApplicationPages.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/SP.UI.Controls.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/SP.UI.Controls.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/SP.UI.RTE.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/SP.UI.RTE.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/SP.UI.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/SP.UI.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/SP.UserProfiles.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/SP.UserProfiles.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/SP.Utilities.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/SP.Utilities.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/SP.WebParts.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/SP.WebParts.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/SP.Workflow.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/SP.Workflow.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/SP.WorkflowServices.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/SP.WorkflowServices.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/SP.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/SP.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/SPAnimation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/SPAnimation.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/SPGantt.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/SPGantt.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/SPO.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/SPO.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/Search.ClientControl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/Search.ClientControl.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/autofill.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/autofill.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/callout.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/callout.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/clientpeoplepicker.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/clientpeoplepicker.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/clienttemplates.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/clienttemplates.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/core.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/core.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/dragdrop.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/dragdrop.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/inplview.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/inplview.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/mQuery.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/mQuery.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/reputation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/reputation.d.ts -------------------------------------------------------------------------------- /Scripts/typings/sharepoint/strings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/Scripts/typings/sharepoint/strings.d.ts -------------------------------------------------------------------------------- /SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/bower.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/package.json -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/packages.config -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typescripttemplates.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandjustas/sptypescript/HEAD/typescripttemplates.nuspec --------------------------------------------------------------------------------