Skip to content

Commit d543e27

Browse files
committed
Rename SchemaInfoIcon to SchemaGuideLink
1 parent 880d002 commit d543e27

9 files changed

Lines changed: 32 additions & 32 deletions
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import { defineComponent } from 'vue'
99
1010
export default defineComponent({
11-
name: 'SchemaInfoIcon',
11+
name: 'SchemaGuideLink',
1212
props: {
1313
anchor: {
1414
type: String,

src/components/ScreenAbstract.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<div id="form-content">
1414
<p class="question">
1515
What is the abstract of the work?
16-
<SchemaInfoIcon anchor="#abstract" />
16+
<SchemaGuideLink anchor="#abstract" />
1717
</p>
1818
<q-input
1919
autogrow
@@ -37,15 +37,15 @@
3737
</template>
3838

3939
<script lang="ts">
40-
import SchemaInfoIcon from 'components/SchemaInfoIcon.vue'
40+
import SchemaGuideLink from 'components/SchemaGuideLink.vue'
4141
import Stepper from 'components/Stepper.vue'
4242
import StepperActions from 'components/StepperActions.vue'
4343
import { defineComponent } from 'vue'
4444
import { useCff } from '../store/cff'
4545
export default defineComponent({
4646
name: 'ScreenAbstract',
4747
components: {
48-
SchemaInfoIcon,
48+
SchemaGuideLink,
4949
Stepper,
5050
StepperActions
5151
},

src/components/ScreenAuthors.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<div id="form-content">
1313
<p class="question">
1414
Who are the author(s) of the work?
15-
<SchemaInfoIcon anchor="#authors" />
15+
<SchemaGuideLink anchor="#authors" />
1616
</p>
1717
<div class="scroll-to-bottom-container">
1818
<span class="bottom" />
@@ -76,7 +76,7 @@
7676

7777
<script lang="ts">
7878
import { computed, defineComponent, nextTick, ref } from 'vue'
79-
import SchemaInfoIcon from 'components/SchemaInfoIcon.vue'
79+
import SchemaGuideLink from 'components/SchemaGuideLink.vue'
8080
import Stepper from 'components/Stepper.vue'
8181
import StepperActions from 'components/StepperActions.vue'
8282
import AuthorCardEditing from 'components/AuthorCardEditing.vue'
@@ -90,7 +90,7 @@ import { authorsErrors } from 'src/authors-errors'
9090
export default defineComponent({
9191
name: 'ScreenAuthors',
9292
components: {
93-
SchemaInfoIcon,
93+
SchemaGuideLink,
9494
Stepper,
9595
StepperActions,
9696
AuthorCardEditing,

src/components/ScreenIdentifiers.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<div id="form-content">
1313
<p class="question">
1414
What persistent identifiers are available for the work?
15-
<SchemaInfoIcon anchor="#identifiers" />
15+
<SchemaGuideLink anchor="#identifiers" />
1616
</p>
1717
<div class="scroll-to-bottom-container">
1818
<span class="bottom" />
@@ -77,7 +77,7 @@
7777

7878
<script lang="ts">
7979
import { computed, defineComponent, nextTick, ref } from 'vue'
80-
import SchemaInfoIcon from 'components/SchemaInfoIcon.vue'
80+
import SchemaGuideLink from 'components/SchemaGuideLink.vue'
8181
import Stepper from 'components/Stepper.vue'
8282
import StepperActions from 'components/StepperActions.vue'
8383
import IdentifierCardEditing from 'components/IdentifierCardEditing.vue'
@@ -91,7 +91,7 @@ import { identifiersErrors } from 'src/identifiers-errors'
9191
export default defineComponent({
9292
name: 'ScreenIdentifiers',
9393
components: {
94-
SchemaInfoIcon,
94+
SchemaGuideLink,
9595
Stepper,
9696
StepperActions,
9797
IdentifierCardEditing,

src/components/ScreenKeywords.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<div id="form-content">
1313
<p class="question">
1414
What keywords describe the work?
15-
<SchemaInfoIcon anchor="#keywords" />
15+
<SchemaGuideLink anchor="#keywords" />
1616
</p>
1717
<div class="scroll-to-bottom-container">
1818
<span class="bottom" />
@@ -61,7 +61,7 @@
6161
</template>
6262

6363
<script lang="ts">
64-
import SchemaInfoIcon from 'components/SchemaInfoIcon.vue'
64+
import SchemaGuideLink from 'components/SchemaGuideLink.vue'
6565
import Stepper from 'components/Stepper.vue'
6666
import StepperActions from 'components/StepperActions.vue'
6767
import Keyword from 'components/Keyword.vue'
@@ -74,7 +74,7 @@ import { getMyErrors } from 'src/store/validator'
7474
export default defineComponent({
7575
name: 'ScreenKeywords',
7676
components: {
77-
SchemaInfoIcon,
77+
SchemaGuideLink,
7878
Stepper,
7979
StepperActions,
8080
Keyword

src/components/ScreenLicense.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<div id="form-content">
1313
<p class="question">
1414
What is the license of the work?
15-
<SchemaInfoIcon anchor="#license" />
15+
<SchemaGuideLink anchor="#license" />
1616
</p>
1717
<q-select
1818
bg-color="white"
@@ -52,14 +52,14 @@ import { defineComponent, ref } from 'vue'
5252
import { useCff } from '../store/cff'
5353
import { QSelect } from 'quasar'
5454
import schema from '../schemas/1.2.0/schema.json'
55-
import SchemaInfoIcon from 'components/SchemaInfoIcon.vue'
55+
import SchemaGuideLink from 'components/SchemaGuideLink.vue'
5656
import Stepper from 'components/Stepper.vue'
5757
import StepperActions from 'components/StepperActions.vue'
5858
5959
export default defineComponent({
6060
name: 'ScreenLicense',
6161
components: {
62-
SchemaInfoIcon,
62+
SchemaGuideLink,
6363
Stepper,
6464
StepperActions
6565
},

src/components/ScreenRelatedResources.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<div id="form-content">
1313
<p class="question">
1414
What is the URL of the work in a source code repository?
15-
<SchemaInfoIcon anchor="#repository-code" />
15+
<SchemaGuideLink anchor="#repository-code" />
1616
</p>
1717
<q-input
1818
bg-color="white"
@@ -27,7 +27,7 @@
2727

2828
<p class="question">
2929
What is the URL of a landing page/website for the work?
30-
<SchemaInfoIcon anchor="#url" />
30+
<SchemaGuideLink anchor="#url" />
3131
</p>
3232
<q-input
3333
bg-color="white"
@@ -42,7 +42,7 @@
4242

4343
<p class="question">
4444
What is the URL of the work in a repository?
45-
<SchemaInfoIcon anchor="#repository" />
45+
<SchemaGuideLink anchor="#repository" />
4646
</p>
4747
<q-input
4848
bg-color="white"
@@ -57,7 +57,7 @@
5757

5858
<p class="question">
5959
What is the URL of the work in a build artifact/binary repository?
60-
<SchemaInfoIcon anchor="#repository-artifact" />
60+
<SchemaGuideLink anchor="#repository-artifact" />
6161
</p>
6262
<q-input
6363
bg-color="white"
@@ -78,7 +78,7 @@
7878
</template>
7979

8080
<script lang="ts">
81-
import SchemaInfoIcon from 'components/SchemaInfoIcon.vue'
81+
import SchemaGuideLink from 'components/SchemaGuideLink.vue'
8282
import Stepper from 'components/Stepper.vue'
8383
import StepperActions from 'components/StepperActions.vue'
8484
import { computed, defineComponent } from 'vue'
@@ -88,7 +88,7 @@ import { getMyErrors } from 'src/store/validator'
8888
export default defineComponent({
8989
name: 'ScreenRelatedResources',
9090
components: {
91-
SchemaInfoIcon,
91+
SchemaGuideLink,
9292
Stepper,
9393
StepperActions
9494
},

src/components/ScreenStart.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<div id="form-content">
1414
<p class="question">
1515
What is the title of the work?
16-
<SchemaInfoIcon anchor="#title" />
16+
<SchemaGuideLink anchor="#title" />
1717
</p>
1818
<q-input
1919
bg-color="white"
@@ -27,7 +27,7 @@
2727
/>
2828
<p class="question">
2929
What do you want citers to do with the information provided in your CITATION.cff file?
30-
<SchemaInfoIcon anchor="#message" />
30+
<SchemaGuideLink anchor="#message" />
3131
</p>
3232
<q-input
3333
bg-color="white"
@@ -62,7 +62,7 @@
6262
</q-input>
6363
<p class="question">
6464
What type of work does this CITATION.cff describe?
65-
<SchemaInfoIcon anchor="#type" />
65+
<SchemaGuideLink anchor="#type" />
6666
</p>
6767
<q-option-group
6868
type="radio"
@@ -79,7 +79,7 @@
7979
</template>
8080

8181
<script lang="ts">
82-
import SchemaInfoIcon from 'components/SchemaInfoIcon.vue'
82+
import SchemaGuideLink from 'components/SchemaGuideLink.vue'
8383
import Stepper from 'components/Stepper.vue'
8484
import StepperActions from 'components/StepperActions.vue'
8585
import { computed, defineComponent } from 'vue'
@@ -89,7 +89,7 @@ import { getMyErrors } from 'src/store/validator'
8989
export default defineComponent({
9090
name: 'ScreenStart',
9191
components: {
92-
SchemaInfoIcon,
92+
SchemaGuideLink,
9393
Stepper,
9494
StepperActions
9595
},

src/components/ScreenVersionSpecific.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<div id="form-content">
1313
<p class="question">
1414
What is the commit identifier of the work?
15-
<SchemaInfoIcon anchor="#commit" />
15+
<SchemaGuideLink anchor="#commit" />
1616
</p>
1717
<q-input
1818
bg-color="white"
@@ -25,7 +25,7 @@
2525

2626
<p class="question">
2727
What is the version of the work?
28-
<SchemaInfoIcon anchor="#version" />
28+
<SchemaGuideLink anchor="#version" />
2929
</p>
3030
<q-input
3131
bg-color="white"
@@ -38,7 +38,7 @@
3838

3939
<p class="question">
4040
When was the version released?
41-
<SchemaInfoIcon anchor="#date-released" />
41+
<SchemaGuideLink anchor="#date-released" />
4242
</p>
4343
<q-input
4444
bg-color="white"
@@ -91,7 +91,7 @@
9191
</template>
9292

9393
<script lang="ts">
94-
import SchemaInfoIcon from 'components/SchemaInfoIcon.vue'
94+
import SchemaGuideLink from 'components/SchemaGuideLink.vue'
9595
import Stepper from 'components/Stepper.vue'
9696
import StepperActions from 'components/StepperActions.vue'
9797
import { computed, defineComponent } from 'vue'
@@ -101,7 +101,7 @@ import { getMyErrors } from 'src/store/validator'
101101
export default defineComponent({
102102
name: 'ScreenVersionSpecific',
103103
components: {
104-
SchemaInfoIcon,
104+
SchemaGuideLink,
105105
Stepper,
106106
StepperActions
107107
},

0 commit comments

Comments
 (0)