Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

 


Note

Scaffolding:

...

  • [Feature]: SCORE-349: Refactor navigation controller logic from bootstrap ui into score core
  • [Feature]: SCORE-411: Change all Single Line Text field in SCORE and SCORE Bootstrap UI components to use Raw Text field that behaves just like the Single Text but also support arbitrary markup (e.g. ©, (TM), (R), etc.)
  • [Fix]: SCORE-332: Refactor models in SCORE bootstrap to remove empty class definitions within assignments
  • [Fix]: SCORE-412: If we have more then one carousel on one page only first one is working.
  • [Fix]: SCORE-370: Fix templates that are used to scaffold datasource locations and get lookup source item rules
  • [Fix]: SCORE-393: Rendering Models should be able to "withstand" a non-published / missing datasource when rendering in Normal mode. Using the new SCORE version, datasource models cannot be instantiated directly, we must use the static TryParse method. This forces us to account for missing (null) datasources.
    Note: future releases will introduce a visual cue that will highlight renderings with missing datasources in Page/Experience Editor

...


Warning
titleBreaking Changes

BaseMenuItem, MenuItem, DropListMenuItem, Breadcrumb View Models are moved into Score.Data assembly Score.Data.ViewModels.Navigation namespace

 


HTML Changes (marked in red)

Full width hero

<div class="score-fullwidth-jumbotron (hero class) (background class) jumbotron score-component">

    <div class="container">
        <div class="score-hero-image">
          <img src="..." />
        </div>
        <h1>Some Test Header Text
          <br/>Header Line 2</h1>
        <h2>Subtitle</h2>
        <div class="score-hero-body">This is some body text in the full-width hero.</div>
        <div class="score-call-to-action">
          <a href="/" class="btn btn-default">Do Something!</a>
        </div>
    </div>
</div>
Hero

<div class="score-jumbotron jumbotron (hero class) (background class) score-component" style="background-color:#ff0000;color:#000000;">

    <div class="score-hero-image">          
        <img src="..." />
    </div>
    <h1>Some Test Header Text
        <br/>Header Line 2</h1>
    <h2>Subtitle</h2>
    <div class="score-hero-body">This is some body text in the full-width hero.</div>
    <div class="score-call-to-action">
      <a href="/" class="btn btn-default">Do Something!</a>
    </div> 
</div>
Section Header

<div class="score-section-header (header style) score-component">

    <div class="score-header-image">
       <img src="..." />
    </div>
    <h2>What's On Deck
        <br/>Line 2</h2>
    <h3>Subtitle</h3>
</div>
Section Hero

<div class="score-jumbotron jumbotron (hero style) score-component" style="background:red;">

  <div class="score-hero-image">          
    <img src="..." />
  </div>
  <h2>Some Test Header Text
    <br/>Header Line 2</h2>
  <h3>Subtitle</h3>
  <div class="score-hero-body">This is some body text in the full-width hero.</div>
  <div class="score-call-to-action">
    <a href="/" class="btn btn-default">Do Something!</a>
  </div>
</div>
Image Button

<a class="score-component score-content score-image score-image-button" href="/">
  <img src="..." class="img-responsive" alt="">
</a> 


Highlight

<div class="thumbnail score-component score-content score-image score-highlight">
  <div class="score-highlight-header">

  </div>

...

  • (Fix): SCORE-822 Generated navigation for redirect pages should support _target property of link

...

1.5.27.0

  • (Fix): SCORE-1200 Clean up Youtube Component's Datasource