@explorer-1/vue 0.2.16 → 0.2.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@explorer-1/vue",
3
- "version": "0.2.16",
3
+ "version": "0.2.18",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -166,19 +166,13 @@ export const BaseStory = {
166
166
 
167
167
  procedures: [
168
168
  {
169
- procedure: {
170
- blocks: BlockStreamfieldMinimalData.body
171
- }
169
+ blocks: BlockStreamfieldMinimalData.body
172
170
  },
173
171
  {
174
- procedure: {
175
- blocks: BlockStreamfieldMinimalData.body
176
- }
172
+ blocks: BlockStreamfieldMinimalData.body
177
173
  },
178
174
  {
179
- procedure: {
180
- blocks: BlockStreamfieldMinimalData.body
181
- }
175
+ blocks: BlockStreamfieldMinimalData.body
182
176
  }
183
177
  ],
184
178
  proceduresHeading: 'Procedures heading',
@@ -264,7 +264,7 @@ const consolidatedSections = computed((): EduLessonSectionObject[] => {
264
264
  :class="computedClass"
265
265
  >
266
266
  <LayoutHelper
267
- indent="col-3"
267
+ indent="col-2"
268
268
  class="mb-10"
269
269
  >
270
270
  <DetailHeadline
@@ -295,7 +295,7 @@ const consolidatedSections = computed((): EduLessonSectionObject[] => {
295
295
  </LayoutHelper>
296
296
  <MetaPanel
297
297
  button="View Standards"
298
- theme="stars"
298
+ theme="primary"
299
299
  :primary-subject="data.primarySubject"
300
300
  :additional-subjects="data.additionalSubjects"
301
301
  :time="data.time"
@@ -15,9 +15,7 @@ export interface PageEduLessonSectionProps {
15
15
  heading: BlockHeadingObject
16
16
  blocks?: StreamfieldBlockData[]
17
17
  procedures?: {
18
- procedure: {
19
- blocks: StreamfieldBlockData[]
20
- }
18
+ blocks: StreamfieldBlockData[]
21
19
  }[]
22
20
  procedureSteps?: boolean
23
21
  text?: string
@@ -82,8 +80,8 @@ const anchorId = computed(() => {
82
80
  </BaseHeading>
83
81
  </LayoutHelper>
84
82
  <BlockStreamfield
85
- v-if="item?.procedure?.blocks"
86
- :data="item.procedure.blocks"
83
+ v-if="item?.blocks"
84
+ :data="item.blocks"
87
85
  />
88
86
  </template>
89
87
  </template>