forked from alibaba/ice
-
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.
* feat: angular app scaffold * chore: angular-materials * chore: folder * chore: optimize style * feat: angular block card-list * chore: generate angular materials * feat: upgrade angular scaffold * chore: rename angular-lite * feat: anlular-lite * chore: @angular-materials/[email protected] * feat: modify assets path * feat: ngx-admin * feat: remove angular-lite scaffold * feat: beta env * fix: master assets path * chore: add scaffoldConfig to ngx-admin * fix: syntax error * feat: add angualr blocks * chore: bump versions * fix: export component
- Loading branch information
Showing
379 changed files
with
17,018 additions
and
1,143 deletions.
There are no files selected for viewing
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,35 @@ | ||
{ | ||
"name": "@angular-materials/basic-form", | ||
"version": "1.0.1", | ||
"description": "基于 Bootstrap 4 的表单区块", | ||
"files": [ | ||
"src/", | ||
"assets/" | ||
], | ||
"author": { | ||
"name": "ICE Team", | ||
"email": "[email protected]" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/alibaba/ice" | ||
}, | ||
"license": "MIT", | ||
"keywords": [ | ||
"ice", | ||
"ice-block", | ||
"angular" | ||
], | ||
"blockConfig": { | ||
"name": "basic-form", | ||
"screenshot": "https://img.alicdn.com/tfs/TB1oIwnDWmWBuNjy1XaXXXCbXXa-1704-922.png", | ||
"title": "用户信息表单区块", | ||
"categories": [ | ||
"表单" | ||
] | ||
}, | ||
"publishConfig": { | ||
"access": "public", | ||
"registry": "http://registry.npmjs.com" | ||
} | ||
} |
46 changes: 46 additions & 0 deletions
46
angular-materials/blocks/basic-form/src/basic-form.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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<form> | ||
<div class="form-row"> | ||
<div class="form-group col-md-6"> | ||
<label for="inputEmail4">Email</label> | ||
<input type="email" class="form-control" id="inputEmail4" placeholder="Email"> | ||
</div> | ||
<div class="form-group col-md-6"> | ||
<label for="inputPassword4">Password</label> | ||
<input type="password" class="form-control" id="inputPassword4" placeholder="Password"> | ||
</div> | ||
</div> | ||
<div class="form-group"> | ||
<label for="inputAddress">Address</label> | ||
<input type="text" class="form-control" id="inputAddress" placeholder="1234 Main St"> | ||
</div> | ||
<div class="form-group"> | ||
<label for="inputAddress2">Address 2</label> | ||
<input type="text" class="form-control" id="inputAddress2" placeholder="Apartment, studio, or floor"> | ||
</div> | ||
<div class="form-row"> | ||
<div class="form-group col-md-6"> | ||
<label for="inputCity">City</label> | ||
<input type="text" class="form-control" id="inputCity"> | ||
</div> | ||
<div class="form-group col-md-4"> | ||
<label for="inputState">State</label> | ||
<select id="inputState" class="form-control"> | ||
<option selected>Choose...</option> | ||
<option>...</option> | ||
</select> | ||
</div> | ||
<div class="form-group col-md-2"> | ||
<label for="inputZip">Zip</label> | ||
<input type="text" class="form-control" id="inputZip"> | ||
</div> | ||
</div> | ||
<div class="form-group"> | ||
<div class="form-check"> | ||
<input class="form-check-input" type="checkbox" id="gridCheck"> | ||
<label class="form-check-label" for="gridCheck"> | ||
Check me out | ||
</label> | ||
</div> | ||
</div> | ||
<button type="submit" class="btn btn-primary">Sign in</button> | ||
</form> |
13 changes: 13 additions & 0 deletions
13
angular-materials/blocks/basic-form/src/basic-form.component.ts
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,13 @@ | ||
import { Component, OnInit } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'basic-form', | ||
templateUrl: './basic-form.component.html', | ||
styleUrls: ['./basic-form.style.css'], | ||
}) | ||
export class BasicFormComponent implements OnInit { | ||
|
||
constructor() {} | ||
|
||
ngOnInit() {} | ||
} |
File renamed without changes.
File renamed without changes
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"name": "@angular-materials/table-list", | ||
"version": "1.0.1", | ||
"description": "基于 Bootstrap 4 的表格列表区块", | ||
"files": [ | ||
"src/", | ||
"assets/" | ||
], | ||
"author": { | ||
"name": "ICE Team", | ||
"email": "[email protected]" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/alibaba/ice" | ||
}, | ||
"license": "MIT", | ||
"keywords": [ | ||
"ice", | ||
"ice-block", | ||
"angular" | ||
], | ||
"blockConfig": { | ||
"name": "table-list", | ||
"screenshot": "https://img.alicdn.com/tfs/TB1IWx1D1uSBuNjSsplXXbe8pXa-1666-864.png", | ||
"title": "表格列表", | ||
"categories": [ | ||
"列表" | ||
] | ||
}, | ||
"publishConfig": { | ||
"access": "public", | ||
"registry": "http://registry.npmjs.com" | ||
} | ||
} |
61 changes: 61 additions & 0 deletions
61
angular-materials/blocks/table-list/src/table-list.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 |
---|---|---|
@@ -0,0 +1,61 @@ | ||
<table class="table"> | ||
<thead class="thead-dark"> | ||
<tr> | ||
<th scope="col">#</th> | ||
<th scope="col">First</th> | ||
<th scope="col">Last</th> | ||
<th scope="col">Handle</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr> | ||
<th scope="row">1</th> | ||
<td>Mark</td> | ||
<td>Otto</td> | ||
<td>@mdo</td> | ||
</tr> | ||
<tr> | ||
<th scope="row">2</th> | ||
<td>Jacob</td> | ||
<td>Thornton</td> | ||
<td>@fat</td> | ||
</tr> | ||
<tr> | ||
<th scope="row">3</th> | ||
<td>Larry</td> | ||
<td>the Bird</td> | ||
<td>@twitter</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
|
||
<table class="table"> | ||
<thead class="thead-light"> | ||
<tr> | ||
<th scope="col">#</th> | ||
<th scope="col">First</th> | ||
<th scope="col">Last</th> | ||
<th scope="col">Handle</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr> | ||
<th scope="row">1</th> | ||
<td>Mark</td> | ||
<td>Otto</td> | ||
<td>@mdo</td> | ||
</tr> | ||
<tr> | ||
<th scope="row">2</th> | ||
<td>Jacob</td> | ||
<td>Thornton</td> | ||
<td>@fat</td> | ||
</tr> | ||
<tr> | ||
<th scope="row">3</th> | ||
<td>Larry</td> | ||
<td>the Bird</td> | ||
<td>@twitter</td> | ||
</tr> | ||
</tbody> | ||
</table> |
14 changes: 14 additions & 0 deletions
14
angular-materials/blocks/table-list/src/table-list.component.ts
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,14 @@ | ||
import { Component, OnInit } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'table-list', | ||
templateUrl: './table-list.component.html', | ||
styleUrls: ['./table-list.style.css'], | ||
}) | ||
export class TableListComponent implements OnInit { | ||
title = 'Dashboard'; | ||
|
||
constructor() {} | ||
|
||
ngOnInit() {} | ||
} |
Empty file.
4 changes: 0 additions & 4 deletions
4
angular-materials/scaffolds/angular-lite/.iceworks/pageTemplate/index.ts.ejs
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.