This repository has been archived by the owner on May 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(loading): add "index-nocss.js" files
This allows SystemJS users to load the individual modules without setting up CSS loading. Some build processes with using SystemJS would rather have a custom, separate CSS loading solution. This commit allows that to happen.
- Loading branch information
Wei Wang
committed
Mar 26, 2016
1 parent
03e6047
commit c3970ed
Showing
16 changed files
with
102 additions
and
80 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
require('../../template/carousel/carousel.html.js'); | ||
require('../../template/carousel/slide.html.js'); | ||
require('./carousel'); | ||
|
||
var MODULE_NAME = 'ui.bootstrap.module.carousel'; | ||
|
||
angular.module(MODULE_NAME, ['ui.bootstrap.carousel', 'uib/template/carousel/carousel.html', 'uib/template/carousel/slide.html']); | ||
|
||
module.exports = MODULE_NAME; |
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,11 +1,2 @@ | ||
require('../../template/carousel/carousel.html.js'); | ||
require('../../template/carousel/slide.html.js'); | ||
require('./carousel'); | ||
|
||
require('./carousel.css'); | ||
|
||
var MODULE_NAME = 'ui.bootstrap.module.carousel'; | ||
|
||
angular.module(MODULE_NAME, ['ui.bootstrap.carousel', 'uib/template/carousel/carousel.html', 'uib/template/carousel/slide.html']); | ||
|
||
module.exports = MODULE_NAME; | ||
module.exports = require('./index-nocss.js'); |
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 @@ | ||
require('../dateparser'); | ||
require('../isClass'); | ||
require('../../template/datepicker/datepicker.html.js'); | ||
require('../../template/datepicker/day.html.js'); | ||
require('../../template/datepicker/month.html.js'); | ||
require('../../template/datepicker/year.html.js'); | ||
require('./datepicker'); | ||
|
||
var MODULE_NAME = 'ui.bootstrap.module.datepicker'; | ||
|
||
angular.module(MODULE_NAME, ['ui.bootstrap.datepicker', 'uib/template/datepicker/datepicker.html', 'uib/template/datepicker/day.html', 'uib/template/datepicker/month.html', 'uib/template/datepicker/year.html']); | ||
|
||
module.exports = MODULE_NAME; |
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,15 +1,2 @@ | ||
require('../dateparser'); | ||
require('../isClass'); | ||
require('../../template/datepicker/datepicker.html.js'); | ||
require('../../template/datepicker/day.html.js'); | ||
require('../../template/datepicker/month.html.js'); | ||
require('../../template/datepicker/year.html.js'); | ||
require('./datepicker'); | ||
|
||
require('./datepicker.css'); | ||
|
||
var MODULE_NAME = 'ui.bootstrap.module.datepicker'; | ||
|
||
angular.module(MODULE_NAME, ['ui.bootstrap.datepicker', 'uib/template/datepicker/datepicker.html', 'uib/template/datepicker/day.html', 'uib/template/datepicker/month.html', 'uib/template/datepicker/year.html']); | ||
|
||
module.exports = MODULE_NAME; | ||
module.exports = require('./index-nocss.js'); |
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 @@ | ||
require('../datepicker'); | ||
require('../position'); | ||
require('../../template/datepickerPopup/popup.html.js'); | ||
|
||
var MODULE_NAME = 'ui.bootstrap.module.datepickerPopup'; | ||
|
||
angular.module(MODULE_NAME, ['ui.bootstrap.datepickerPopup', 'uib/template/datepickerPopup/popup.html']); | ||
|
||
module.exports = MODULE_NAME; |
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,11 +1,2 @@ | ||
require('../datepicker'); | ||
require('../position'); | ||
require('../../template/datepickerPopup/popup.html.js'); | ||
|
||
require('./popup.css'); | ||
|
||
var MODULE_NAME = 'ui.bootstrap.module.datepickerPopup'; | ||
|
||
angular.module(MODULE_NAME, ['ui.bootstrap.datepickerPopup', 'uib/template/datepickerPopup/popup.html']); | ||
|
||
module.exports = MODULE_NAME; | ||
module.exports = require('./index-nocss.js'); |
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,7 @@ | ||
require('./position'); | ||
|
||
var MODULE_NAME = 'ui.bootstrap.module.position'; | ||
|
||
angular.module(MODULE_NAME, ['ui.bootstrap.position']); | ||
|
||
module.exports = MODULE_NAME; |
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,9 +1,2 @@ | ||
require('./position'); | ||
|
||
require('./position.css'); | ||
|
||
var MODULE_NAME = 'ui.bootstrap.module.position'; | ||
|
||
angular.module(MODULE_NAME, ['ui.bootstrap.position']); | ||
|
||
module.exports = MODULE_NAME; | ||
module.exports = require('./index-nocss.js'); |
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,10 @@ | ||
require('../../template/timepicker/timepicker.html.js'); | ||
require('./timepicker'); | ||
|
||
require('./timepicker.css'); | ||
|
||
var MODULE_NAME = 'ui.bootstrap.module.timepicker'; | ||
|
||
angular.module(MODULE_NAME, ['ui.bootstrap.timepicker', 'uib/template/timepicker/timepicker.html']); | ||
|
||
module.exports = MODULE_NAME; |
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,2 @@ | ||
require('../../template/timepicker/timepicker.html.js'); | ||
require('./timepicker'); | ||
|
||
require('./timepicker.css'); | ||
|
||
var MODULE_NAME = 'ui.bootstrap.module.timepicker'; | ||
|
||
angular.module(MODULE_NAME, ['ui.bootstrap.timepicker', 'uib/template/timepicker/timepicker.html']); | ||
|
||
module.exports = MODULE_NAME; | ||
module.exports = require('./index-nocss.js'); |
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,12 @@ | ||
require('../position'); | ||
require('../stackedMap'); | ||
require('../../template/tooltip/tooltip-popup.html.js'); | ||
require('../../template/tooltip/tooltip-html-popup.html.js'); | ||
require('../../template/tooltip/tooltip-template-popup.html.js'); | ||
require('./tooltip'); | ||
|
||
var MODULE_NAME = 'ui.bootstrap.module.tooltip'; | ||
|
||
angular.module(MODULE_NAME, ['ui.bootstrap.tooltip', 'uib/template/tooltip/tooltip-popup.html', 'uib/template/tooltip/tooltip-html-popup.html', 'uib/template/tooltip/tooltip-template-popup.html']); | ||
|
||
module.exports = MODULE_NAME; |
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,14 +1,2 @@ | ||
require('../position'); | ||
require('../stackedMap'); | ||
require('../../template/tooltip/tooltip-popup.html.js'); | ||
require('../../template/tooltip/tooltip-html-popup.html.js'); | ||
require('../../template/tooltip/tooltip-template-popup.html.js'); | ||
require('./tooltip'); | ||
|
||
require('./tooltip.css'); | ||
|
||
var MODULE_NAME = 'ui.bootstrap.module.tooltip'; | ||
|
||
angular.module(MODULE_NAME, ['ui.bootstrap.tooltip', 'uib/template/tooltip/tooltip-popup.html', 'uib/template/tooltip/tooltip-html-popup.html', 'uib/template/tooltip/tooltip-template-popup.html']); | ||
|
||
module.exports = MODULE_NAME; | ||
module.exports = require('./index-nocss.js'); |
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,11 @@ | ||
require('../debounce'); | ||
require('../position'); | ||
require('../../template/typeahead/typeahead-match.html.js'); | ||
require('../../template/typeahead/typeahead-popup.html.js'); | ||
require('./typeahead'); | ||
|
||
var MODULE_NAME = 'ui.bootstrap.module.typeahead'; | ||
|
||
angular.module(MODULE_NAME, ['ui.bootstrap.typeahead', 'uib/template/typeahead/typeahead-match.html', 'uib/template/typeahead/typeahead-popup.html']); | ||
|
||
module.exports = MODULE_NAME; |
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,13 +1,2 @@ | ||
require('../debounce'); | ||
require('../position'); | ||
require('../../template/typeahead/typeahead-match.html.js'); | ||
require('../../template/typeahead/typeahead-popup.html.js'); | ||
require('./typeahead'); | ||
|
||
require('./typeahead.css'); | ||
|
||
var MODULE_NAME = 'ui.bootstrap.module.typeahead'; | ||
|
||
angular.module(MODULE_NAME, ['ui.bootstrap.typeahead', 'uib/template/typeahead/typeahead-match.html', 'uib/template/typeahead/typeahead-popup.html']); | ||
|
||
module.exports = MODULE_NAME; | ||
module.exports = require('./index-nocss.js'); |