-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
22846 - show resolution dates in amalgamations (#745)
* 22846 - show resolution dates in amalgamations * 22846 - fixes after review 1 * 22846 - fixes after review 2 * 22846 - fixes after review 3 * 22846 - update package version
- Loading branch information
1 parent
fbb87ff
commit 6be0690
Showing
15 changed files
with
230 additions
and
22 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
<template> | ||
<div | ||
v-if="resolutionList.length > 0" | ||
id="list-resolutions" | ||
> | ||
<v-divider class="mx-4" /> | ||
<article class="pa-4"> | ||
<v-row no-gutters> | ||
<v-col | ||
cols="12" | ||
sm="3" | ||
class="pr-4" | ||
> | ||
<label | ||
id="resolution-label" | ||
>Resolution or Court Order Dates</label> | ||
</v-col> | ||
<v-col | ||
cols="12" | ||
sm="9" | ||
> | ||
<p> | ||
Dates of resolution or court orders to alter the company's share structure or the | ||
special rights or restrictions to a class or a series of shares: | ||
</p> | ||
</v-col> | ||
</v-row> | ||
<v-row no-gutters> | ||
<v-col | ||
cols="12" | ||
sm="3" | ||
class="pr-4" | ||
/> | ||
<v-col | ||
cols="12" | ||
sm="9" | ||
> | ||
<div> | ||
<tr | ||
v-for="(item, index) in resolutionList" | ||
:key="index" | ||
> | ||
<td class="font-weight-bold"> | ||
{{ item.date }} | ||
</td> | ||
</tr> | ||
</div> | ||
</v-col> | ||
</v-row> | ||
</article> | ||
</div> | ||
</template> | ||
|
||
<script lang="ts"> | ||
import { Component, Vue } from 'vue-property-decorator' | ||
import { useStore } from '@/store/store' | ||
import { Getter } from 'pinia-class' | ||
import { ResolutionIF } from '@/interfaces' | ||
@Component({}) | ||
export default class ListResolutions extends Vue { | ||
@Getter(useStore) getResolutions!: ResolutionIF[] | ||
get resolutionList (): ResolutionIF[] { | ||
return this.getResolutions | ||
} | ||
} | ||
</script> | ||
|
||
<style lang="scss" scoped> | ||
@import '@/assets/styles/theme.scss'; | ||
#list-resolutions { | ||
font-size: $px-14; | ||
color: $gray7; | ||
p { | ||
font-size: $px-14; | ||
} | ||
} | ||
label { | ||
font-weight: bold; | ||
color: $gray9; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.