This repository has been archived by the owner on Dec 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into freeman-closed-complete
- Loading branch information
Showing
280 changed files
with
3,600 additions
and
2,186 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
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,17 @@ | ||
import nodeResolve from 'rollup-plugin-node-resolve'; | ||
import commonjs from 'rollup-plugin-commonjs'; | ||
import shared from './shared'; | ||
|
||
export default { | ||
entry: '../../dist/demo.js', | ||
dest: '../../dist/bundles/demo.umd.js', | ||
format: 'umd', | ||
moduleName: 'skyux.demo', | ||
context: 'this', | ||
globals: shared.globals, | ||
external: shared.external, | ||
plugins: [ | ||
nodeResolve(), | ||
commonjs() | ||
] | ||
}; |
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,9 @@ | ||
import rollupConfig from './rollup.config.js'; | ||
import uglify from 'rollup-plugin-uglify'; | ||
|
||
var minConfig = rollupConfig; | ||
|
||
minConfig.dest = '../../dist/bundles/demo.umd.min.js'; | ||
minConfig.plugins.push(uglify()); | ||
|
||
export default minConfig; |
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,24 @@ | ||
export default { | ||
globals: { | ||
'@angular/common': 'ng.common', | ||
'@angular/compiler': 'ng.compiler', | ||
'@angular/core': 'ng.core', | ||
'@angular/forms': 'ng.forms', | ||
'@angular/router': 'ng.router', | ||
'ng2-dragula/ng2-dragula': 'ng2.dragula', | ||
'@angular/platform-browser-dynamic': 'ng.platformBrowserDynamic', | ||
'@angular/platform-browser': 'ng.platformBrowser', | ||
'moment': 'moment' | ||
}, | ||
external: [ | ||
'@angular/core', | ||
'@angular/common', | ||
'@angular/compiler', | ||
'@angular/forms', | ||
'@angular/router', | ||
'@angular/platform-browser', | ||
'@angular/platform-browser-dynamic', | ||
'ng2-dragula/ng2-dragula', | ||
'moment/moment' | ||
] | ||
}; |
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,16 @@ | ||
# Fail the build if this step fails | ||
set -e | ||
|
||
npm run clean:srctemp | ||
node config/utils/stage-ts.js | ||
cd .srctemp | ||
ngc | ||
cd ../ | ||
npm run compile:sass | ||
npm run copy:design-tokens | ||
cd config/rollup | ||
rollup -c rollup.config.js | ||
rollup -c rollup.min.config.js | ||
rollup -c rollup.demo.config.js | ||
rollup -c rollup.demo.min.config.js | ||
npm run clean:srctemp |
Binary file added
BIN
+23.3 KB
...-spa-visual-tests/screenshots-baseline/confirm-Custom-chrome-1000x800-dpr-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+23.2 KB
...x-spa-visual-tests/screenshots-baseline/confirm-Custom-chrome-480x800-dpr-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+5.33 KB
skyux-spa-visual-tests/screenshots-baseline/confirm-Ok-chrome-1000x800-dpr-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+5.21 KB
skyux-spa-visual-tests/screenshots-baseline/confirm-Ok-chrome-480x800-dpr-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.43 KB
...a-visual-tests/screenshots-baseline/confirm-Yescancel-chrome-1000x800-dpr-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.3 KB
...pa-visual-tests/screenshots-baseline/confirm-Yescancel-chrome-480x800-dpr-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+7 KB
...visual-tests/screenshots-baseline/confirm-Yesnocancel-chrome-1000x800-dpr-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.86 KB
...-visual-tests/screenshots-baseline/confirm-Yesnocancel-chrome-480x800-dpr-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
27 changes: 27 additions & 0 deletions
27
skyux-spa-visual-tests/src/app/confirm/confirm-visual.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,27 @@ | ||
<button | ||
type="button" | ||
class="sky-btn sky-btn-primary sky-confirm-btn-ok" | ||
(click)="openOKConfirm()"> | ||
OK confirm | ||
</button> | ||
|
||
<button | ||
type="button" | ||
class="sky-btn sky-btn-primary sky-confirm-btn-yescancel" | ||
(click)="openYesCancelConfirm()"> | ||
Yes/cancel confirm | ||
</button> | ||
|
||
<button | ||
type="button" | ||
class="sky-btn sky-btn-primary sky-confirm-btn-yesnocancel" | ||
(click)="openYesNoCancelConfirm()"> | ||
Yes/no/cancel confirm | ||
</button> | ||
|
||
<button | ||
type="button" | ||
class="sky-btn sky-btn-primary sky-confirm-btn-custom" | ||
(click)="openCustomConfirm()"> | ||
Custom confirm | ||
</button> |
Oops, something went wrong.