- Annotator: Display the annotation view (git blame) of the current file.
- beutify: Beautify javascript, JSON, CSS, Sass, and HTML in Visual Studio Code.
- Can I Use: Compatibility check for HTML5, CSS3, SVG, New JS API based on http://caniuse.com/ directly from Visual Studio Code.
- Code SpellChecker: A basic spell checker that works well with camelCase code.
- Custom CSS and JS: Custom CSS to your VS Code.
- Debugger for Chrome: A VS Code extension to debug your JavaScript code in the Google Chrome browser, or other targets that support the Chrome Debugging Protocol.
- EditorConfig for VSCode: EditorConfig support for Visual Studio Code.
- ESLint: Integrates ESLint into VS Code.
- File Utils: A convenient way of creating, duplicating, moving, renaming, deleting files and directories.
- Flow Language Support: This extension adds Flow support for VS Code. Flow is a static type checker, designed to find type errors in JavaScript programs.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@model Sitecore.XA.Foundation.RenderingVariants.Models.VariantListsRenderingModel | |
@using Sitecore.Data.Items | |
@using Sitecore.XA.Foundation.MarkupDecorator.Extensions | |
@using Sitecore.XA.Foundation.RenderingVariants.Extensions | |
@using Sitecore.XA.Foundation.RenderingVariants.Fields | |
@using Sitecore.XA.Foundation.SitecoreExtensions.Extensions | |
@using Sitecore.XA.Foundation.Variants.Abstractions.Fields | |
@{ | |
int index = 0; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// sitecore forms | |
var input = document.querySelector(".gm-phone-no-field"); | |
window.intlTelInput(input, { | |
autoHideDialCode: false, | |
autoPlaceholder: "off", | |
dropdownContainer: document.body, | |
formatOnDisplay: false, | |
nationalMode: false, | |
separateDialCode: true, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.checkboxes { | |
cursor: pointer; | |
-webkit-user-select: none; | |
-moz-user-select: none; | |
-ms-user-select: none; | |
user-select: none; | |
input { | |
position: absolute; | |
opacity: 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Param( | |
$installFolder = "c:\solr", | |
$solrPort = "8750", | |
$solrHost = "localhost", | |
$solrSSL = $true, | |
$downloadFolder = "$PSScriptRoot" | |
) | |
$solrVersion = "7.5.0" | |
$solrName = "solr-$solrVersion" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Param( | |
$installFolder = "c:\solr", | |
$solrPort = "8721", | |
$solrHost = "solr", | |
$solrSSL = $true, | |
$downloadFolder = "$PSScriptRoot" | |
) | |
$solrVersion = "7.2.1" | |
$solrName = "solr-$solrVersion" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Newtonsoft.Json.Linq; | |
using Sitecore.Data.Items; | |
using Sitecore.LayoutService.Configuration; | |
namespace VitaliiTylyk.JavascriptServices.RenderingContentsResolvers | |
{ | |
/// <summary> | |
/// Builds a tree-like structure of datasource item's descendants | |
/// </summary> | |
public class DescendantsTreeRenderingContentsResolver : Sitecore.LayoutService.ItemRendering.ContentsResolvers.RenderingContentsResolver |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The Prefix that will be used on SOLR, Website and Database instances. | |
$Prefix = "xp91" | |
# The Password for the Sitecore Admin User. This will be regenerated if left on the default. | |
$SitecoreAdminPassword = "SIF-Default" | |
# The root folder with the license file and WDP files. | |
$SCInstallRoot = "C:\ResourceFiles" | |
# The name for the XConnect service. | |
$XConnectSiteName = "$prefix.xconnect" | |
# The Sitecore site instance name. | |
$SitecoreSiteName = "$prefix.sc" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Param( | |
$solrVersion = "7.2.1", | |
$installFolder = "c:\solr\", | |
$solrPort = "8983", | |
$solrHost = "solr", | |
$solrSSL = $true, | |
$nssmVersion = "2.24", | |
$JREVersion = "9.0.1" | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.SYNOPSIS | |
Sitecore PowerShell Extensions 5.0 uses new icons. This script is designed to update | |
your existing modules to use the new icon. | |
.DESCRIPTION | |
The SPE module changes the icon when you enable/disable the module. Only disabled modules | |
will automatically take the new icon. This is script helps by updating all of the icons | |
for enabled modules. Alternatively, you can go through and disable then enable the modules. | |
#> |
NewerOlder