-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated attributes and weapons section
Add new elements and adjusted layout
- Loading branch information
Showing
28 changed files
with
16,774 additions
and
100 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
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 |
---|---|---|
@@ -1 +1 @@ | ||
<randomInput type="number" min="{{min}}" max="{{max}}" label="{{label}}" (randomizeEvent)="randomize()" ></randomInput> | ||
<random-input type="number" min="{{min}}" max="{{max}}" label="{{label}}" (randomizeEvent)="randomize()" ></random-input> |
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,16 @@ | ||
import {Component, Output, Input, EventEmitter, ViewChild} from '@angular/core'; | ||
import {RandomInputComponent} from '../../shared/components/randomInput/randomInput.component'; | ||
import {CalculatedInputComponent} from '../../shared/components/calculatedInput/calculatedInput.component'; | ||
|
||
@Component({ | ||
selector: 'paranoia-bonus-input', | ||
templateUrl: './bonus.component.html', | ||
styleUrls: ['./bonus.component.scss'] | ||
}) | ||
export class BonusComponent extends CalculatedInputComponent { | ||
|
||
@ViewChild(CalculatedInputComponent, {static: false}) randomInput: CalculatedInputComponent; | ||
|
||
public randomize () { | ||
} | ||
} |
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 |
---|---|---|
@@ -1,10 +1 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>$Title$</title> | ||
</head> | ||
<body> | ||
$END$ | ||
</body> | ||
</html> | ||
<calculated-input [label]="label" [disabled]="disabled" [map]="map"></calculated-input> |
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
2 changes: 1 addition & 1 deletion
2
src/app/paranoia/randomCharacterName/randomCharacterName.component.html
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 |
---|---|---|
@@ -1 +1 @@ | ||
<randomInput type="text" label="{{label}}" (randomizeEvent)="randomize()" ></randomInput> | ||
<random-input type="text" label="{{label}}" (randomizeEvent)="randomize()" ></random-input> |
Oops, something went wrong.