worksafe-component-library
Advanced tools
Comparing version 1.5.4 to 1.5.5
# Changelog | ||
- vX | ||
- | ||
- v1.5.5 | ||
- Remove Action Steps component from PageContent | ||
- AppNav component | ||
- renders according to showUserMenu prop | ||
- update styles for title | ||
- AppForm - remove margin top | ||
- v1.5.4 | ||
@@ -3,0 +12,0 @@ - Embed checkboxes in css |
{ | ||
"name": "worksafe-component-library", | ||
"version": "1.5.4", | ||
"version": "1.5.5", | ||
"description": "A Vue.js component library for use in WorkSafe family websites", | ||
@@ -5,0 +5,0 @@ "main": "./src/index.js", |
@@ -96,3 +96,3 @@ import { storiesOf } from '@storybook/vue' | ||
components: { ActionSteps }, | ||
template: '<action-steps :blocks="blocksVideo" :step="1" :topic="topic" :labelCheck="labelCheck"></action-steps>', | ||
template: '<action-steps :blocks="blocksVideo" :step="1" :topic="topic" :checkLabel="checkLabel"></action-steps>', | ||
data () { | ||
@@ -109,3 +109,3 @@ return { | ||
components: { ActionSteps }, | ||
template: '<action-steps :blocks="blocksChecklist" :step="2" :topic="topic" :labelCheck="labelCheck"></action-steps>', | ||
template: '<action-steps :blocks="blocksChecklist" :step="2" :topic="topic" :checkLabel="checkLabel"></action-steps>', | ||
data () { | ||
@@ -122,3 +122,3 @@ return { | ||
components: { ActionSteps }, | ||
template: '<action-steps :blocks="blocksText" :step="3" :topic="topic" :labelCheck="labelCheck"></action-steps>', | ||
template: '<action-steps :blocks="blocksText" :step="3" :topic="topic" :checkLabel="checkLabel"></action-steps>', | ||
data () { | ||
@@ -135,3 +135,3 @@ return { | ||
components: { ActionSteps }, | ||
template: '<action-steps :blocks="blocksCards" :step="4" :topic="topic" :text="text"></action-steps>', | ||
template: '<action-steps :blocks="blocksCards" :step="4" :topic="topic" :checkLabel="checkLabel"></action-steps>', | ||
data () { | ||
@@ -148,3 +148,3 @@ return { | ||
components: { ActionSteps }, | ||
template: '<action-steps :blocks="blocksMultiple" :step="5" :topic="topic" :text="text"></action-steps>', | ||
template: '<action-steps :blocks="blocksMultiple" :step="5" :topic="topic" :checkLabel="checkLabel"></action-steps>', | ||
data () { | ||
@@ -151,0 +151,0 @@ return { |
@@ -7,3 +7,3 @@ import { storiesOf } from '@storybook/vue' | ||
const text = "I've completed this step" | ||
const checkLabel = "I've completed this step" | ||
@@ -14,8 +14,8 @@ storiesOf('Components/SubComponents/ActionCheckbox', module) | ||
components: { ActionCheckbox }, | ||
template: '<action-checkbox :text="text"></action-checkbox>', | ||
template: '<action-checkbox :checkLabel="checkLabel" :checkKey="1"></action-checkbox>', | ||
data () { | ||
return { | ||
text | ||
checkLabel | ||
} | ||
} | ||
})) |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
1122619