forked from ngx-builders/ngx-bulma
-
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.
Merge pull request #1 from santoshyadav198613/master
Taking remote latest
- Loading branch information
Showing
22 changed files
with
162 additions
and
58 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Desktop (please complete the following information):** | ||
- OS: [e.g. iOS] | ||
- Browser [e.g. chrome, safari] | ||
- Version [e.g. 22] | ||
|
||
**Smartphone (please complete the following information):** | ||
- Device: [e.g. iPhone6] | ||
- OS: [e.g. iOS8.1] | ||
- Browser [e.g. stock browser, safari] | ||
- Version [e.g. 22] | ||
|
||
**Additional context** | ||
Add any other context about the problem here. | ||
|
||
## I would be willing to submit a PR to fix this issue | ||
|
||
[ ] Yes (Assistance is provided if you need help submitting a pull request) | ||
[ ] No |
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,25 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. | ||
|
||
## I would be willing to submit a PR to fix this issue | ||
|
||
[ ] Yes (Assistance is provided if you need help submitting a pull request) | ||
[ ] No |
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,26 @@ | ||
name: Node CI | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [10.x, 12.x] | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: npm install, build, and test | ||
run: | | ||
npm install | ||
npm run build:lib | ||
npm run build --bulma-app | ||
env: | ||
CI: true |
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
15 changes: 0 additions & 15 deletions
15
projects/ngx-bulma/src/lib/panel/bulma-panel-block/bulma-panel-block.component.ts
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
projects/ngx-bulma/src/lib/panel/bulma-panel-heading/bulma-panel-heading.component.ts
This file was deleted.
Oops, something went wrong.
3 changes: 0 additions & 3 deletions
3
projects/ngx-bulma/src/lib/panel/bulma-panel-tabs/bulma-panel-tabs.component.html
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
projects/ngx-bulma/src/lib/panel/bulma-panel-tabs/bulma-panel-tabs.component.ts
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
export * from './panel.component'; | ||
export * from './panel.module'; | ||
export * from './panel-block/panel-block.component'; | ||
export * from './panel-heading/panel-heading.component'; | ||
export * from './panel-tabs/panel-tabs.component'; |
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...block/bulma-panel-block.component.spec.ts → ...panel-block/panel-block.component.spec.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
17 changes: 17 additions & 0 deletions
17
projects/ngx-bulma/src/lib/panel/panel-block/panel-block.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,17 @@ | ||
import { Component, OnInit, ViewEncapsulation, ChangeDetectionStrategy } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'bu-panel-block', | ||
templateUrl: './panel-block.component.html', | ||
styleUrls: ['./panel-block.component.css'], | ||
encapsulation: ViewEncapsulation.None, | ||
changeDetection: ChangeDetectionStrategy.OnPush | ||
}) | ||
export class BulmaPanelBlockComponent implements OnInit { | ||
|
||
constructor() { } | ||
|
||
ngOnInit() { | ||
} | ||
|
||
} |
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...ing/bulma-panel-heading.component.spec.ts → ...l-heading/panel-heading.component.spec.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
17 changes: 17 additions & 0 deletions
17
projects/ngx-bulma/src/lib/panel/panel-heading/panel-heading.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,17 @@ | ||
import { Component, OnInit , ViewEncapsulation, ChangeDetectionStrategy } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'bu-panel-heading', | ||
templateUrl: './panel-heading.component.html', | ||
styleUrls: ['./panel-heading.component.css'], | ||
encapsulation: ViewEncapsulation.None, | ||
changeDetection: ChangeDetectionStrategy.OnPush | ||
}) | ||
export class BulmaPanelHeadingComponent implements OnInit { | ||
|
||
constructor() { } | ||
|
||
ngOnInit() { | ||
} | ||
|
||
} |
File renamed without changes.
3 changes: 3 additions & 0 deletions
3
projects/ngx-bulma/src/lib/panel/panel-tabs/panel-tabs.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,3 @@ | ||
<p class="panel-tabs"> | ||
<ng-content></ng-content> | ||
</p> |
2 changes: 1 addition & 1 deletion
2
...l-tabs/bulma-panel-tabs.component.spec.ts → ...l/panel-tabs/panel-tabs.component.spec.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
17 changes: 17 additions & 0 deletions
17
projects/ngx-bulma/src/lib/panel/panel-tabs/panel-tabs.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,17 @@ | ||
import { Component, OnInit, ViewEncapsulation, ChangeDetectionStrategy } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'bu-panel-tabs', | ||
templateUrl: './panel-tabs.component.html', | ||
styleUrls: ['./panel-tabs.component.css'], | ||
encapsulation: ViewEncapsulation.None, | ||
changeDetection: ChangeDetectionStrategy.OnPush | ||
}) | ||
export class BulmaPanelTabsComponent implements OnInit { | ||
|
||
constructor() { } | ||
|
||
ngOnInit() { | ||
} | ||
|
||
} |
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,17 +1,17 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { CommonModule } from '@angular/common'; | ||
import { BulmaPanelHeadingComponent } from './bulma-panel-heading/bulma-panel-heading.component'; | ||
import { BulmaPanelBlockComponent } from './bulma-panel-block/bulma-panel-block.component'; | ||
import { BulmaPanelTabsComponent } from './bulma-panel-tabs/bulma-panel-tabs.component'; | ||
import { BulmaPanelHeadingComponent } from './panel-heading/panel-heading.component'; | ||
import { BulmaPanelBlockComponent } from './panel-block/panel-block.component'; | ||
import { BulmaPanelTabsComponent } from './panel-tabs/panel-tabs.component'; | ||
import { BulmaPanelComponent } from './panel.component'; | ||
|
||
|
||
|
||
@NgModule({ | ||
declarations: [BulmaPanelComponent, BulmaPanelHeadingComponent, BulmaPanelBlockComponent, BulmaPanelTabsComponent], | ||
declarations: [BulmaPanelComponent, BulmaPanelHeadingComponent, | ||
BulmaPanelBlockComponent, BulmaPanelTabsComponent], | ||
imports: [ | ||
CommonModule | ||
], | ||
exports: [BulmaPanelComponent, BulmaPanelHeadingComponent, BulmaPanelBlockComponent, BulmaPanelTabsComponent] | ||
exports: [BulmaPanelComponent, BulmaPanelHeadingComponent, | ||
BulmaPanelBlockComponent, BulmaPanelTabsComponent] | ||
}) | ||
export class BulmaPanelModule { } |