-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Variants - inheriting data from the base #12
Comments
Hey @legostud - so after doing quite a bit of digging (and a whole lot of experimenting with the logic behind how the psuedo-pattern data gets merged together in the Lemme try to break this down a bit. 1. Regarding this quirk showing up w/ the PR from a couple weeks ago updating Mayflower to the Drupal Pattern Lab Fork:From what I can tell, this issue with some of the data getting duplicated in the pseudo pattern stems from this commit from @dmolsen from a little over a year ago that changed the default data merging behavior for pseudo-patterns in Pattern Lab from a simple Sure enough, if I revert those two lines locally, the 2. That said, this brings up the important question, what's the correct behavior here?Let's pretend for a moment that this Rather than setting the
Instead of inheriting the "Contact Us" text from the original pattern (or some other data property we'd want to trickle down into variants so we don't need to duplicate the data structure over and over again, instead the title gets overwritten by the other vs. the update from July of last year which replaced which properly inherit the default title set in the base pattern. If I'd have to guess, this is probably why the data across the board in PL is replaced recursively vs merged. So.... what's the correct behavior? ¯_(ツ)_/¯ 3. All that said, I think there's a couple options we could go from here.My personal opinion would be to go in one of two different directions: Option 1: Keep the default merging behavior, but take a slightly different approach to generating variants.@EvanLovely had some awesome slides during his Drupalcon Baltomore 2017 presentation on working with Pinterest on their component library and had this one slide in particular that really stood out: Essentially, each pattern should have a vanilla pristine underscored version that both PL and Drupal reference and pass in the data per usual via separate twig file variations. So for this example, you could simply have a
OR
Option 2: Allow for Default PL Rules to Be ConfigurableAlternatively, if we went down this route, we could allow PL users to pick and choose which is the right behavior for them (while still providing an out of the box default set of rules to start off with). Side note: I'm sad that the slides for Evan's presentation didn't get included in the YouTube video. A PDF of the slides would be amazing.... CC @EvanLovely, @aleksip, or @jesconstantine -- any thoughts? |
@sghoweri - In your example of omitting "title", the pattern is still rendering (see the green line) just without any text. All of the html is still there. In the example I'm showing, the second item is an accordion that expands to show another element. The question I still have is that I have reset the "contactList.contacts" variable from having two values to having one value in it array, as such it should render one element. I could accept it rendering two elements if I omitted the contacts variable, because I then wouldn't be overriding the default contacts variable. |
Salem, I'm on vacation this week, but I wanted to drop in the link to my slides from the presentation. I'm super bummed they messed up the recording and plan to fix it myself eventually. |
Those slides provided some insight into this problem. Base on what I'm seeing in Evans slides, the pattern for creating variants is different than how I've been doing them. In these examples, all of the data passed is done using 'with' so a variant is created as a new twig file with a different data object passed down. For my project, I'm using pseudo patterns, which uses multiple json files for one twig file. |
found another broken pattern (two column variant). Similar issue with the array being extended. |
Hey thanks @EvanLovely - enjoy your time off! |
…tion vs array_replace_recursive -- temporary workaround to address unexpected behavior from drupal-pattern-lab/patternlab-php-core#12
…ritance (#519) * Reverting Pattern Lab psuedo-pattern rules to use original merge function vs array_replace_recursive -- temporary workaround to address unexpected behavior from drupal-pattern-lab/patternlab-php-core#12 * Adding composer patch library to automatically apply array_merge patch if/when upstream PL updates should occur * Adding composer patch plugin to autoloader
…ritance (#519) * Reverting Pattern Lab psuedo-pattern rules to use original merge function vs array_replace_recursive -- temporary workaround to address unexpected behavior from drupal-pattern-lab/patternlab-php-core#12 * Adding composer patch library to automatically apply array_merge patch if/when upstream PL updates should occur * Adding composer patch plugin to autoloader
* DP-3527/DP-3528 - Unused Patterns (#455) * DP-3519 - Image Promos - adding optional title * DP-3519 - Location - new Content type. * DP-3519 - Location Pages - updated to use location template * DP-3519 - removing breadcrumbs * DP-3519 - Removing wait time widget * DP-3519 - Renaming pageContent to mainContent * DP-3519 - Location Content - adding key actions and contact list * DP-3527 - Quick Actions - removed * DP-3527 - Sidebar Contact - removed * DP-3527 - Sidebar Promo - removed * DP-3527 - Sidebar Widget - removed * DP-3527 - Wait Time - removed * DP-3527 - Header Contact - removed * DP-3527 - Action Details - removed * DP-3527 - Action Section - removed * DP-3527 - Figure - fixing image width * DP-3527 - Action Event - removed * DP-3528 - Action Gallery - archived * DP-3528 - Action Cards - archived * DP-3528 - Blog Feed - archived * DP-3528 - Banner Carousel - archived * DP-3528 - Change Log - archived * DP-3528 - Feedback Form - archived * DP-3528 - Test Feed - archived * DP-3528 - Top Actions - archived * DP-3528 - Collage Header - archived * DP-3527 - Image Gallery - removed * DP-3527 - Related Action - removed * DP-3528 - State Util - removed * Bump release to 6.0 * bad merge * ignoring url config file for Release 6.0 * Removing disco mode from Pattern Lab. * Switch Mayflower over to the Drupal Pattern Lab fork (#488) * Switch Pattern Lab config to point to the Drupal Pattern Lab fork -- includes multiple PL bug fixes including the fix for the Lineages functionality being broken when using Twig namespaced paths. * Reverting a few PL config paramaters that don't necessarily have to get updated with the newer version * Fixing whitespace issues * Fixing missed spaces vs tabs instance in config * DP-4046 - Hosting from a Subfolder (#503) * DP-4046 - Global Data - splitting into seperate files and creating url obj * DP-4046 - Image - code clean up * DP-4046 - fixing path variables to use ../../assets instead of /assets * Pagination - preventing the loading of templates on pages without pagination * DP-4046 - Default domain changed to localhost:3000 * DP-4046 - Site Logo - updating the href value * DP-4046 - Adding Base tag. * removing env.js file * DP-4046 - Template JS var - renamed from themePath to templatePath * Revert "DP-4046 - Template JS var - renamed from themePath to templatePath" This reverts commit f21e7163c01841fa174b22289333dce09ad34262. * DP-4046 - themePath documentation * DP-4046 - Env.js - removing script to include file * DP-4046 - Styleguide - relative paths for assets * DP-4046 - Removing base tag. * Subfolders - changing default domain url to be "" * Trigger Browser Sync reload after Pattern Lab build (#506) * Adding minor delay to browsersync * DP-4048 Establish format for pattern docs (#515) * DP-4048 - Annotations - updating to look for JS classes used. * DP-4048 - Annotations - The extra html added breaks the styles * Dp-4048 - Extra Js - removing unused JS files * DP-4048 - updating Styling of Pattern Info panel * DP-4048 - Contact List - Documentation * DP-4048 - Image * DP-4048 - Pattern Documentation - Remving Usage Guidelines. * DP-4048 - additional tweaks to md files * DP-4048 - Lineage styling * DP-4048 - Removing title yaml. * DP-4048 - Contact List - removed 'title' field from docs * Mapped Locations - Fixing bug with assigning the colored background * DP-4080 - Versioning Documentation (#504) * DP-4080 - Versioning - first draft * Dp-4080 - let's try that again after saving the file. * DP-4080 - Versioning - updating Major version text * Second Draft * DP-4080 - Versions - Third draft with examples versions * DP-4080 - Version - reducing importance of Terms * DP-4080 - Version - Edits after reviewing. * DP-4080 - Versions - missed a few * DP-4080 - Versions - Weird copy and paste issue. * DP-4080 - Tweak to Minor version description * DP-4080 - Version Docs - fourth version * DP-4080 - Version doc - version 5 * DP-4053 create + document manual build + deploy process (#530) * Add shell script to deploy PL build to gh-pages branch of given repo * Update readme with deploy, contrib, versions, license info * Create contributing documentation * Create deploy documentation * Create PR template * Create issue template * Move environment setup and demo install instructions to own docs * Link to mayflower artifacts docs from readme (vs duplicating content) * Workaround to address unexpected Pattern Lab Psuedo-Pattern Data Inheritance (#519) * Reverting Pattern Lab psuedo-pattern rules to use original merge function vs array_replace_recursive -- temporary workaround to address unexpected behavior from https://github.com/drupal-pattern-lab/patternlab-php-core/issues/12 * Adding composer patch library to automatically apply array_merge patch if/when upstream PL updates should occur * Adding composer patch plugin to autoloader * DP-4176 Service page documentation (#521) * Add shell script to deploy PL build to gh-pages branch of given repo * Make deploy script executable * Use bash shebang in deploy script * Fix conditional logic * Write git output to screen * Fix conditional logic check for false * print variable name in log * update order of args * Fix conditional logic boolean false * fix variable assignment, remove spaces * echo errors in red, success in green * fix validation of target environment * Update deploy script argument validation * Validate git push during deploy * Exit deploy script on failed build * Update docs * Fix syntax error. * Create a function for cleanup * Fix target URL * Create function for success / error logging * Update docs * Ensure that patterns are blown away before built * Remove exit on error log * Fix string comparison in log function * Add final error message to deploy script * Make wrong target remote repo message more helpful * Create CNAME for staging (test) * Test confirm functionality * Create CNAME for stage / prod * Add logic for final success message non/prod * Update readme with deploy, contrib, versions, license info See template link under readme > acknowledgements * Create contributing documentation * Create deploy documentation * Fix readme link typo * Fix link to contributing.md * Update github pages settings docs * Update Contributing md with Mayflower, PR tips. * Create PR template * Create issue template * Fix typo and make contributing language more friendly * Update steps to browse in readme. * Update readme browse Mayflower steps * Fix readme typo. * Add deployment steps to contributing.md * Fix typo, styling of deploy docs. * Add PHP version to readme. * Update built with pattern lab language in readme * Update mayflower artifacts text in readme. * Add git commit context to contributing docs * Format readme * Describe project file structure in contributing.md * Format contributing.md * Clarify github pull request buttons in contributing md * Remove acknowledgements from contributing TOC * Format prerequisite in deploy docs * Link to gulp readme from deploy docs * Log output when production deploy aborted * Use main repo as example in deploy script comments * Make cname a parameter for deploy script, required for prod only * Move CONTRIBUTING.md into .github directory * Remove written descriptions of Github's UI, replace with link to docs * Make CONTRIBUTING.md branching language more consistent with git * Move pattern lab docs to first step in CONTRIBUTING > working with PL * Remove vague language in CONTRIBUTING.md * Clarify Mayflower Artifacts in readme * Make CONTRIBUTING.md > keeping your fork in sync explanation more clear. * Move environment setup and demo install instructions to own docs * Group steps in CONTRIBUTING.md * Fix link to CONTRIBUTING.md after move to /.github * Simplify readme install / contribute / deploy sections * Remove link to personal fork, but keep repo name, in deploy docs * Fix mayflower-artifacts url in readme * Update the deploy success message to use cname if present * Fix cname conditional logic in deploy script. * Use [-c] rather tha [-cname] as parameter for gh pages deploy script * Fix typo in success message for cname * Fix deploy script config for url.domain/assetsPath when cname passed * Improve script logging: hide lengthy status/success, color + tag logs. * Fix typos. * Fix typo in docs for [-t] argument. * Move log prior to command for creating cname in deploy script. * Avoid having to escape / in deploy script > assetsPath var Use ! as delimeter, see: https://coderwall.com/p/khdkuw/delimiters-in-sed-substitution * Allow assetsPath to be passed with cname flag * Accept [-a] argument in deploy script * Fix deploy script [-t] flag to be target remote repo *owner* This seems to have reverted to a prior state somehow. * Remove extra " from assetsPath in url.json * Update [-c] validation log to reflect [-c] vs [-cname] * Add developer deploy docs note about cname and assetPaths flags. * Uncomment script. So. It. Does. Things. (silly) * Link to mayflower artifacts docs from readme (vs duplicating content) * DP-4048 - Annotations - updating to look for JS classes used. * DP-4048 - Annotations - The extra html added breaks the styles * Dp-4048 - Extra Js - removing unused JS files * DP-4048 - updating Styling of Pattern Info panel * DP-4048 - Contact List - Documentation * DP-4048 - Image * DP-4048 - Pattern Documentation - Remving Usage Guidelines. * DP-4048 - additional tweaks to md files * DP-4048 - Lineage styling * DP-4048 - Removing title yaml. * Make all intra-docs links relative * Fix deploy docs links * Update clone steps to be more clear * Ensure branch is clean after deploy, fix typos * Add patternlab task to deafult gulp ( = always generate patterns) * Try gulp prod in deploy script * Ensure public directory gets cleaned out prior to generation * DP-4048 - Contact List - removed 'title' field from docs * DP-4176 - Service Page and Template - documentation * DP-4176 - Page Banner - Documentation * DP-4048 Establish format for pattern docs (#515) * DP-4048 - Annotations - updating to look for JS classes used. * DP-4048 - Annotations - The extra html added breaks the styles * Dp-4048 - Extra Js - removing unused JS files * DP-4048 - updating Styling of Pattern Info panel * DP-4048 - Contact List - Documentation * DP-4048 - Image * DP-4048 - Pattern Documentation - Remving Usage Guidelines. * DP-4048 - additional tweaks to md files * DP-4048 - Lineage styling * DP-4048 - Removing title yaml. * DP-4048 - Contact List - removed 'title' field from docs * DP-4176 - Image - documentation * DP-4176 - Video - documentation * DP-4176 - Documentation template * DP-4176 - Key Actions - Documentation * DP-4176 - Decorative Link - documentation * DP-4176 - Key Actions - adding contained type * DP-4167 - Callout Link - documentation * DP-4176 - Illustrated link - documentation * DP-4176 - Variant Documentation template * DP-4176 - Contact List - Updated variant documentation * DP-4176 - Sidebar Heading - documentation * DP-4176 - Comp Heading - documentation * DP-4176 - Variants - making link relative './' * DP-4176 - Icon Links - documentation * DP-4176 - Link List - documentation * DP-4176 - Link List - documention of Right Rail usage * DP-4176 - Action Finder - documentation * DP-4176 - Mapped Locations - documentation * DP-4176 - Variant template updated * DP-4176 - Mapped Locations - Removed title from contained version * DP-4176 - Callout Link External - removed variant * Mapped Locations - Fixing bug with assigning the colored background * DP-4176 - Split Columns - documentation * DP-4176 - Rich Text - documentation * DP-4176 - Download Link - documentation * DP-4176 - Forms Downloads - documentation * DP-4176 - Utility Panel - documentation * DP-4176 - Utility Nav - documentation * DP-4176 - Header - documentation * DP-4176 - Button Search - documentation * DP-4176 - Site Logo - documentation * DP-4176 - Header Search - documentation * DP-4176 - Main Nav - documentation * DP-4176 - Button - documentation * DP-4176 - Button - adding link option and correcting styling classes * DP-4176 - Button Link - marking it as depreciated * DP-4176 - Floating Action - updated to use just the button atom * DP-4176 - Floating Action - documentation * DP-4176 - Buttons - Updates to SCSS selectors * DP-4176 - Floating Action - correcting styling classes * DP-4176 - Footer - documentation * DP-4176 - Heading / Util Panel - marking as in Progress so we can update * DP-4176 - Button - re-adding support for the 'theme' variable * DP-4176 - Social Links - documentation * DP-4176 - Footer Links - documentation * DP-4176 - Buttons - leaving old styles for backward compatibilty * DP-4167 - Callout Link - moving the info variable to a title attribute * DP-4176 - Buttons - incorrect indentation * DP-4167 - Rich Text - updating to include all accepted patterns * DP-4176 - Rich text sub patterns - documentation * DP-4167 - figure - documentation and modified to use --left/--right classes * DP-4167 - Table - documentation * DP-4080 - Versioning Documentation (#504) * DP-4080 - Versioning - first draft * Dp-4080 - let's try that again after saving the file. * DP-4080 - Versioning - updating Major version text * Second Draft * DP-4080 - Versions - Third draft with examples versions * DP-4080 - Version - reducing importance of Terms * DP-4080 - Version - Edits after reviewing. * DP-4080 - Versions - missed a few * DP-4080 - Versions - Weird copy and paste issue. * DP-4080 - Tweak to Minor version description * DP-4080 - Version Docs - fourth version * DP-4080 - Version doc - version 5 * DP-4176 - Callout Link - making CSS backward compatible * DP-4176 - Floating Action - making code backward compatible * DP-4177 - Button - fixed logic to use old "theme" variable for color. * DP-4178 - Button - fixing broken links * DP-4176 - Button - switching color back to theme include values * DP-4176 - Comp Heading - correcting id value * DP-4176 - Decorative Link - removing schema.org and using title * DP-4176 - Linked List - Update docs * DP-4176 - Mapped Locations - updated docs * DP-4176 - Page Banner - Updated Docs * DP-4176 - Services Template - updated docs * DP-4176 - Action Finder - updated docs * DP-4176 - Download Link - removing property * DP-4176 - Callout Link - Better descriptive text * DP-4176 - Video - updated documentation * DP-4176 - Decorative Link - updated docs * DP-4176 - Mapped Locations - adding more useage guidelines * DP-4176 - Button - updated docs * DP-4176 - Table - updated docs * DP-4176 - Comp Heading - changing id value * DP-4178 / DP-4177 How To page (#523) * Add shell script to deploy PL build to gh-pages branch of given repo * Make deploy script executable * Use bash shebang in deploy script * Fix conditional logic * Write git output to screen * Fix conditional logic check for false * print variable name in log * update order of args * Fix conditional logic boolean false * fix variable assignment, remove spaces * echo errors in red, success in green * fix validation of target environment * Update deploy script argument validation * Validate git push during deploy * Exit deploy script on failed build * Update docs * Fix syntax error. * Create a function for cleanup * Fix target URL * Create function for success / error logging * Update docs * Ensure that patterns are blown away before built * Remove exit on error log * Fix string comparison in log function * Add final error message to deploy script * Make wrong target remote repo message more helpful * Create CNAME for staging (test) * Test confirm functionality * Create CNAME for stage / prod * Add logic for final success message non/prod * Update readme with deploy, contrib, versions, license info See template link under readme > acknowledgements * Create contributing documentation * Create deploy documentation * Fix readme link typo * Fix link to contributing.md * Update github pages settings docs * Update Contributing md with Mayflower, PR tips. * Create PR template * Create issue template * Fix typo and make contributing language more friendly * Update steps to browse in readme. * Update readme browse Mayflower steps * Fix readme typo. * Add deployment steps to contributing.md * Fix typo, styling of deploy docs. * Add PHP version to readme. * Update built with pattern lab language in readme * Update mayflower artifacts text in readme. * Add git commit context to contributing docs * Format readme * Describe project file structure in contributing.md * Format contributing.md * Clarify github pull request buttons in contributing md * Remove acknowledgements from contributing TOC * Format prerequisite in deploy docs * Link to gulp readme from deploy docs * Log output when production deploy aborted * Use main repo as example in deploy script comments * Make cname a parameter for deploy script, required for prod only * Move CONTRIBUTING.md into .github directory * Remove written descriptions of Github's UI, replace with link to docs * Make CONTRIBUTING.md branching language more consistent with git * Move pattern lab docs to first step in CONTRIBUTING > working with PL * Remove vague language in CONTRIBUTING.md * Clarify Mayflower Artifacts in readme * Make CONTRIBUTING.md > keeping your fork in sync explanation more clear. * Move environment setup and demo install instructions to own docs * Group steps in CONTRIBUTING.md * Fix link to CONTRIBUTING.md after move to /.github * Simplify readme install / contribute / deploy sections * Remove link to personal fork, but keep repo name, in deploy docs * Fix mayflower-artifacts url in readme * Update the deploy success message to use cname if present * Fix cname conditional logic in deploy script. * Use [-c] rather tha [-cname] as parameter for gh pages deploy script * Fix typo in success message for cname * Fix deploy script config for url.domain/assetsPath when cname passed * Improve script logging: hide lengthy status/success, color + tag logs. * Fix typos. * Fix typo in docs for [-t] argument. * Move log prior to command for creating cname in deploy script. * Avoid having to escape / in deploy script > assetsPath var Use ! as delimeter, see: https://coderwall.com/p/khdkuw/delimiters-in-sed-substitution * Allow assetsPath to be passed with cname flag * Accept [-a] argument in deploy script * Fix deploy script [-t] flag to be target remote repo *owner* This seems to have reverted to a prior state somehow. * Remove extra " from assetsPath in url.json * Update [-c] validation log to reflect [-c] vs [-cname] * Add developer deploy docs note about cname and assetPaths flags. * Uncomment script. So. It. Does. Things. (silly) * Link to mayflower artifacts docs from readme (vs duplicating content) * DP-4048 - Annotations - updating to look for JS classes used. * DP-4048 - Annotations - The extra html added breaks the styles * Dp-4048 - Extra Js - removing unused JS files * DP-4048 - updating Styling of Pattern Info panel * DP-4048 - Contact List - Documentation * DP-4048 - Image * DP-4048 - Pattern Documentation - Remving Usage Guidelines. * DP-4048 - additional tweaks to md files * DP-4048 - Lineage styling * DP-4048 - Removing title yaml. * Make all intra-docs links relative * Fix deploy docs links * Update clone steps to be more clear * Ensure branch is clean after deploy, fix typos * Add patternlab task to deafult gulp ( = always generate patterns) * Try gulp prod in deploy script * Ensure public directory gets cleaned out prior to generation * DP-4048 - Contact List - removed 'title' field from docs * DP-4176 - Service Page and Template - documentation * DP-4176 - Page Banner - Documentation * DP-4048 Establish format for pattern docs (#515) * DP-4048 - Annotations - updating to look for JS classes used. * DP-4048 - Annotations - The extra html added breaks the styles * Dp-4048 - Extra Js - removing unused JS files * DP-4048 - updating Styling of Pattern Info panel * DP-4048 - Contact List - Documentation * DP-4048 - Image * DP-4048 - Pattern Documentation - Remving Usage Guidelines. * DP-4048 - additional tweaks to md files * DP-4048 - Lineage styling * DP-4048 - Removing title yaml. * DP-4048 - Contact List - removed 'title' field from docs * DP-4176 - Image - documentation * DP-4176 - Video - documentation * DP-4176 - Documentation template * DP-4176 - Key Actions - Documentation * DP-4176 - Decorative Link - documentation * DP-4176 - Key Actions - adding contained type * DP-4167 - Callout Link - documentation * DP-4176 - Illustrated link - documentation * DP-4176 - Variant Documentation template * DP-4176 - Contact List - Updated variant documentation * DP-4176 - Sidebar Heading - documentation * DP-4176 - Comp Heading - documentation * DP-4176 - Variants - making link relative './' * DP-4176 - Icon Links - documentation * DP-4176 - Link List - documentation * DP-4176 - Link List - documention of Right Rail usage * DP-4176 - Action Finder - documentation * DP-4176 - Mapped Locations - documentation * DP-4176 - Variant template updated * DP-4176 - Mapped Locations - Removed title from contained version * DP-4176 - Callout Link External - removed variant * Mapped Locations - Fixing bug with assigning the colored background * DP-4176 - Split Columns - documentation * DP-4176 - Rich Text - documentation * DP-4176 - Download Link - documentation * DP-4176 - Forms Downloads - documentation * DP-4176 - Utility Panel - documentation * DP-4176 - Utility Nav - documentation * DP-4176 - Header - documentation * DP-4176 - Button Search - documentation * DP-4176 - Site Logo - documentation * DP-4176 - Header Search - documentation * DP-4176 - Main Nav - documentation * DP-4176 - Button - documentation * DP-4176 - Button - adding link option and correcting styling classes * DP-4176 - Button Link - marking it as depreciated * DP-4176 - Floating Action - updated to use just the button atom * DP-4176 - Floating Action - documentation * DP-4176 - Buttons - Updates to SCSS selectors * DP-4176 - Floating Action - correcting styling classes * DP-4176 - Footer - documentation * DP-4176 - Heading / Util Panel - marking as in Progress so we can update * DP-4176 - Button - re-adding support for the 'theme' variable * DP-4176 - Social Links - documentation * DP-4176 - Footer Links - documentation * DP-4176 - Buttons - leaving old styles for backward compatibilty * DP-4167 - Callout Link - moving the info variable to a title attribute * DP-4176 - Buttons - incorrect indentation * DP-4167 - Rich Text - updating to include all accepted patterns * DP-4176 - Rich text sub patterns - documentation * DP-4167 - figure - documentation and modified to use --left/--right classes * DP-4167 - Table - documentation * DP-4080 - Versioning Documentation (#504) * DP-4080 - Versioning - first draft * Dp-4080 - let's try that again after saving the file. * DP-4080 - Versioning - updating Major version text * Second Draft * DP-4080 - Versions - Third draft with examples versions * DP-4080 - Version - reducing importance of Terms * DP-4080 - Version - Edits after reviewing. * DP-4080 - Versions - missed a few * DP-4080 - Versions - Weird copy and paste issue. * DP-4080 - Tweak to Minor version description * DP-4080 - Version Docs - fourth version * DP-4080 - Version doc - version 5 * DP-4178 - HowTo / Details - documentation * DP-4178 - Rich Text - typo in documentation * DP-4178 - Page Header - documentation * DP-4178 - Header Tags - documenation * DP-4178 - Publish State - documentation * DP-4178 - Divider - documentation * DP-4178 - Contact List - updated documentation * DP-4178 - Doc Template - slight tweak * DP-4178 - Contact Us - documentation * DP-4178 - Contact Group - documentation * DP-4178 - Contact Group - removing structured content * DP-4178 - Colored Heading - Documentation * DP-4178 - Sticky Nav - Documentation * DP-4178 - Tabular Data - documentation * DP-4178 - Action Step - documentation * DP-4178 - Steps Ordered - documentation * DP-4178 - Steps Unordered - documentation * DP-4178 - Column Heading - documentation * DP-4177 - Column Heading - cleaning up code * DP-4176 - Callout Link - making CSS backward compatible * DP-4176 - Floating Action - making code backward compatible * DP-4177 - Button - fixed logic to use old "theme" variable for color. * DP-4178 - Button - fixing broken links * DP-4176 - Button - switching color back to theme include values * DP-4176 - Comp Heading - correcting id value * DP-4176 - Decorative Link - removing schema.org and using title * DP-4176 - Linked List - Update docs * DP-4176 - Mapped Locations - updated docs * DP-4176 - Page Banner - Updated Docs * DP-4176 - Services Template - updated docs * DP-4176 - Action Finder - updated docs * DP-4176 - Download Link - removing property * DP-4176 - Callout Link - Better descriptive text * DP-4176 - Video - updated documentation * DP-4176 - Decorative Link - updated docs * DP-4176 - Mapped Locations - adding more useage guidelines * DP-4176 - Button - updated docs * DP-4176 - Table - updated docs * DP-4178 - Details template - doc updates * DP-4178 - Page Header - doc updates * DP-4178 - Contact Us - updating docs * DP-4177 - removing un-used page header variant * DP-4178 - Contact Group - updated docs * DP-4178 - Contact Us - Changing description * DP-4178 - Colored Heading - updated docs and examples * DP-4178 - Column Heading - updated docs * DP-4178 - Column Heading - updated docs * Reverting DP-3527 and 3528 due to breaking changes * DP-4178 / DP-4177 Guide Page (#524) * Fix conditional logic boolean false * fix variable assignment, remove spaces * echo errors in red, success in green * fix validation of target environment * Update deploy script argument validation * Validate git push during deploy * Exit deploy script on failed build * Update docs * Fix syntax error. * Create a function for cleanup * Fix target URL * Create function for success / error logging * Update docs * Ensure that patterns are blown away before built * Remove exit on error log * Fix string comparison in log function * Add final error message to deploy script * Make wrong target remote repo message more helpful * Create CNAME for staging (test) * Test confirm functionality * Create CNAME for stage / prod * Add logic for final success message non/prod * Update readme with deploy, contrib, versions, license info See template link under readme > acknowledgements * Create contributing documentation * Create deploy documentation * Fix readme link typo * Fix link to contributing.md * Update github pages settings docs * Update Contributing md with Mayflower, PR tips. * Create PR template * Create issue template * Fix typo and make contributing language more friendly * Update steps to browse in readme. * Update readme browse Mayflower steps * Fix readme typo. * Add deployment steps to contributing.md * Fix typo, styling of deploy docs. * Add PHP version to readme. * Update built with pattern lab language in readme * Update mayflower artifacts text in readme. * Add git commit context to contributing docs * Format readme * Describe project file structure in contributing.md * Format contributing.md * Clarify github pull request buttons in contributing md * Remove acknowledgements from contributing TOC * Format prerequisite in deploy docs * Link to gulp readme from deploy docs * Log output when production deploy aborted * Use main repo as example in deploy script comments * Make cname a parameter for deploy script, required for prod only * Move CONTRIBUTING.md into .github directory * Remove written descriptions of Github's UI, replace with link to docs * Make CONTRIBUTING.md branching language more consistent with git * Move pattern lab docs to first step in CONTRIBUTING > working with PL * Remove vague language in CONTRIBUTING.md * Clarify Mayflower Artifacts in readme * Make CONTRIBUTING.md > keeping your fork in sync explanation more clear. * Move environment setup and demo install instructions to own docs * Group steps in CONTRIBUTING.md * Fix link to CONTRIBUTING.md after move to /.github * Simplify readme install / contribute / deploy sections * Remove link to personal fork, but keep repo name, in deploy docs * Fix mayflower-artifacts url in readme * Update the deploy success message to use cname if present * Fix cname conditional logic in deploy script. * Use [-c] rather tha [-cname] as parameter for gh pages deploy script * Fix typo in success message for cname * Fix deploy script config for url.domain/assetsPath when cname passed * Improve script logging: hide lengthy status/success, color + tag logs. * Fix typos. * Fix typo in docs for [-t] argument. * Move log prior to command for creating cname in deploy script. * Avoid having to escape / in deploy script > assetsPath var Use ! as delimeter, see: https://coderwall.com/p/khdkuw/delimiters-in-sed-substitution * Allow assetsPath to be passed with cname flag * Accept [-a] argument in deploy script * Fix deploy script [-t] flag to be target remote repo *owner* This seems to have reverted to a prior state somehow. * Remove extra " from assetsPath in url.json * Update [-c] validation log to reflect [-c] vs [-cname] * Add developer deploy docs note about cname and assetPaths flags. * Uncomment script. So. It. Does. Things. (silly) * Link to mayflower artifacts docs from readme (vs duplicating content) * DP-4048 - Annotations - updating to look for JS classes used. * DP-4048 - Annotations - The extra html added breaks the styles * Dp-4048 - Extra Js - removing unused JS files * DP-4048 - updating Styling of Pattern Info panel * DP-4048 - Contact List - Documentation * DP-4048 - Image * DP-4048 - Pattern Documentation - Remving Usage Guidelines. * DP-4048 - additional tweaks to md files * DP-4048 - Lineage styling * DP-4048 - Removing title yaml. * Make all intra-docs links relative * Fix deploy docs links * Update clone steps to be more clear * Ensure branch is clean after deploy, fix typos * Add patternlab task to deafult gulp ( = always generate patterns) * Try gulp prod in deploy script * Ensure public directory gets cleaned out prior to generation * DP-4048 - Contact List - removed 'title' field from docs * DP-4176 - Service Page and Template - documentation * DP-4176 - Page Banner - Documentation * DP-4048 Establish format for pattern docs (#515) * DP-4048 - Annotations - updating to look for JS classes used. * DP-4048 - Annotations - The extra html added breaks the styles * Dp-4048 - Extra Js - removing unused JS files * DP-4048 - updating Styling of Pattern Info panel * DP-4048 - Contact List - Documentation * DP-4048 - Image * DP-4048 - Pattern Documentation - Remving Usage Guidelines. * DP-4048 - additional tweaks to md files * DP-4048 - Lineage styling * DP-4048 - Removing title yaml. * DP-4048 - Contact List - removed 'title' field from docs * DP-4176 - Image - documentation * DP-4176 - Video - documentation * DP-4176 - Documentation template * DP-4176 - Key Actions - Documentation * DP-4176 - Decorative Link - documentation * DP-4176 - Key Actions - adding contained type * DP-4167 - Callout Link - documentation * DP-4176 - Illustrated link - documentation * DP-4176 - Variant Documentation template * DP-4176 - Contact List - Updated variant documentation * DP-4176 - Sidebar Heading - documentation * DP-4176 - Comp Heading - documentation * DP-4176 - Variants - making link relative './' * DP-4176 - Icon Links - documentation * DP-4176 - Link List - documentation * DP-4176 - Link List - documention of Right Rail usage * DP-4176 - Action Finder - documentation * DP-4176 - Mapped Locations - documentation * DP-4176 - Variant template updated * DP-4176 - Mapped Locations - Removed title from contained version * DP-4176 - Callout Link External - removed variant * Mapped Locations - Fixing bug with assigning the colored background * DP-4176 - Split Columns - documentation * DP-4176 - Rich Text - documentation * DP-4176 - Download Link - documentation * DP-4176 - Forms Downloads - documentation * DP-4176 - Utility Panel - documentation * DP-4176 - Utility Nav - documentation * DP-4176 - Header - documentation * DP-4176 - Button Search - documentation * DP-4176 - Site Logo - documentation * DP-4176 - Header Search - documentation * DP-4176 - Main Nav - documentation * DP-4176 - Button - documentation * DP-4176 - Button - adding link option and correcting styling classes * DP-4176 - Button Link - marking it as depreciated * DP-4176 - Floating Action - updated to use just the button atom * DP-4176 - Floating Action - documentation * DP-4176 - Buttons - Updates to SCSS selectors * DP-4176 - Floating Action - correcting styling classes * DP-4176 - Footer - documentation * DP-4176 - Heading / Util Panel - marking as in Progress so we can update * DP-4176 - Button - re-adding support for the 'theme' variable * DP-4176 - Social Links - documentation * DP-4176 - Footer Links - documentation * DP-4176 - Buttons - leaving old styles for backward compatibilty * DP-4167 - Callout Link - moving the info variable to a title attribute * DP-4176 - Buttons - incorrect indentation * DP-4167 - Rich Text - updating to include all accepted patterns * DP-4176 - Rich text sub patterns - documentation * DP-4167 - figure - documentation and modified to use --left/--right classes * DP-4167 - Table - documentation * DP-4080 - Versioning Documentation (#504) * DP-4080 - Versioning - first draft * Dp-4080 - let's try that again after saving the file. * DP-4080 - Versioning - updating Major version text * Second Draft * DP-4080 - Versions - Third draft with examples versions * DP-4080 - Version - reducing importance of Terms * DP-4080 - Version - Edits after reviewing. * DP-4080 - Versions - missed a few * DP-4080 - Versions - Weird copy and paste issue. * DP-4080 - Tweak to Minor version description * DP-4080 - Version Docs - fourth version * DP-4080 - Version doc - version 5 * DP-4178 - HowTo / Details - documentation * DP-4178 - Rich Text - typo in documentation * DP-4178 - Page Header - documentation * DP-4178 - Header Tags - documenation * DP-4178 - Publish State - documentation * DP-4178 - Divider - documentation * DP-4178 - Contact List - updated documentation * DP-4178 - Doc Template - slight tweak * DP-4178 - Contact Us - documentation * DP-4178 - Contact Group - documentation * DP-4178 - Contact Group - removing structured content * DP-4178 - Colored Heading - Documentation * DP-4178 - Sticky Nav - Documentation * DP-4178 - Tabular Data - documentation * DP-4178 - Action Step - documentation * DP-4178 - Steps Ordered - documentation * DP-4178 - Steps Unordered - documentation * DP-4178 - Stacked Row - documentation * DP-4187 - Guide - Documentation * DP-4178 - Emergency Header - documentation * DP-4177 - Emergency Header - switching divs to spans * DP-4178 - Emergency Alerts - documentation * 4178 - Emergency Header - documentation 2 * DP-4178 - Jump Links - documentation * DP-4177 - Jump Links - Adding missing "info" variable to links * DP-4178 - Split Columns - fixing indentation * DP-4178 - Stacked Row Section - documentation * DP-4178 - Illustrated Header - documentation * DP-4177 - Suggested Pages - Fixing variables for decorative and illustrated links * DP-4178 - Suggested Pages - documentation * DP-4178 - Callout Stats - documentation * DP-4177 - Guide Page - moving callout stat outside of Rich Text. * DP-4178 - Callout Alert - documentation * DP-4177 - Callout Alert - removed unused variables * DP-4178 - Callout Time - documentation * DP-4178 - Button Alert - documentation * DP-4178 - Emergency Alert - documentation * DP-4178 - Emergency Alerts - updating documentation * DP-4178 - Link - documentation * DP-4177 - Link - correcting variables to match best practice * DP-4177 - Link - forgot to save a change * DP-4178 - Column Heading - documentation * DP-4177 - Column Heading - cleaning up code * DP-4176 - Callout Link - making CSS backward compatible * DP-4176 - Floating Action - making code backward compatible * DP-4177 - Button - fixed logic to use old "theme" variable for color. * DP-4178 - Button - fixing broken links * DP-4176 - Button - switching color back to theme include values * DP-4176 - Comp Heading - correcting id value * DP-4176 - Decorative Link - removing schema.org and using title * DP-4176 - Linked List - Update docs * DP-4176 - Mapped Locations - updated docs * DP-4176 - Page Banner - Updated Docs * DP-4176 - Services Template - updated docs * DP-4176 - Action Finder - updated docs * DP-4176 - Download Link - removing property * DP-4176 - Callout Link - Better descriptive text * DP-4176 - Video - updated documentation * DP-4176 - Decorative Link - updated docs * DP-4176 - Mapped Locations - adding more useage guidelines * DP-4176 - Button - updated docs * DP-4176 - Table - updated docs * DP-4178 - Details template - doc updates * DP-4178 - Page Header - doc updates * DP-4178 - Contact Us - updating docs * DP-4177 - removing un-used page header variant * DP-4178 - Contact Group - updated docs * DP-4178 - Contact Us - Changing description * DP-4178 - Colored Heading - updated docs and examples * DP-4178 - Column Heading - updated docs * DP-4178 - Column Heading - updated docs * DP-4178 - Guide page - adding back to top button * DP-4178 - Stack row sections - updated docs * DP-4178 - Stacked row section - updated docs * DP-4178 - Emergency Alerts - updated docs * DP-4177 - Illustrated Header - renaming bgTitle to bgInfo * DP-4178 - Suggested Pages - updated docs * DP-4178 - doc templates - updated variant to use code block * Remove phing deploy step that edits env.js asset paths for drupal (#544) * DP-4181 Document the contribution process for issues, feature requests, PRs (#532) * Add business and more specific contribution docs Borrowed heavily from bootstrap's contrib docs * Make build issue label more general: 'gulp' -> 'build' * Remove browser bug report section * Rename setting up your environment -> machine setup in contrib docs * Update contrib docs based on internal review * DP-4178 Location page (#527) * Update readme browse Mayflower steps * Fix readme typo. * Add deployment steps to contributing.md * Fix typo, styling of deploy docs. * Add PHP version to readme. * Update built with pattern lab language in readme * Update mayflower artifacts text in readme. * Add git commit context to contributing docs * Format readme * Describe project file structure in contributing.md * Format contributing.md * Clarify github pull request buttons in contributing md * Remove acknowledgements from contributing TOC * Format prerequisite in deploy docs * Link to gulp readme from deploy docs * Log output when production deploy aborted * Use main repo as example in deploy script comments * Make cname a parameter for deploy script, required for prod only * Move CONTRIBUTING.md into .github directory * Remove written descriptions of Github's UI, replace with link to docs * Make CONTRIBUTING.md branching language more consistent with git * Move pattern lab docs to first step in CONTRIBUTING > working with PL * Remove vague language in CONTRIBUTING.md * Clarify Mayflower Artifacts in readme * Make CONTRIBUTING.md > keeping your fork in sync explanation more clear. * Move environment setup and demo install instructions to own docs * Group steps in CONTRIBUTING.md * Fix link to CONTRIBUTING.md after move to /.github * Simplify readme install / contribute / deploy sections * Remove link to personal fork, but keep repo name, in deploy docs * Fix mayflower-artifacts url in readme * Update the deploy success message to use cname if present * Fix cname conditional logic in deploy script. * Use [-c] rather tha [-cname] as parameter for gh pages deploy script * Fix typo in success message for cname * Fix deploy script config for url.domain/assetsPath when cname passed * Improve script logging: hide lengthy status/success, color + tag logs. * Fix typos. * Fix typo in docs for [-t] argument. * Move log prior to command for creating cname in deploy script. * Avoid having to escape / in deploy script > assetsPath var Use ! as delimeter, see: https://coderwall.com/p/khdkuw/delimiters-in-sed-substitution * Allow assetsPath to be passed with cname flag * Accept [-a] argument in deploy script * Fix deploy script [-t] flag to be target remote repo *owner* This seems to have reverted to a prior state somehow. * Remove extra " from assetsPath in url.json * Update [-c] validation log to reflect [-c] vs [-cname] * Add developer deploy docs note about cname and assetPaths flags. * Uncomment script. So. It. Does. Things. (silly) * Link to mayflower artifacts docs from readme (vs duplicating content) * DP-4048 - Annotations - updating to look for JS classes used. * DP-4048 - Annotations - The extra html added breaks the styles * Dp-4048 - Extra Js - removing unused JS files * DP-4048 - updating Styling of Pattern Info panel * DP-4048 - Contact List - Documentation * DP-4048 - Image * DP-4048 - Pattern Documentation - Remving Usage Guidelines. * DP-4048 - additional tweaks to md files * DP-4048 - Lineage styling * DP-4048 - Removing title yaml. * Make all intra-docs links relative * Fix deploy docs links * Update clone steps to be more clear * Ensure branch is clean after deploy, fix typos * Add patternlab task to deafult gulp ( = always generate patterns) * Try gulp prod in deploy script * Ensure public directory gets cleaned out prior to generation * DP-4048 - Contact List - removed 'title' field from docs * DP-4176 - Service Page and Template - documentation * DP-4176 - Page Banner - Documentation * DP-4048 Establish format for pattern docs (#515) * DP-4048 - Annotations - updating to look for JS classes used. * DP-4048 - Annotations - The extra html added breaks the styles * Dp-4048 - Extra Js - removing unused JS files * DP-4048 - updating Styling of Pattern Info panel * DP-4048 - Contact List - Documentation * DP-4048 - Image * DP-4048 - Pattern Documentation - Remving Usage Guidelines. * DP-4048 - additional tweaks to md files * DP-4048 - Lineage styling * DP-4048 - Removing title yaml. * DP-4048 - Contact List - removed 'title' field from docs * DP-4176 - Image - documentation * DP-4176 - Video - documentation * DP-4176 - Documentation template * DP-4176 - Key Actions - Documentation * DP-4176 - Decorative Link - documentation * DP-4176 - Key Actions - adding contained type * DP-4167 - Callout Link - documentation * DP-4176 - Illustrated link - documentation * DP-4176 - Variant Documentation template * DP-4176 - Contact List - Updated variant documentation * DP-4176 - Sidebar Heading - documentation * DP-4176 - Comp Heading - documentation * DP-4176 - Variants - making link relative './' * DP-4176 - Icon Links - documentation * DP-4176 - Link List - documentation * DP-4176 - Link List - documention of Right Rail usage * DP-4176 - Action Finder - documentation * DP-4176 - Mapped Locations - documentation * DP-4176 - Variant template updated * DP-4176 - Mapped Locations - Removed title from contained version * DP-4176 - Callout Link External - removed variant * Mapped Locations - Fixing bug with assigning the colored background * DP-4176 - Split Columns - documentation * DP-4176 - Rich Text - documentation * DP-4176 - Download Link - documentation * DP-4176 - Forms Downloads - documentation * DP-4176 - Utility Panel - documentation * DP-4176 - Utility Nav - documentation * DP-4176 - Header - documentation * DP-4176 - Button Search - documentation * DP-4176 - Site Logo - documentation * DP-4176 - Header Search - documentation * DP-4176 - Main Nav - documentation * DP-4176 - Button - documentation * DP-4176 - Button - adding link option and correcting styling classes * DP-4176 - Button Link - marking it as depreciated * DP-4176 - Floating Action - updated to use just the button atom * DP-4176 - Floating Action - documentation * DP-4176 - Buttons - Updates to SCSS selectors * DP-4176 - Floating Action - correcting styling classes * DP-4176 - Footer - documentation * DP-4176 - Heading / Util Panel - marking as in Progress so we can update * DP-4176 - Button - re-adding support for the 'theme' variable * DP-4176 - Social Links - documentation * DP-4176 - Footer Links - documentation * DP-4176 - Buttons - leaving old styles for backward compatibilty * DP-4167 - Callout Link - moving the info variable to a title attribute * DP-4176 - Buttons - incorrect indentation * DP-4167 - Rich Text - updating to include all accepted patterns * DP-4176 - Rich text sub patterns - documentation * DP-4167 - figure - documentation and modified to use --left/--right classes * DP-4167 - Table - documentation * DP-4080 - Versioning Documentation (#504) * DP-4080 - Versioning - first draft * Dp-4080 - let's try that again after saving the file. * DP-4080 - Versioning - updating Major version text * Second Draft * DP-4080 - Versions - Third draft with examples versions * DP-4080 - Version - reducing importance of Terms * DP-4080 - Version - Edits after reviewing. * DP-4080 - Versions - missed a few * DP-4080 - Versions - Weird copy and paste issue. * DP-4080 - Tweak to Minor version description * DP-4080 - Version Docs - fourth version * DP-4080 - Version doc - version 5 * DP-4178 - HowTo / Details - documentation * DP-4178 - Rich Text - typo in documentation * DP-4178 - Page Header - documentation * DP-4178 - Header Tags - documenation * DP-4178 - Publish State - documentation * DP-4178 - Divider - documentation * DP-4178 - Contact List - updated documentation * DP-4178 - Doc Template - slight tweak * DP-4178 - Contact Us - documentation * DP-4178 - Contact Group - documentation * DP-4178 - Contact Group - removing structured content * DP-4178 - Colored Heading - Documentation * DP-4178 - Sticky Nav - Documentation * DP-4178 - Tabular Data - documentation * DP-4178 - Action Step - documentation * DP-4178 - Steps Ordered - documentation * DP-4178 - Steps Unordered - documentation * DP-4178 - Stacked Row - documentation * DP-4187 - Guide - Documentation * DP-4178 - Emergency Header - documentation * DP-4177 - Emergency Header - switching divs to spans * DP-4178 - Emergency Alerts - documentation * 4178 - Emergency Header - documentation 2 * DP-4178 - Jump Links - documentation * DP-4177 - Jump Links - Adding missing "info" variable to links * DP-4178 - Split Columns - fixing indentation * DP-4178 - Stacked Row Section - documentation * DP-4178 - Illustrated Header - documentation * DP-4177 - Suggested Pages - Fixing variables for decorative and illustrated links * DP-4178 - Suggested Pages - documentation * DP-4178 - Callout Stats - documentation * DP-4177 - Guide Page - moving callout stat outside of Rich Text. * DP-4178 - Callout Alert - documentation * DP-4177 - Callout Alert - removed unused variables * DP-4178 - Callout Time - documentation * DP-4178 - Button Alert - documentation * DP-4178 - Emergency Alert - documentation * DP-4178 - Emergency Alerts - updating documentation * DP-4178 - Link - documentation * DP-4177 - Link - correcting variables to match best practice * DP-4177 - Link - forgot to save a change * DP-4177 - Button - fixed logic to use old "theme" variable for color. * DP-4178 - Button - fixing broken links * DP-4178 - Column Heading - documentation * DP-4177 - Column Heading - cleaning up code * DP-4178 - Location Template - documentation * DP-4178 - Location Pages - Documentation * DP-4178 - Header Alert - documentation * DP-4177 - Header Alert - adding "info" variable for decorative link * DP-4178 - Page Header - location variant documentation * DP-4178 - Location Banner - documentation * DP-4177 - Location Banner - correcting variable name * DP-4178 - Google Map - documentation * DP-4178 - Image Promos - documentation * DP-4178 - Image Promo - documentation * DP-4177 - Image Promo - switching 'type' for 'info' for the title link * DP-4178 - Image Promos - documentation * DP-4177 - Link - still fixing logic to switch from string to boolean * DP-4178 - Event Teaser - documentation * DP-4178 - Event Listing - documentation * DP-4178 - Location Icons - documentation * DP-4176 - Callout Link - making CSS backward compatible * DP-4176 - Floating Action - making code backward compatible * DP-4177 - Button - fixed logic to use old "theme" variable for color. * DP-4178 - Button - fixing broken links * DP-4176 - Button - switching color back to theme include values * DP-4176 - Comp Heading - correcting id value * DP-4176 - Decorative Link - removing schema.org and using title * DP-4176 - Linked List - Update docs * DP-4176 - Mapped Locations - updated docs * DP-4176 - Page Banner - Updated Docs * DP-4176 - Services Template - updated docs * DP-4176 - Action Finder - updated docs * DP-4176 - Download Link - removing property * DP-4176 - Callout Link - Better descriptive text * DP-4176 - Video - updated documentation * DP-4176 - Decorative Link - updated docs * DP-4176 - Mapped Locations - adding more useage guidelines * DP-4176 - Button - updated docs * DP-4176 - Table - updated docs * DP-4178 - Details template - doc updates * DP-4178 - Page Header - doc updates * DP-4178 - Contact Us - updating docs * DP-4177 - removing un-used page header variant * DP-4178 - Contact Group - updated docs * DP-4178 - Contact Us - Changing description * DP-4178 - Colored Heading - updated docs and examples * DP-4178 - Column Heading - updated docs * DP-4178 - Column Heading - updated docs * DP-4178 - Stack row sections - updated docs * DP-4178 - Guide page - adding back to top button * DP-4178 - Stack row sections - updated docs * DP-4178 - Stacked row section - updated docs * DP-4178 - Emergency Alerts - updated docs * DP-4177 - Illustrated Header - renaming bgTitle to bgInfo * DP-4178 - Suggested Pages - updated docs * DP-4178 - Header Alert - replacing guid with id * DP-4177 - location template - fixing data json content * DP-4178 - Details Template - added twig docs links placeholders * DP-4178 - Howto & Location pages - Adding extends copy to description * DP-4178 - Location template - adding twig blocks * DP-4178 - Google Maps - updated docs * DP-4178 - Image Promos - updated docs * DP-4178 - Event Teaser - updated docs * DP-4178 - Event Listing - updated docs * DP-4178 - Location Template - removing variants section * DP-4178 topic page (#529) * Format prerequisite in deploy docs * Link to gulp readme from deploy docs * Log output when production deploy aborted * Use main repo as example in deploy script comments * Make cname a parameter for deploy script, required for prod only * Move CONTRIBUTING.md into .github directory * Remove written descriptions of Github's UI, replace with link to docs * Make CONTRIBUTING.md branching language more consistent with git * Move pattern lab docs to first step in CONTRIBUTING > working with PL * Remove vague language in CONTRIBUTING.md * Clarify Mayflower Artifacts in readme * Make CONTRIBUTING.md > keeping your fork in sync explanation more clear. * Move environment setup and demo install instructions to own docs * Group steps in CONTRIBUTING.md * Fix link to CONTRIBUTING.md after move to /.github * Simplify readme install / contribute / deploy sections * Remove link to personal fork, but keep repo name, in deploy docs * Fix mayflower-artifacts url in readme * Update the deploy success message to use cname if present * Fix cname conditional logic in deploy script. * Use [-c] rather tha [-cname] as parameter for gh pages deploy script * Fix typo in success message for cname * Fix deploy script config for url.domain/assetsPath when cname passed * Improve script logging: hide lengthy status/success, color + tag logs. * Fix typos. * Fix typo in docs for [-t] argument. * Move log prior to command for creating cname in deploy script. * Avoid having to escape / in deploy script > assetsPath var Use ! as delimeter, see: https://coderwall.com/p/khdkuw/delimiters-in-sed-substitution * Allow assetsPath to be passed with cname flag * Accept [-a] argument in deploy script * Fix deploy script [-t] flag to be target remote repo *owner* This seems to have reverted to a prior state somehow. * Remove extra " from assetsPath in url.json * Update [-c] validation log to reflect [-c] vs [-cname] * Add developer deploy docs note about cname and assetPaths flags. * Uncomment script. So. It. Does. Things. (silly) * Link to mayflower artifacts docs from readme (vs duplicating content) * DP-4048 - Annotations - updating to look for JS classes used. * DP-4048 - Annotations - The extra html added breaks the styles * Dp-4048 - Extra Js - removing unused JS files * DP-4048 - updating Styling of Pattern Info panel * DP-4048 - Contact List - Documentation * DP-4048 - Image * DP-4048 - Pattern Documentation - Remving Usage Guidelines. * DP-4048 - additional tweaks to md files * DP-4048 - Lineage styling * DP-4048 - Removing title yaml. * Make all intra-docs links relative * Fix deploy docs links * Update clone steps to be more clear * Ensure branch is clean after deploy, fix typos * Add patternlab task to deafult gulp ( = always generate patterns) * Try gulp prod in deploy script * Ensure public directory gets cleaned out prior to generation * DP-4048 - Contact List - removed 'title' field from docs * DP-4176 - Service Page and Template - documentation * DP-4176 - Page Banner - Documentation * DP-4048 Establish format for pattern docs (#515) * DP-4048 - Annotations - updating to look for JS classes used. * DP-4048 - Annotations - The extra html added breaks the styles * Dp-4048 - Extra Js - removing unused JS files * DP-4048 - updating Styling of Pattern Info panel * DP-4048 - Contact List - Documentation * DP-4048 - Image * DP-4048 - Pattern Documentation - Remving Usage Guidelines. * DP-4048 - additional tweaks to md files * DP-4048 - Lineage styling * DP-4048 - Removing title yaml. * DP-4048 - Contact List - removed 'title' field from docs * DP-4176 - Image - documentation * DP-4176 - Video - documentation * DP-4176 - Documentation template * DP-4176 - Key Actions - Documentation * DP-4176 - Decorative Link - documentation * DP-4176 - Key Actions - adding contained type * DP-4167 - Callout Link - documentation * DP-4176 - Illustrated link - documentation * DP-4176 - Variant Documentation template * DP-4176 - Contact List - Updated variant documentation * DP-4176 - Sidebar Heading - documentation * DP-4176 - Comp Heading - documentation * DP-4176 - Variants - making link relative './' * DP-4176 - Icon Links - documentation * DP-4176 - Link List - documentation * DP-4176 - Link List - documention of Right Rail usage * DP-4176 - Action Finder - documentation * DP-4176 - Mapped Locations - documentation * DP-4176 - Variant template updated * DP-4176 - Mapped Locations - Removed title from contained version * DP-4176 - Callout Link External - removed variant * Mapped Locations - Fixing bug with assigning the colored background * DP-4176 - Split Columns - documentation * DP-4176 - Rich Text - documentation * DP-4176 - Download Link - documentation * DP-4176 - Forms Downloads - documentation * DP-4176 - Utility Panel - documentation * DP-4176 - Utility Nav - documentation * DP-4176 - Header - documentation * DP-4176 - Button Search - documentation * DP-4176 - Site Logo - documentation * DP-4176 - Header Search - documentation * DP-4176 - Main Nav - documentation * DP-4176 - Button - documentation * DP-4176 - Button - adding link option and correcting styling classes * DP-4176 - Button Link - marking it as depreciated * DP-4176 - Floating Action - updated to use just the button atom * DP-4176 - Floating Action - documentation * DP-4176 - Buttons - Updates to SCSS selectors * DP-4176 - Floating Action - correcting styling classes * DP-4176 - Footer - documentation * DP-4176 - Heading / Util Panel - marking as in Progress so we can update * DP-4176 - Button - re-adding support for the 'theme' variable * DP-4176 - Social Links - documentation * DP-4176 - Footer Links - documentation * DP-4176 - Buttons - leaving old styles for backward compatibilty * DP-4167 - Callout Link - moving the info variable to a title attribute * DP-4176 - Buttons - incorrect indentation * DP-4167 - Rich Text - updating to include all accepted patterns * DP-4176 - Rich text sub patterns - documentation * DP-4167 - figure - documentation and modified to use --left/--right classes * DP-4167 - Table - documentation * DP-4080 - Versioning Documentation (#504) * DP-4080 - Versioning - first draft * Dp-4080 - let's try that again after saving the file. * DP-4080 - Versioning - updating Major version text * Second Draft * DP-4080 - Versions - Third draft with examples versions * DP-4080 - Version - reducing importance of Terms * DP-4080 - Version - Edits after reviewing. * DP-4080 - Versions - missed a few * DP-4080 - Versions - Weird copy and paste issue. * DP-4080 - Tweak to Minor version description * DP-4080 - Version Docs - fourth version * DP-4080 - Version doc - version 5 * DP-4178 - HowTo / Details - documentation * DP-4178 - Rich Text - typo in documentation * DP-4178 - Page Header - documentation * DP-4178 - Header Tags - documenation * DP-4178 - Publish State - documentation * DP-4178 - Divider - documentation * DP-4178 - Contact List - updated documentation * DP-4178 - Doc Template - slight tweak * DP-4178 - Contact Us - documentation * DP-4178 - Contact Group - documentation * DP-4178 - Contact Group - removing structured content * DP-4178 - Colored Heading - Documentation * DP-4178 - Sticky Nav - Documentation * DP-4178 - Tabular Data - documentation * DP-4178 - Action Step - documentation * DP-4178 - Steps Ordered - documentation * DP-4178 - Steps Unordered - documentation * DP-4178 - Stacked Row - documentation * DP-4187 - Guide - Documentation * DP-4178 - Emergency Header - documentation * DP-4177 - Emergency Header - switching divs to spans * DP-4178 - Emergency Alerts - documentation * 4178 - Emergency Header - documentation 2 * DP-4178 - Jump Links - documentation * DP-4177 - Jump Links - Adding missing "info" variable to links * DP-4178 - Split Columns - fixing indentation * DP-4178 - Stacked Row Section - documentation * DP-4178 - Illustrated Header - documentation * DP-4177 - Suggested Pages - Fixing variables for decorative and illustrated links * DP-4178 - Suggested Pages - documentation * DP-4178 - Callout Stats - documentation * DP-4177 - Guide Page - moving callout stat outside of Rich Text. * DP-4178 - Callout Alert - documentation * DP-4177 - Callout Alert - removed unused variables * DP-4178 - Callout Time - documentation * DP-4178 - Button Alert - documentation * DP-4178 - Emergency Alert - documentation * DP-4178 - Emergency Alerts - updating documentation * DP-4178 - Link - documentation * DP-4177 - Link - correcting variables to match best practice * DP-4177 - Link - forgot to save a change * DP-4177 - Button - fixed logic to use old "theme" variable for color. * DP-4178 - Button - fixing broken links * DP-4178 - Column Heading - documentation * DP-4177 - Column Heading - cleaning up code * DP-4178 - Location Template - documentation * DP-4178 - Location Pages - Documentation * DP-4178 - Header Alert - documentation * DP-4177 - Header Alert - adding "info" variable for decorative link * DP-4178 - Page Header - location variant documentation * DP-4178 - Location Banner - documentation * DP-4177 - Location Banner - correcting variable name * DP-4178 - Google Map - documentation * DP-4178 - Image Promos - documentation * DP-4178 - Image Promo - documentation * DP-4177 - Image Promo - switching 'type' for 'info' for the title link * DP-4178 - Image Promos - documentation * DP-4177 - Link - still fixing logic to switch from string to boolean * DP-4178 - Event Teaser - documentation * DP-4178 - Event Listing - documentation * DP-4178 - Location Icons - documentation * DP-4178 - Topic Page - documentation * DP-4177 - Single Column Template - adding header and footer blocks * DP-4178 - Single Column Template - documentation * DP-4178 - Sections Three Up - documentation * DP-4178 - Section Links - documentation * DP-4178 - Cat Icon - documentation * DP-4177 - Icons - removing unneccassary documentations for SVG icons * DP-4176 - Callout Link - making CSS backward compatible * DP-4176 - Floating Action - making code backward compatible * DP-4177 - Button - fixed logic to use old "theme" variable for color. * DP-4178 - Button - fixing broken links * DP-4176 - Button - switching color back to theme include values * DP-4176 - Comp Heading - correcting id value * DP-4176 - Decorative Link - removing schema.org and using title * DP-4176 - Linked List - Update docs * DP-4176 - Mapped Locations - updated docs * DP-4176 - Page Banner - Updated Docs * DP-4176 - Services Template - updated docs * DP-4176 - Action Finder - updated docs * DP-4176 - Download Link - removing property * DP-4176 - Callout Link - Better descriptive text * DP-4176 - Video - updated documentation * DP-4176 - Decorative Link - updated docs * DP-4176 - Mapped Locations - adding more useage guidelines * DP-4176 - Button - updated docs * DP-4176 - Table - updated docs * DP-4178 - Details template - doc updates * DP-4178 - Page Header - doc updates * DP-4178 - Contact Us - updating docs * DP-4177 - removing un-used page header variant * DP-4178 - Contact Group - updated docs * DP-4178 - Contact Us - Changing description * DP-4178 - Colored Heading - updated docs and examples * DP-4178 - Column Heading - updated docs * DP-4178 - Column Heading - updated docs * DP-4178 - Stack row sections - updated docs * DP-4178 - Guide page - adding back to top button * DP-4178 - Stack row sections - updated docs * DP-4178 - Stacked row section - updated docs * DP-4178 - Emergency Alerts - updated docs …
* DP-4178 - Action Step - documentation * DP-4178 - Steps Ordered - documentation * DP-4178 - Steps Unordered - documentation * DP-4178 - Stacked Row - documentation * DP-4187 - Guide - Documentation * DP-4178 - Emergency Header - documentation * DP-4177 - Emergency Header - switching divs to spans * DP-4178 - Emergency Alerts - documentation * 4178 - Emergency Header - documentation 2 * DP-4178 - Jump Links - documentation * DP-4177 - Jump Links - Adding missing "info" variable to links * DP-4178 - Split Columns - fixing indentation * DP-4178 - Stacked Row Section - documentation * DP-4178 - Illustrated Header - documentation * DP-4177 - Suggested Pages - Fixing variables for decorative and illustrated links * DP-4178 - Suggested Pages - documentation * DP-4178 - Callout Stats - documentation * DP-4177 - Guide Page - moving callout stat outside of Rich Text. * DP-4178 - Callout Alert - documentation * DP-4177 - Callout Alert - removed unused variables * DP-4178 - Callout Time - documentation * DP-4178 - Button Alert - documentation * DP-4178 - Emergency Alert - documentation * DP-4178 - Emergency Alerts - updating documentation * DP-4178 - Link - documentation * DP-4177 - Link - correcting variables to match best practice * DP-4177 - Link - forgot to save a change * DP-4177 - Button - fixed logic to use old "theme" variable for color. * DP-4178 - Button - fixing broken links * DP-4178 - Column Heading - documentation * DP-4177 - Column Heading - cleaning up code * DP-4178 - Location Template - documentation * DP-4178 - Location Pages - Documentation * DP-4178 - Header Alert - documentation * DP-4177 - Header Alert - adding "info" variable for decorative link * DP-4178 - Page Header - location variant documentation * DP-3235 Added aria-label for file download links (#522) * DP-3235 Added aria-label for file download links * DP-3235 Adjusted file download links a11y approach * DP-4178 - Location Banner - documentation * DP-4177 - Location Banner - correcting variable name * DP-4178 - Google Map - documentation * DP-4178 - Image Promos - documentation * DP-4178 - Image Promo - documentation * DP-4177 - Image Promo - switching 'type' for 'info' for the title link * DP-4178 - Image Promos - documentation * DP-4177 - Link - still fixing logic to switch from string to boolean * DP-4178 - Event Teaser - documentation * DP-4178 - Event Listing - documentation * DP-4178 - Location Icons - documentation * DP-4103 - Add `align-self` style to section title to fix wrapping. (#526) * DP-4178 - Topic Page - documentation * DP-4177 - Single Column Template - adding header and footer blocks * DP-4178 - Single Column Template - documentation * DP-4178 - Sections Three Up - documentation * DP-4178 - Section Links - documentation * DP-4178 - Cat Icon - documentation * DP-4177 - Icons - removing unneccassary documentations for SVG icons * DP-4178 - Page Header for Event - documentation * DP-4178 - Page header for location - fixing documentation * DP-4178 - Events - Documentation * DP-4178 - Page Overview - documentation * DP-4178 - Event Template - documentation * DP-4177 - Event Template - extending sidebar to have optional content * DP-4178 - Labelled list - documentation * Dp-4178 - Event Listing - Post Content versions * DP-4176 - Callout Link - making CSS backward compatible * DP-4176 - Floating Action - making code backward compatible * DP-4178 - Org Page - documentation * DP-4319 - Org and Details - removing breadcrumbs from data object * DP-4323 - Detail Page - documentation * DP-4323 - Two column templates - documentation * DP-4323 - Press Release - documentation * DP-4323 - Press Template - documentation * DP-4323 - Service Template - fixing typo in documentation * DP-4323 - Press Status - documentation * DP-4323 - Event Listing - tweak to post content variant * DP-4323 - Two Column Templates - adding header and footer blocks * DP-4177 - Button - fixed logic to use old "theme" variable for color. * DP-4178 - Button - fixing broken links * DP-4176 - Button - switching color back to theme include values * DP-4176 - Comp Heading - correcting id value * DP-4176 - Decorative Link - removing schema.org and using title * DP-4323 - Press Status - Variant documentation * DP-4323 - Personal Message - documentation * DP-4323 - Press Listing - documentation * DP-4323 - Press Teaser - documentation * DP-4176 - Linked List - Update docs * DP-4176 - Mapped Locations - updated docs * DP-4176 - Page Banner - Updated Docs * DP-4176 - Services Template - updated docs * DP-4176 - Action Finder - updated docs * DP-4176 - Download Link - removing property * DP-4176 - Callout Link - Better descriptive text * DP-4176 - Video - updated documentation * DP-4176 - Decorative Link - updated docs * DP-4176 - Mapped Locations - adding more useage guidelines * DP-4323 - Event Listing - documentation * DP-4323 - Event Filters - documentation * DP-3223 - Results Heading - documentation * DP-4323 - Pagination - documentation * DP-4323 - Sort Results - documentation * DP-4323 - Sort Button - documentation * DP-4323 - Input Text - documentation * DP-4323 - Date Range - documentation * DP-4323 - Documentation Template - updated * DP-4323 - Input Date - documentation * DP-4323 - Location Listing page - documentation * DP-4319 - Location Listing - removing breadcrumbs data * DP-4176 - Button - updated docs * DP-4176 - Table - updated docs * DP-4198: Changes a tag to div to fix google translate. (#534) * DP-4198: Changes a tag to div to fix google translate. * Puts svg back into anchor tag. * Gets rid of js-clickable-link class. * DP-4198 - Callout Link - wrapping it in a div for google translate (#535) * DP-3232 & DP-1369 Key Actions and Key Agencies showing multiple times throughout page (#518) * Added an aria-labelledby for the key actions using compHeading.id * Added id to the key-actions.json * Added compHeading.id to the sidebar-heading "Key Agencies" * Removed the aria label from the sidebar-heading * Updated the comp-heading with modifier class --sidebar * Moved the 'after' under the --sidebar & .sidebar * Add modifiers --centered and --sidebar to the comp-header.twig * Moved the sidebar modifier in the comp-heading.twig * Removed the compHeading.id from the key-actions.twig * Removed the center modifiere to h3 header in comp-heading.twig * DP-3232 - Comp Heading - updates * DP-3232 - Comp Heading - reverting level headings * DP-3232 - Key Actions - populating aria-labelled by and removing sidebarheading * DP-4178 - Details template - doc updates * DP-4178 - Page Header - doc updates * DP-4178 - Contact Us - updating docs * DP-4177 - removing un-used page header variant * DP-4178 - Contact Group - updated docs * DP-4178 - Contact Us - Changing description * DP-4178 - Colored Heading - updated docs and examples * DP-4178 - Column Heading - updated docs * DP-4178 - Column Heading - updated docs * DP-4178 - Stack row sections - updated docs * DP-4178 - Guide page - adding back to top button * DP-4178 - Stack row sections - updated docs * DP-4178 - Stacked row section - updated docs * Updates subheader text on organization page. (#540) * DP-4178 - Emergency Alerts - updated docs * DP-4177 - Illustrated Header - renaming bgTitle to bgInfo * DP-4178 - Suggested Pages - updated docs * DP-4178 - Header Alert - replacing guid with id * DP-4177 - location template - fixing data json content * DP-4178 - Details Template - added twig docs links placeholders * DP-4178 - Howto & Location pages - Adding extends copy to description * DP-4178 - Location template - adding twig blocks * DP-4178 - Google Maps - updated docs * DP-4178 - Image Promos - updated docs * DP-4178 - Event Teaser - updated docs * DP-4178 - Event Listing - updated docs * DP-4323 - Location Filters - documentation * DP-3909 Add Fee description to How-to page (#538) * add fee description * add dataset for fee description * add padding below fee description section * adjustment based on the review * DP-1900 - Changed decorative links within contact groups to display inline. (#543) * DP-1900 - Changed decorative links within contact groups to display inline. * Removes width auto instead of changing to display inline. * DP-4323 - Checkbox - documentation * DP-4323 - Select box - documentation * DP-4323 - Page Docs - changing how templates and variants are called out * DP-4323 - Press Listing Page - documentation * DP-4323 - Press Filters - documentation * DP-4323 - Org Selector - documentation * DP-4323 - Executive Order - documentation * DP-4323 - Listing Table - documentation * DP-4323 - Board Decisions - documentation * DP-4323 - Two Column Templates - slight tweak to docs * DP-4323 - Board Decision - Documentation fixed * DP-4323 - Policy Advisory - documentation * DP-4323 - Footnote List - documentation * DP-4319 - Footnote - fixing JS for "#" examples. * DP-4323 - Footnote List - fixing href * DP-4323 - Footnote - documenation * DP-4323 - Directive page - documentation * DP-4323 - Regulation - documentation * DP-4323 - Section Landing - documentation * DP-4323 - back button -documentation * DP-4319 - back button - switched to using 'title' * DP-4323 - detail page - documentation * DP4323 - video transcript - documentation * DP-4323 - Form Page - documentation * DP-4323 - Rich Text - fixing documentation * DP-4323 - Press Template - changing description * DP-4323 - Form Page Template - documentation * DP-4319 - Form PAge Template - removing header and footer * DP-4323 - Form Requirements - documentation * DP-4323 - Error List - documentation * DP-4323 - Helper Text - documentation * DP-4323 - Input Group - documentation * DP-4323 - radio input - documentation * DP-4323 - textarea - documentation * DP-4480 Remove-filtering-keywords-service-page (#536) * Removing the filter code from the action-finder.twig * Deleted the action-finder-filter json and md file * Removed the hideFilter variable from action-finder json files * Removed the filterClass and the if statement from action-finder.twig * DP-4323 - Page Banner - correcting Variant docs * DP-4323 - Page Header - adjusting description * DP-4178 - Location Template - removing variants section * DP-4178 - Section Links - updated docs * DP-4178 - Sections 3 up - updated docs * DP-4178 - Single Column Template - adding Twig block info * DP-4177 - Two Column Template - added header and footer blocks * DP-4178 - Event Listing - forgot to add the as grid variant * DP-4178 - Event Listing - Adding one template variant * DP-4591 Add "more link" to contact us molecule, use on How-To page (#542) * DP-4591 create contact us accordion variant: w/ more link * DP-4591: remove title link property from contact us accordion Since we now have the variant to add the link to the accordion content, we don't want to link the accordion button as a pattern. * DP-4591 use the contact us variants with links in how to page * Add empty data model variables back in to pattern json * DP-4508 Add header tags to pages w/ page banner (#539) * create new content eyebrow organism * put if statement around all other code * add content eyebrow to services * add content eyebrow to services page * use real example for service page * add relationship indicator on location page * add header tags to topic in mayflower * add content eyebrow above illustrated header on guide page * add theme file for content eyebrow * add a hideBorder option * add hideBorder to services * add hideBorder to services * cleanup new scss selector * DP-4297 Allow footnotes to be plain text or linked (#541) * Adds conditional logic around footnote anchor. * Changlog * Add documentation, remove js hook, and reformat footnote option * git cherry-pick 35acb7a2 * Fix typo to 'brewing' (#549) * Release 5.6 - Event Template - reverting changes to twig blocks. * Fix typo to 'brewing' (#549) * Update release notes * Bump version on home page * Fix typo in release notes. * Test remove default assetsPath to enable prod deploy to /assets * Fix deploy script to allow CNAME with no assetPath to default to /assets * Update release notes * Update homepage version * refs DP-4881: show subtitle on press release page (#556) * DP-5175 create more links for service + service detail page components (#551) * Make action finder > see all w/ no background match component body Based on design updates for the component by Christine B. * Add more link option to form downloads organism * Add more link option to link list organism * Add more links to service and service detail page components * Add "more" link to form downloads and link list organisms * Update press-release~with-image.json (#560) * Add period after 'new one' to complete sentence. (#561) I have added a period at the end of this sentence: "You may qualify for temporary income to support you while you look for a new one." * Update event.json (#562) Update time from 8:00 a.m. - 10:00 a.m. to "8 a.m. - 10 a.m." to adhere to mass.gov style guide. * Updated time to adhere to style guide (#563) Changed time from "time": "10:00 a.m. - 11:00 a.m.", to "time: 10 a.m. - 11:00 a.m." * Master 5.6.1 to Dev (#557) * DP-3527/DP-3528 - Unused Patterns (#455) * DP-3519 - Image Promos - adding optional title * DP-3519 - Location - new Content type. * DP-3519 - Location Pages - updated to use location template * DP-3519 - removing breadcrumbs * DP-3519 - Removing wait time widget * DP-3519 - Renaming pageContent to mainContent * DP-3519 - Location Content - adding key actions and contact list * DP-3527 - Quick Actions - removed * DP-3527 - Sidebar Contact - removed * DP-3527 - Sidebar Promo - removed * DP-3527 - Sidebar Widget - removed * DP-3527 - Wait Time - removed * DP-3527 - Header Contact - removed * DP-3527 - Action Details - removed * DP-3527 - Action Section - removed * DP-3527 - Figure - fixing image width * DP-3527 - Action Event - removed * DP-3528 - Action Gallery - archived * DP-3528 - Action Cards - archived * DP-3528 - Blog Feed - archived * DP-3528 - Banner Carousel - archived * DP-3528 - Change Log - archived * DP-3528 - Feedback Form - archived * DP-3528 - Test Feed - archived * DP-3528 - Top Actions - archived * DP-3528 - Collage Header - archived * DP-3527 - Image Gallery - removed * DP-3527 - Related Action - removed * DP-3528 - State Util - removed * Bump release to 6.0 * bad merge * ignoring url config file for Release 6.0 * Removing disco mode from Pattern Lab. * Switch Mayflower over to the Drupal Pattern Lab fork (#488) * Switch Pattern Lab config to point to the Drupal Pattern Lab fork -- includes multiple PL bug fixes including the fix for the Lineages functionality being broken when using Twig namespaced paths. * Reverting a few PL config paramaters that don't necessarily have to get updated with the newer version * Fixing whitespace issues * Fixing missed spaces vs tabs instance in config * DP-4046 - Hosting from a Subfolder (#503) * DP-4046 - Global Data - splitting into seperate files and creating url obj * DP-4046 - Image - code clean up * DP-4046 - fixing path variables to use ../../assets instead of /assets * Pagination - preventing the loading of templates on pages without pagination * DP-4046 - Default domain changed to localhost:3000 * DP-4046 - Site Logo - updating the href value * DP-4046 - Adding Base tag. * removing env.js file * DP-4046 - Template JS var - renamed from themePath to templatePath * Revert "DP-4046 - Template JS var - renamed from themePath to templatePath" This reverts commit f21e7163c01841fa174b22289333dce09ad34262. * DP-4046 - themePath documentation * DP-4046 - Env.js - removing script to include file * DP-4046 - Styleguide - relative paths for assets * DP-4046 - Removing base tag. * Subfolders - changing default domain url to be "" * Trigger Browser Sync reload after Pattern Lab build (#506) * Adding minor delay to browsersync * DP-4048 Establish format for pattern docs (#515) * DP-4048 - Annotations - updating to look for JS classes used. * DP-4048 - Annotations - The extra html added breaks the styles * Dp-4048 - Extra Js - removing unused JS files * DP-4048 - updating Styling of Pattern Info panel * DP-4048 - Contact List - Documentation * DP-4048 - Image * DP-4048 - Pattern Documentation - Remving Usage Guidelines. * DP-4048 - additional tweaks to md files * DP-4048 - Lineage styling * DP-4048 - Removing title yaml. * DP-4048 - Contact List - removed 'title' field from docs * Mapped Locations - Fixing bug with assigning the colored background * DP-4080 - Versioning Documentation (#504) * DP-4080 - Versioning - first draft * Dp-4080 - let's try that again after saving the file. * DP-4080 - Versioning - updating Major version text * Second Draft * DP-4080 - Versions - Third draft with examples versions * DP-4080 - Version - reducing importance of Terms * DP-4080 - Version - Edits after reviewing. * DP-4080 - Versions - missed a few * DP-4080 - Versions - Weird copy and paste issue. * DP-4080 - Tweak to Minor version description * DP-4080 - Version Docs - fourth version * DP-4080 - Version doc - version 5 * DP-4053 create + document manual build + deploy process (#530) * Add shell script to deploy PL build to gh-pages branch of given repo * Update readme with deploy, contrib, versions, license info * Create contributing documentation * Create deploy documentation * Create PR template * Create issue template * Move environment setup and demo install instructions to own docs * Link to mayflower artifacts docs from readme (vs duplicating content) * Workaround to address unexpected Pattern Lab Psuedo-Pattern Data Inheritance (#519) * Reverting Pattern Lab psuedo-pattern rules to use original merge function vs array_replace_recursive -- temporary workaround to address unexpected behavior from https://github.com/drupal-pattern-lab/patternlab-php-core/issues/12 * Adding composer patch library to automatically apply array_merge patch if/when upstream PL updates should occur * Adding composer patch plugin to autoloader * DP-4176 Service page documentation (#521) * Add shell script to deploy PL build to gh-pages branch of given repo * Make deploy script executable * Use bash shebang in deploy script * Fix conditional logic * Write git output to screen * Fix conditional logic check for false * print variable name in log * update order of args * Fix conditional logic boolean false * fix variable assignment, remove spaces * echo errors in red, success in green * fix validation of target environment * Update deploy script argument validation * Validate git push during deploy * Exit deploy script on failed build * Update docs * Fix syntax error. * Create a function for cleanup * Fix target URL * Create function for success / error logging * Update docs * Ensure that patterns are blown away before built * Remove exit on error log * Fix string comparison in log function * Add final error message to deploy script * Make wrong target remote repo message more helpful * Create CNAME for staging (test) * Test confirm functionality * Create CNAME for stage / prod * Add logic for final success message non/prod * Update readme with deploy, contrib, versions, license info See template link under readme > acknowledgements * Create contributing documentation * Create deploy documentation * Fix readme link typo * Fix link to contributing.md * Update github pages settings docs * Update Contributing md with Mayflower, PR tips. * Create PR template * Create issue template * Fix typo and make contributing language more friendly * Update steps to browse in readme. * Update readme browse Mayflower steps * Fix readme typo. * Add deployment steps to contributing.md * Fix typo, styling of deploy docs. * Add PHP version to readme. * Update built with pattern lab language in readme * Update mayflower artifacts text in readme. * Add git commit context to contributing docs * Format readme * Describe project file structure in contributing.md * Format contributing.md * Clarify github pull request buttons in contributing md * Remove acknowledgements from contributing TOC * Format prerequisite in deploy docs * Link to gulp readme from deploy docs * Log output when production deploy aborted * Use main repo as example in deploy script comments * Make cname a parameter for deploy script, required for prod only * Move CONTRIBUTING.md into .github directory * Remove written descriptions of Github's UI, replace with link to docs * Make CONTRIBUTING.md branching language more consistent with git * Move pattern lab docs to first step in CONTRIBUTING > working with PL * Remove vague language in CONTRIBUTING.md * Clarify Mayflower Artifacts in readme * Make CONTRIBUTING.md > keeping your fork in sync explanation more clear. * Move environment setup and demo install instructions to own docs * Group steps in CONTRIBUTING.md * Fix link to CONTRIBUTING.md after move to /.github * Simplify readme install / contribute / deploy sections * Remove link to personal fork, but keep repo name, in deploy docs * Fix mayflower-artifacts url in readme * Update the deploy success message to use cname if present * Fix cname conditional logic in deploy script. * Use [-c] rather tha [-cname] as parameter for gh pages deploy script * Fix typo in success message for cname * Fix deploy script config for url.domain/assetsPath when cname passed * Improve script logging: hide lengthy status/success, color + tag logs. * Fix typos. * Fix typo in docs for [-t] argument. * Move log prior to command for creating cname in deploy script. * Avoid having to escape / in deploy script > assetsPath var Use ! as delimeter, see: https://coderwall.com/p/khdkuw/delimiters-in-sed-substitution * Allow assetsPath to be passed with cname flag * Accept [-a] argument in deploy script * Fix deploy script [-t] flag to be target remote repo *owner* This seems to have reverted to a prior state somehow. * Remove extra " from assetsPath in url.json * Update [-c] validation log to reflect [-c] vs [-cname] * Add developer deploy docs note about cname and assetPaths flags. * Uncomment script. So. It. Does. Things. (silly) * Link to mayflower artifacts docs from readme (vs duplicating content) * DP-4048 - Annotations - updating to look for JS classes used. * DP-4048 - Annotations - The extra html added breaks the styles * Dp-4048 - Extra Js - removing unused JS files * DP-4048 - updating Styling of Pattern Info panel * DP-4048 - Contact List - Documentation * DP-4048 - Image * DP-4048 - Pattern Documentation - Remving Usage Guidelines. * DP-4048 - additional tweaks to md files * DP-4048 - Lineage styling * DP-4048 - Removing title yaml. * Make all intra-docs links relative * Fix deploy docs links * Update clone steps to be more clear * Ensure branch is clean after deploy, fix typos * Add patternlab task to deafult gulp ( = always generate patterns) * Try gulp prod in deploy script * Ensure public directory gets cleaned out prior to generation * DP-4048 - Contact List - removed 'title' field from docs * DP-4176 - Service Page and Template - documentation * DP-4176 - Page Banner - Documentation * DP-4048 Establish format for pattern docs (#515) * DP-4048 - Annotations - updating to look for JS classes used. * DP-4048 - Annotations - The extra html added breaks the styles * Dp-4048 - Extra Js - removing unused JS files * DP-4048 - updating Styling of Pattern Info panel * DP-4048 - Contact List - Documentation * DP-4048 - Image * DP-4048 - Pattern Documentation - Remving Usage Guidelines. * DP-4048 - additional tweaks to md files * DP-4048 - Lineage styling * DP-4048 - Removing title yaml. * DP-4048 - Contact List - removed 'title' field from docs * DP-4176 - Image - documentation * DP-4176 - Video - documentation * DP-4176 - Documentation template * DP-4176 - Key Actions - Documentation * DP-4176 - Decorative Link - documentation * DP-4176 - Key Actions - adding contained type * DP-4167 - Callout Link - documentation * DP-4176 - Illustrated link - documentation * DP-4176 - Variant Documentation template * DP-4176 - Contact List - Updated variant documentation * DP-4176 - Sidebar Heading - documentation * DP-4176 - Comp Heading - documentation * DP-4176 - Variants - making link relative './' * DP-4176 - Icon Links - documentation * DP-4176 - Link List - documentation * DP-4176 - Link List - documention of Right Rail usage * DP-4176 - Action Finder - documentation * DP-4176 - Mapped Locations - documentation * DP-4176 - Variant template updated * DP-4176 - Mapped Locations - Removed title from contained version * DP-4176 - Callout Link External - removed variant * Mapped Locations - Fixing bug with assigning the colored background * DP-4176 - Split Columns - documentation * DP-4176 - Rich Text - documentation * DP-4176 - Download Link - documentation * DP-4176 - Forms Downloads - documentation * DP-4176 - Utility Panel - documentation * DP-4176 - Utility Nav - documentation * DP-4176 - Header - documentation * DP-4176 - Button Search - documentation * DP-4176 - Site Logo - documentation * DP-4176 - Header Search - documentation * DP-4176 - Main Nav - documentation * DP-4176 - Button - documentation * DP-4176 - Button - adding link option and correcting styling classes * DP-4176 - Button Link - marking it as depreciated * DP-4176 - Floating Action - updated to use just the button atom * DP-4176 - Floating Action - documentation * DP-4176 - Buttons - Updates to SCSS selectors * DP-4176 - Floating Action - correcting styling classes * DP-4176 - Footer - documentation * DP-4176 - Heading / Util Panel - marking as in Progress so we can update * DP-4176 - Button - re-adding support for the 'theme' variable * DP-4176 - Social Links - documentation * DP-4176 - Footer Links - documentation * DP-4176 - Buttons - leaving old styles for backward compatibilty * DP-4167 - Callout Link - moving the info variable to a title attribute * DP-4176 - Buttons - incorrect indentation * DP-4167 - Rich Text - updating to include all accepted patterns * DP-4176 - Rich text sub patterns - documentation * DP-4167 - figure - documentation and modified to use --left/--right classes * DP-4167 - Table - documentation * DP-4080 - Versioning Documentation (#504) * DP-4080 - Versioning - first draft * Dp-4080 - let's try that again after saving the file. * DP-4080 - Versioning - updating Major version text * Second Draft * DP-4080 - Versions - Third draft with examples versions * DP-4080 - Version - reducing importance of Terms * DP-4080 - Version - Edits after reviewing. * DP-4080 - Versions - missed a few * DP-4080 - Versions - Weird copy and paste issue. * DP-4080 - Tweak to Minor version description * DP-4080 - Version Docs - fourth version * DP-4080 - Version doc - version 5 * DP-4176 - Callout Link - making CSS backward compatible * DP-4176 - Floating Action - making code backward compatible * DP-4177 - Button - fixed logic to use old "theme" variable for color. * DP-4178 - Button - fixing broken links * DP-4176 - Button - switching color back to theme include values * DP-4176 - Comp Heading - correcting id value * DP-4176 - Decorative Link - removing schema.org and using title * DP-4176 - Linked List - Update docs * DP-4176 - Mapped Locations - updated docs * DP-4176 - Page Banner - Updated Docs * DP-4176 - Services Template - updated docs * DP-4176 - Action Finder - updated docs * DP-4176 - Download Link - removing property * DP-4176 - Callout Link - Better descriptive text * DP-4176 - Video - updated documentation * DP-4176 - Decorative Link - updated docs * DP-4176 - Mapped Locations - adding more useage guidelines * DP-4176 - Button - updated docs * DP-4176 - Table - updated docs * DP-4176 - Comp Heading - changing id value * DP-4178 / DP-4177 How To page (#523) * Add shell script to deploy PL build to gh-pages branch of given repo * Make deploy script executable * Use bash shebang in deploy script * Fix conditional logic * Write git output to screen * Fix conditional logic check for false * print variable name in log * update order of args * Fix conditional logic boolean false * fix variable assignment, remove spaces * echo errors in red, success in green * fix validation of target environment * Update deploy script argument validation * Validate git push during deploy * Exit deploy script on failed build * Update docs * Fix syntax error. * Create a function for cleanup * Fix target URL * Create function for success / error logging * Update docs * Ensure that patterns are blown away before built * Remove exit on error log * Fix string comparison in log function * Add final error message to deploy script * Make wrong target remote repo message more helpful * Create CNAME for staging (test) * Test confirm functionality * Create CNAME for stage / prod * Add logic for final success message non/prod * Update readme with deploy, contrib, versions, license info See template link under readme > acknowledgements * Create contributing documentation * Create deploy documentation * Fix readme link typo * Fix link to contributing.md * Update github pages settings docs * Update Contributing md with Mayflower, PR tips. * Create PR template * Create issue template * Fix typo and make contributing language more friendly * Update steps to browse in readme. * Update readme browse Mayflower steps * Fix readme typo. * Add deployment steps to contributing.md * Fix typo, styling of deploy docs. * Add PHP version to readme. * Update built with pattern lab language in readme * Update mayflower artifacts text in readme. * Add git commit context to contributing docs * Format readme * Describe project file structure in contributing.md * Format contributing.md * Clarify github pull request buttons in contributing md * Remove acknowledgements from contributing TOC * Format prerequisite in deploy docs * Link to gulp readme from deploy docs * Log output when production deploy aborted * Use main repo as example in deploy script comments * Make cname a parameter for deploy script, required for prod only * Move CONTRIBUTING.md into .github directory * Remove written descriptions of Github's UI, replace with link to docs * Make CONTRIBUTING.md branching language more consistent with git * Move pattern lab docs to first step in CONTRIBUTING > working with PL * Remove vague language in CONTRIBUTING.md * Clarify Mayflower Artifacts in readme * Make CONTRIBUTING.md > keeping your fork in sync explanation more clear. * Move environment setup and demo install instructions to own docs * Group steps in CONTRIBUTING.md * Fix link to CONTRIBUTING.md after move to /.github * Simplify readme install / contribute / deploy sections * Remove link to personal fork, but keep repo name, in deploy docs * Fix mayflower-artifacts url in readme * Update the deploy success message to use cname if present * Fix cname conditional logic in deploy script. * Use [-c] rather tha [-cname] as parameter for gh pages deploy script * Fix typo in success message for cname * Fix deploy script config for url.domain/assetsPath when cname passed * Improve script logging: hide lengthy status/success, color + tag logs. * Fix typos. * Fix typo in docs for [-t] argument. * Move log prior to command for creating cname in deploy script. * Avoid having to escape / in deploy script > assetsPath var Use ! as delimeter, see: https://coderwall.com/p/khdkuw/delimiters-in-sed-substitution * Allow assetsPath to be passed with cname flag * Accept [-a] argument in deploy script * Fix deploy script [-t] flag to be target remote repo *owner* This seems to have reverted to a prior state somehow. * Remove extra " from assetsPath in url.json * Update [-c] validation log to reflect [-c] vs [-cname] * Add developer deploy docs note about cname and assetPaths flags. * Uncomment script. So. It. Does. Things. (silly) * Link to mayflower artifacts docs from readme (vs duplicating content) * DP-4048 - Annotations - updating to look for JS classes used. * DP-4048 - Annotations - The extra html added breaks the styles * Dp-4048 - Extra Js - removing unused JS files * DP-4048 - updating Styling of Pattern Info panel * DP-4048 - Contact List - Documentation * DP-4048 - Image * DP-4048 - Pattern Documentation - Remving Usage Guidelines. * DP-4048 - additional tweaks to md files * DP-4048 - Lineage styling * DP-4048 - Removing title yaml. * Make all intra-docs links relative * Fix deploy docs links * Update clone steps to be more clear * Ensure branch is clean after deploy, fix typos * Add patternlab task to deafult gulp ( = always generate patterns) * Try gulp prod in deploy script * Ensure public directory gets cleaned out prior to generation * DP-4048 - Contact List - removed 'title' field from docs * DP-4176 - Service Page and Template - documentation * DP-4176 - Page Banner - Documentation * DP-4048 Establish format for pattern docs (#515) * DP-4048 - Annotations - updating to look for JS classes used. * DP-4048 - Annotations - The extra html added breaks the styles * Dp-4048 - Extra Js - removing unused JS files * DP-4048 - updating Styling of Pattern Info panel * DP-4048 - Contact List - Documentation * DP-4048 - Image * DP-4048 - Pattern Documentation - Remving Usage Guidelines. * DP-4048 - additional tweaks to md files * DP-4048 - Lineage styling * DP-4048 - Removing title yaml. * DP-4048 - Contact List - removed 'title' field from docs * DP-4176 - Image - documentation * DP-4176 - Video - documentation * DP-4176 - Documentation template * DP-4176 - Key Actions - Documentation * DP-4176 - Decorative Link - documentation * DP-4176 - Key Actions - adding contained type * DP-4167 - Callout Link - documentation * DP-4176 - Illustrated link - documentation * DP-4176 - Variant Documentation template * DP-4176 - Contact List - Updated variant documentation * DP-4176 - Sidebar Heading - documentation * DP-4176 - Comp Heading - documentation * DP-4176 - Variants - making link relative './' * DP-4176 - Icon Links - documentation * DP-4176 - Link List - documentation * DP-4176 - Link List - documention of Right Rail usage * DP-4176 - Action Finder - documentation * DP-4176 - Mapped Locations - documentation * DP-4176 - Variant template updated * DP-4176 - Mapped Locations - Removed title from contained version * DP-4176 - Callout Link External - removed variant * Mapped Locations - Fixing bug with assigning the colored background * DP-4176 - Split Columns - documentation * DP-4176 - Rich Text - documentation * DP-4176 - Download Link - documentation * DP-4176 - Forms Downloads - documentation * DP-4176 - Utility Panel - documentation * DP-4176 - Utility Nav - documentation * DP-4176 - Header - documentation * DP-4176 - Button Search - documentation * DP-4176 - Site Logo - documentation * DP-4176 - Header Search - documentation * DP-4176 - Main Nav - documentation * DP-4176 - Button - documentation * DP-4176 - Button - adding link option and correcting styling classes * DP-4176 - Button Link - marking it as depreciated * DP-4176 - Floating Action - updated to use just the button atom * DP-4176 - Floating Action - documentation * DP-4176 - Buttons - Updates to SCSS selectors * DP-4176 - Floating Action - correcting styling classes * DP-4176 - Footer - documentation * DP-4176 - Heading / Util Panel - marking as in Progress so we can update * DP-4176 - Button - re-adding support for the 'theme' variable * DP-4176 - Social Links - documentation * DP-4176 - Footer Links - documentation * DP-4176 - Buttons - leaving old styles for backward compatibilty * DP-4167 - Callout Link - moving the info variable to a title attribute * DP-4176 - Buttons - incorrect indentation * DP-4167 - Rich Text - updating to include all accepted patterns * DP-4176 - Rich text sub patterns - documentation * DP-4167 - figure - documentation and modified to use --left/--right classes * DP-4167 - Table - documentation * DP-4080 - Versioning Documentation (#504) * DP-4080 - Versioning - first draft * Dp-4080 - let's try that again after saving the file. * DP-4080 - Versioning - updating Major version text * Second Draft * DP-4080 - Versions - Third draft with examples versions * DP-4080 - Version - reducing importance of Terms * DP-4080 - Version - Edits after reviewing. * DP-4080 - Versions - missed a few * DP-4080 - Versions - Weird copy and paste issue. * DP-4080 - Tweak to Minor version description * DP-4080 - Version Docs - fourth version * DP-4080 - Version doc - version 5 * DP-4178 - HowTo / Details - documentation * DP-4178 - Rich Text - typo in documentation * DP-4178 - Page Header - documentation * DP-4178 - Header Tags - documenation * DP-4178 - Publish State - documentation * DP-4178 - Divider - documentation * DP-4178 - Contact List - updated documentation * DP-4178 - Doc Template - slight tweak * DP-4178 - Contact Us - documentation * DP-4178 - Contact Group - documentation * DP-4178 - Contact Group - removing structured content * DP-4178 - Colored Heading - Documentation * DP-4178 - Sticky Nav - Documentation * DP-4178 - Tabular Data - documentation * DP-4178 - Action Step - documentation * DP-4178 - Steps Ordered - documentation * DP-4178 - Steps Unordered - documentation * DP-4178 - Column Heading - documentation * DP-4177 - Column Heading - cleaning up code * DP-4176 - Callout Link - making CSS backward compatible * DP-4176 - Floating Action - making code backward compatible * DP-4177 - Button - fixed logic to use old "theme" variable for color. * DP-4178 - Button - fixing broken links * DP-4176 - Button - switching color back to theme include values * DP-4176 - Comp Heading - correcting id value * DP-4176 - Decorative Link - removing schema.org and using title * DP-4176 - Linked List - Update docs * DP-4176 - Mapped Locations - updated docs * DP-4176 - Page Banner - Updated Docs * DP-4176 - Services Template - updated docs * DP-4176 - Action Finder - updated docs * DP-4176 - Download Link - removing property * DP-4176 - Callout Link - Better descriptive text * DP-4176 - Video - updated documentation * DP-4176 - Decorative Link - updated docs * DP-4176 - Mapped Locations - adding more useage guidelines * DP-4176 - Button - updated docs * DP-4176 - Table - updated docs * DP-4178 - Details template - doc updates * DP-4178 - Page Header - doc updates * DP-4178 - Contact Us - updating docs * DP-4177 - removing un-used page header variant * DP-4178 - Contact Group - updated docs * DP-4178 - Contact Us - Changing description * DP-4178 - Colored Heading - updated docs and examples * DP-4178 - Column Heading - updated docs * DP-4178 - Column Heading - updated docs * Reverting DP-3527 and 3528 due to breaking changes * DP-4178 / DP-4177 Guide Page (#524) * Fix conditional logic boolean false * fix variable assignment, remove spaces * echo errors in red, success in green * fix validation of target environment * Update deploy script argument validation * Validate git push during deploy * Exit deploy script on failed build * Update docs * Fix syntax error. * Create a function for cleanup * Fix target URL * Create function for success / error logging * Update docs * Ensure that patterns are blown away before built * Remove exit on error log * Fix string comparison in log function * Add final error message to deploy script * Make wrong target remote repo message more helpful * Create CNAME for staging (test) * Test confirm functionality * Create CNAME for stage / prod * Add logic for final success message non/prod * Update readme with deploy, contrib, versions, license info See template link under readme > acknowledgements * Create contributing documentation * Create deploy documentation * Fix readme link typo * Fix link to contributing.md * Update github pages settings docs * Update Contributing md with Mayflower, PR tips. * Create PR template * Create issue template * Fix typo and make contributing language more friendly * Update steps to browse in readme. * Update readme browse Mayflower steps * Fix readme typo. * Add deployment steps to contributing.md * Fix typo, styling of deploy docs. * Add PHP version to readme. * Update built with pattern lab language in readme * Update mayflower artifacts text in readme. * Add git commit context to contributing docs * Format readme * Describe project file structure in contributing.md * Format contributing.md * Clarify github pull request buttons in contributing md * Remove acknowledgements from contributing TOC * Format prerequisite in deploy docs * Link to gulp readme from deploy docs * Log output when production deploy aborted * Use main repo as example in deploy script comments * Make cname a parameter for deploy script, required for prod only * Move CONTRIBUTING.md into .github directory * Remove written descriptions of Github's UI, replace with link to docs * Make CONTRIBUTING.md branching language more consistent with git * Move pattern lab docs to first step in CONTRIBUTING > working with PL * Remove vague language in CONTRIBUTING.md * Clarify Mayflower Artifacts in readme * Make CONTRIBUTING.md > keeping your fork in sync explanation more clear. * Move environment setup and demo install instructions to own docs * Group steps in CONTRIBUTING.md * Fix link to CONTRIBUTING.md after move to /.github * Simplify readme install / contribute / deploy sections * Remove link to personal fork, but keep repo name, in deploy docs * Fix mayflower-artifacts url in readme * Update the deploy success message to use cname if present * Fix cname conditional logic in deploy script. * Use [-c] rather tha [-cname] as parameter for gh pages deploy script * Fix typo in success message for cname * Fix deploy script config for url.domain/assetsPath when cname passed * Improve script logging: hide lengthy status/success, color + tag logs. * Fix typos. * Fix typo in docs for [-t] argument. * Move log prior to command for creating cname in deploy script. * Avoid having to escape / in deploy script > assetsPath var Use ! as delimeter, see: https://coderwall.com/p/khdkuw/delimiters-in-sed-substitution * Allow assetsPath to be passed with cname flag * Accept [-a] argument in deploy script * Fix deploy script [-t] flag to be target remote repo *owner* This seems to have reverted to a prior state somehow. * Remove extra " from assetsPath in url.json * Update [-c] validation log to reflect [-c] vs [-cname] * Add developer deploy docs note about cname and assetPaths flags. * Uncomment script. So. It. Does. Things. (silly) * Link to mayflower artifacts docs from readme (vs duplicating content) * DP-4048 - Annotations - updating to look for JS classes used. * DP-4048 - Annotations - The extra html added breaks the styles * Dp-4048 - Extra Js - removing unused JS files * DP-4048 - updating Styling of Pattern Info panel * DP-4048 - Contact List - Documentation * DP-4048 - Image * DP-4048 - Pattern Documentation - Remving Usage Guidelines. * DP-4048 - additional tweaks to md files * DP-4048 - Lineage styling * DP-4048 - Removing title yaml. * Make all intra-docs links relative * Fix deploy docs links * Update clone steps to be more clear * Ensure branch is clean after deploy, fix typos * Add patternlab task to deafult gulp ( = always generate patterns) * Try gulp prod in deploy script * Ensure public directory gets cleaned out prior to generation * DP-4048 - Contact List - removed 'title' field from docs * DP-4176 - Service Page and Template - documentation * DP-4176 - Page Banner - Documentation * DP-4048 Establish format for pattern docs (#515) * DP-4048 - Annotations - updating to look for JS classes used. * DP-4048 - Annotations - The extra html added breaks the styles * Dp-4048 - Extra Js - removing unused JS files * DP-4048 - updating Styling of Pattern Info panel * DP-4048 - Contact List - Documentation * DP-4048 - Image * DP-4048 - Pattern Documentation - Remving Usage Guidelines. * DP-4048 - additional tweaks to md files * DP-4048 - Lineage styling * DP-4048 - Removing title yaml. * DP-4048 - Contact List - removed 'title' field from docs * DP-4176 - Image - documentation * DP-4176 - Video - documentation * DP-4176 - Documentation template * DP-4176 - Key Actions - Documentation * DP-4176 - Decorative Link - documentation * DP-4176 - Key Actions - adding contained type * DP-4167 - Callout Link - documentation * DP-4176 - Illustrated link - documentation * DP-4176 - Variant Documentation template * DP-4176 - Contact List - Updated variant documentation * DP-4176 - Sidebar Heading - documentation * DP-4176 - Comp Heading - documentation * DP-4176 - Variants - making link relative './' * DP-4176 - Icon Links - documentation * DP-4176 - Link List - documentation * DP-4176 - Link List - documention of Right Rail usage * DP-4176 - Action Finder - documentation * DP-4176 - Mapped Locations - documentation * DP-4176 - Variant template updated * DP-4176 - Mapped Locations - Removed title from contained version * DP-4176 - Callout Link External - removed variant * Mapped Locations - Fixing bug with assigning the colored background * DP-4176 - Split Columns - documentation * DP-4176 - Rich Text - documentation * DP-4176 - Download Link - documentation * DP-4176 - Forms Downloads - documentation * DP-4176 - Utility Panel - documentation * DP-4176 - Utility Nav - documentation * DP-4176 - Header - documentation * DP-4176 - Button Search - documentation * DP-4176 - Site Logo - documentation * DP-4176 - Header Search - documentation * DP-4176 - Main Nav - documentation * DP-4176 - Button - documentation * DP-4176 - Button - adding link option and correcting styling classes * DP-4176 - Button Link - marking it as depreciated * DP-4176 - Floating Action - updated to use just the button atom * DP-4176 - Floating Action - documentation * DP-4176 - Buttons - Updates to SCSS selectors * DP-4176 - Floating Action - correcting styling classes * DP-4176 - Footer - documentation * DP-4176 - Heading / Util Panel - marking as in Progress so we can update * DP-4176 - Button - re-adding support for the 'theme' variable * DP-4176 - Social Links - documentation * DP-4176 - Footer Links - documentation * DP-4176 - Buttons - leaving old styles for backward compatibilty * DP-4167 - Callout Link - moving the info variable to a title attribute * DP-4176 - Buttons - incorrect indentation * DP-4167 - Rich Text - updating to include all accepted patterns * DP-4176 - Rich text sub patterns - documentation * DP-4167 - figure - documentation and modified to use --left/--right classes * DP-4167 - Table - documentation * DP-4080 - Versioning Documentation (#504) * DP-4080 - Versioning - first draft * Dp-4080 - let's try that again after saving the file. * DP-4080 - Versioning - updating Major version text * Second Draft * DP-4080 - Versions - Third draft with examples versions * DP-4080 - Version - reducing importance of Terms * DP-4080 - Version - Edits after reviewing. * DP-4080 - Versions - missed a few * DP-4080 - Versions - Weird copy and paste issue. * DP-4080 - Tweak to Minor version description * DP-4080 - Version Docs - fourth version * DP-4080 - Version doc - version 5 * DP-4178 - HowTo / Details - documentation * DP-4178 - Rich Text - typo in documentation * DP-4178 - Page Header - documentation * DP-4178 - Header Tags - documenation * DP-4178 - Publish State - documentation * DP-4178 - Divider - documentation * DP-4178 - Contact List - updated documentation * DP-4178 - Doc Template - slight tweak * DP-4178 - Contact Us - documentation * DP-4178 - Contact Group - documentation * DP-4178 - Contact Group - removing structured content * DP-4178 - Colored Heading - Documentation * DP-4178 - Sticky Nav - Documentation * DP-4178 - Tabular Data - documentation * DP-4178 - Action Step - documentation * DP-4178 - Steps Ordered - documentation * DP-4178 - Steps Unordered - documentation * DP-4178 - Stacked Row - documentation * DP-4187 - Guide - Documentation * DP-4178 - Emergency Header - documentation * DP-4177 - Emergency Header - switching divs to spans * DP-4178 - Emergency Alerts - documentation * 4178 - Emergency Header - documentation 2 * DP-4178 - Jump Links - documentation * DP-4177 - Jump Links - Adding missing "info" variable to links * DP-4178 - Split Columns - fixing indentation * DP-4178 - Stacked Row Section - documentation * DP-4178 - Illustrated Header - documentation * DP-4177 - Suggested Pages - Fixing variables for decorative and illustrated links * DP-4178 - Suggested Pages - documentation * DP-4178 - Callout Stats - documentation * DP-4177 - Guide Page - moving callout stat outside of Rich Text. * DP-4178 - Callout Alert - documentation * DP-4177 - Callout Alert - removed unused variables * DP-4178 - Callout Time - documentation * DP-4178 - Button Alert - documentation * DP-4178 - Emergency Alert - documentation * DP-4178 - Emergency Alerts - updating documentation * DP-4178 - Link - documentation * DP-4177 - Link - correcting variables to match best practice * DP-4177 - Link - forgot to save a change * DP-4178 - Column Heading - documentation * DP-4177 - Column Heading - cleaning up code * DP-4176 - Callout Link - making CSS backward compatible * DP-4176 - Floating Action - making code backward compatible * DP-4177 - Button - fixed logic to use old "theme" variable for color. * DP-4178 - Button - fixing broken links * DP-4176 - Button - switching color back to theme include values * DP-4176 - Comp Heading - correcting id value * DP-4176 - Decorative Link - removing schema.org and using title * DP-4176 - Linked List - Update docs * DP-4176 - Mapped Locations - updated docs * DP-4176 - Page Banner - Updated Docs * DP-4176 - Services Template - updated docs * DP-4176 - Action Finder - updated docs * DP-4176 - Download Link - removing property * DP-4176 - Callout Link - Better descriptive text * DP-4176 - Video - updated documentation * DP-4176 - Decorative Link - updated docs * DP-4176 - Mapped Locations - adding more useage guidelines * DP-4176 - Button - updated docs * DP-4176 - Table - updated docs * DP-4178 - Details template - doc updates * DP-4178 - Page Header - doc updates * DP-4178 - Contact Us - updating docs * DP-4177 - removing un-used page header variant * DP-4178 - Contact Group - updated docs * DP-4178 - Contact Us - Changing description * DP-4178 - Colored Heading - updated docs and examples * DP-4178 - Column Heading - updated docs * DP-4178 - Column Heading - updated docs * DP-4178 - Guide page - adding back to top button * DP-4178 - Stack row sections - updated docs * DP-4178 - Stacked row section - updated docs * DP-4178 - Emergency Alerts - updated docs * DP-4177 - Illustrated Header - renaming bgTitle to bgInfo * DP-4178 - Suggested Pages - updated docs * DP-4178 - doc templates - updated variant to use code block * Remove phing deploy step that edits env.js asset paths for drupal (#544) * DP-4181 Document the contribution process for issues, feature requests, PRs (#532) * Add business and more specific contribution docs Borrowed heavily from bootstrap's contrib docs * Make build issue label more general: 'gulp' -> 'build' * Remove browser bug report section * Rename setting up your environment -> machine setup in contrib docs * Update contrib docs based on internal review * DP-4178 Location page (#527) * Update readme browse Mayflower steps * Fix readme typo. * Add deployment steps to contributing.md * Fix typo, styling of deploy docs. * Add PHP version to readme. * Update built with pattern lab language in readme * Update mayflower artifacts text in readme. * Add git commit context to contributing docs * Format readme * Describe project file structure in contributing.md * Format contributing.md * Clarify github pull request buttons in contributing md * Remove acknowledgements from contributing TOC * Format prerequisite in deploy docs * Link to gulp readme from deploy docs * Log output when production deploy aborted * Use main repo as example in deploy script comments * Make cname a parameter for deploy script, required for prod only * Move CONTRIBUTING.md into .github directory * Remove written descriptions of Github's UI, replace with link to docs * Make CONTRIBUTING.md branching language more consistent with git * Move pattern lab docs to first step in CONTRIBUTING > working with PL * Remove vague language in CONTRIBUTING.md * Clarify Mayflower Artifacts in readme * Make CONTRIBUTING.md > keeping your fork in sync explanation more clear. * Move environment setup and demo install instructions to own docs * Group steps in CONTRIBUTING.md * Fix link to CONTRIBUTING.md after move to /.github * Simplify readme install / contribute / deploy sections * Remove link to personal fork, but keep repo name, in deploy docs * Fix mayflower-artifacts url in readme * Update the deploy success message to use cname if present * Fix cname conditional logic in deploy script. * Use [-c] rather tha [-cname] as parameter for gh pages deploy script * Fix typo in success message for cname * Fix deploy script config for url.domain/assetsPath when cname passed * Improve script logging: hide lengthy status/success, color + tag logs. * Fix typos. * Fix typo in docs for [-t] argument. * Move log prior to command for creating cname in deploy script. * Avoid having to escape / in deploy script > assetsPath var Use ! as delimeter, see: https://coderwall.com/p/khdkuw/delimiters-in-sed-substitution * Allow assetsPath to be passed with cname flag * Accept [-a] argument in deploy script * Fix deploy script [-t] flag to be target remote repo *owner* This seems to have reverted to a prior state somehow. * Remove extra " from assetsPath in url.json * Update [-c] validation log to reflect [-c] vs [-cname] * Add developer deploy docs note about cname and assetPaths flags. * Uncomment script. So. It. Does. Things. (silly) * Link to mayflower artifacts docs from readme (vs duplicating content) * DP-4048 - Annotations - updating to look for JS classes used. * DP-4048 - Annotations - The extra html added breaks the styles * Dp-4048 - Extra Js - removing unused JS files * DP-4048 - updating Styling of Pattern Info panel * DP-4048 - Contact List - Documentation * DP-4048 - Image * DP-4048 - Pattern Documentation - Remving Usage Guidelines. * DP-4048 - additional tweaks to md files * DP-4048 - Lineage styling * DP-4048 - Removing title yaml. * Make all intra-docs links relative * Fix deploy docs links * Update clone steps to be more clear * Ensure branch is clean after deploy, fix typos * Add patternlab task to deafult gulp ( = always generate patterns) * Try gulp prod in deploy script * Ensure public directory gets cleaned out prior to generation * DP-4048 - Contact List - removed 'title' field from docs * DP-4176 - Service Page and Template - documentation * DP-4176 - Page Banner - Documentation * DP-4048 Establish format for pattern docs (#515) * DP-4048 - Annotations - updating to look for JS classes used. * DP-4048 - Annotations - The extra html added breaks the styles * Dp-4048 - Extra Js - removing unused JS files * DP-4048 - updating Styling of Pattern Info panel * DP-4048 - Contact List - Documentation * DP-4048 - Image * DP-4048 - Pattern Documentation - Remving Usage Guidelines. * DP-4048 - additional tweaks to md files * DP-4048 - Lineage styling * DP-4048 - Removing title yaml. * DP-4048 - Contact List - removed 'title' field from docs * DP-4176 - Image - documentation * DP-4176 - Video - documentation * DP-4176 - Documentation template * DP-4176 - Key Actions - Documentation * DP-4176 - Decorative Link - documentation * DP-4176 - Key Actions - adding contained type * DP-4167 - Callout Link - documentation * DP-4176 - Illustrated link - documentation * DP-4176 - Variant Documentation template * DP-4176 - Contact List - Updated variant documentation * DP-4176 - Sidebar Heading - documentation * DP-4176 - Comp Heading - documentation * DP-4176 - Variants - making link relative './' * DP-4176 - Icon Links - documentation * DP-4176 - Link List - documentation * DP-4176 - Link List - documention of Right Rail usage * DP-4176 - Action Finder - documentation * DP-4176 - Mapped Locations - documentation * DP-4176 - Variant template updated * DP-4176 - Mapped Locations - Removed title from contained version * DP-4176 - Callout Link External - removed variant * Mapped Locations - Fixing bug with assigning the colored background * DP-4176 - Split Columns - documentation * DP-4176 - Rich Text - documentation * DP-4176 - Download Link - documentation * DP-4176 - Forms Downloads - documentation * DP-4176 - Utility Panel - documentation * DP-4176 - Utility Nav - documentation * DP-4176 - Header - documentation * DP-4176 - Button Search - documentation * DP-4176 - Site Logo - documentation * DP-4176 - Header Search - documentation * DP-4176 - Main Nav - documentation * DP-4176 - Button - documentation * DP-4176 - Button - adding link option and correcting styling classes * DP-4176 - Button Link - marking it as depreciated * DP-4176 - Floating Action - updated to use just the button atom * DP-4176 - Floating Action - documentation * DP-4176 - Buttons - Updates to SCSS selectors * DP-4176 - Floating Action - correcting styling classes * DP-4176 - Footer - documentation * DP-4176 - Heading / Util Panel - marking as in Progress so we can update * DP-4176 - Button - re-adding support for the 'theme' variable * DP-4176 - Social Links - documentation * DP-4176 - Footer Links - documentation * DP-4176 - Buttons - leaving old styles for backward compatibilty * DP-4167 - Callout Link - moving the info variable to a title attribute * DP-4176 - Buttons - incorrect indentation * DP-4167 - Rich Text - updating to include all accepted patterns * DP-4176 - Rich text sub patterns - documentation * DP-4167 - figure - documentation and modified to use --left/--right classes * DP-4167 - Table - documentation * DP-4080 - Versioning Documentation (#504) * DP-4080 - Versioning - first draft * Dp-4080 - let's try that again after saving the file. * DP-4080 - Versioning - updating Major version text * Second Draft * DP-4080 - Versions - Third draft with examples versions * DP-4080 - Version - reducing importance of Terms * DP-4080 - Version - Edits after reviewing. * DP-4080 - Versions - missed a few * DP-4080 - Versions - Weird copy and paste issue. * DP-4080 - Tweak to Minor version description * DP-4080 - Version Docs - fourth version * DP-4080 - Version doc - version 5 * DP-4178 - HowTo / Details - documentation * DP-4178 - Rich Text - typo in documentation * DP-4178 - Page Header - documentation * DP-4178 - Header Tags - documenation * DP-4178 - Publish State - documentation * DP-4178 - Divider - documentation * DP-4178 - Contact List - updated documentation * DP-4178 - Doc Template - slight tweak * DP-4178 - Contact Us - documentation * DP-4178 - Contact Group - documentation * DP-4178 - Contact Group - removing structured content * DP-4178 - Colored Heading - Documentation * DP-4178 - Sticky Nav - Documentation * DP-4178 - Tabular Data - documentation * DP-4178 - Action Step - documentation * DP-4178 - Steps Ordered - documentation * DP-4178 - Steps Unordered - documentation * DP-4178 - Stacked Row - documentation * DP-4187 - Guide - Documentation * DP-4178 - Emergency Header - documentation * DP-4177 - Emergency Header - switching divs to spans * DP-4178 - Emergency Alerts - documentation * 4178 - Emergency Header - documentation 2 * DP-4178 - Jump Links - documentation * DP-4177 - Jump Links - Adding missing "info" variable to links * DP-4178 - Split Columns - fixing indentation * DP-4178 - Stacked Row Section - documentation * DP-4178 - Illustrated Header - documentation * DP-4177 - Suggested Pages - Fixing variables for decorative and illustrated links * DP-4178 - Suggested Pages - documentation * DP-4178 - Callout Stats - documentation * DP-4177 - Guide Page - moving callout stat outside of Rich Text. * DP-4178 - Callout Alert - documentation * DP-4177 - Callout Alert - removed unused variables * DP-4178 - Callout Time - documentation * DP-4178 - Button Alert - documentation * DP-4178 - Emergency Alert - documentation * DP-4178 - Emergency Alerts - updating documentation * DP-4178 - Link - documentation * DP-4177 - Link - correcting variables to match best practice * DP-4177 - Link - forgot to save a change * DP-4177 - Button - fixed logic to use old "theme" variable for color. * DP-4178 - Button - fixing broken links * DP-4178 - Column Heading - documentation * DP-4177 - Column Heading - cleaning up code * DP-4178 - Location Template - documentation * DP-4178 - Location Pages - Documentation * DP-4178 - Header Alert - documentation * DP-4177 - Header Alert - adding "info" variable for decorative link * DP-4178 - Page Header - location variant documentation * DP-4178 - Location Banner - documentation * DP-4177 - Location Banner - correcting variable name * DP-4178 - Google Map - documentation * DP-4178 - Image Promos - documentation * DP-4178 - Image Promo - documentation * DP-4177 - Image Promo - switching 'type' for 'info' for the title link * DP-4178 - Image Promos - documentation * DP-4177 - Link - still fixing logic to switch from string to boolean * DP-4178 - Event Teaser - documentation * DP-4178 - Event Listing - documentation * DP-4178 - Location Icons - documentation * DP-4176 - Callout Link - making CSS backward compatible * DP-4176 - Floating Action - making code backward compatible * DP-4177 - Button - fixed logic to use old "theme" variable for color. * DP-4178 - Button - fixing broken links * DP-4176 - Button - switching color back to theme include values * DP-4176 - Comp Heading - correcting id value * DP-4176 - Decorative Link - removing schema.org and using title * DP-4176 - Linked List - Update docs * DP-4176 - Mapped Locations - updated docs * DP-4176 - Page Banner - Updated Docs * DP-4176 - Services Templa…
I created an Organism that includes an array of a single molecule.
http://mayflower.digital.mass.gov/?p=organisms-contact-list
I then created a variant of that Pattern using the contact-list~single-item.json method to show how the component should be rendered if there is only one molecule in the array.
http://mayflower.digital.mass.gov/?p=organisms-contact-list-single-item
After upgrading our site to the Drupal Pattern Lab (massgov/mayflower#488), the Variant began showing two items instead of one. The first item was being displayed correctly, but the second item, which shouldn't have been there, was coming from the base json file.
I'm not sure why this is happening, but it seems like a bug.
The text was updated successfully, but these errors were encountered: