@explorer-1/vue 0.2.25 → 0.2.26

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.25",
3
+ "version": "0.2.26",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -40,6 +40,7 @@ const anchorId = computed(() => {
40
40
  <template>
41
41
  <section
42
42
  :id="anchorId"
43
+ class="PageEduLessonSection"
43
44
  :aria-label="heading.heading"
44
45
  >
45
46
  <LayoutHelper
@@ -79,10 +80,12 @@ const anchorId = computed(() => {
79
80
  {{ 'Section ' + (Number(index) + 1) }}
80
81
  </BaseHeading>
81
82
  </LayoutHelper>
82
- <BlockStreamfield
83
- v-if="item?.blocks"
84
- :data="item.blocks"
85
- />
83
+ <div class="PageEduProcedureSection">
84
+ <BlockStreamfield
85
+ v-if="item?.blocks"
86
+ :data="item.blocks"
87
+ />
88
+ </div>
86
89
  </template>
87
90
  </template>
88
91
  <LayoutHelper
@@ -94,3 +97,27 @@ const anchorId = computed(() => {
94
97
  </LayoutHelper>
95
98
  </section>
96
99
  </template>
100
+ <style lang="scss">
101
+ .PageEduProcedureSection {
102
+ counter-reset: listitem;
103
+ .BlockText ol {
104
+ list-style-type: none;
105
+ counter-reset: nestedlistitem;
106
+ > li {
107
+ counter-increment: listitem;
108
+ &::marker {
109
+ content: counter(listitem) '. ';
110
+ }
111
+ }
112
+ ol {
113
+ list-style-type: none;
114
+ > li {
115
+ counter-increment: nestedlistitem;
116
+ &::marker {
117
+ content: counter(nestedlistitem) '. ';
118
+ }
119
+ }
120
+ }
121
+ }
122
+ }
123
+ </style>