phosphor-widget
Advanced tools
Comparing version 1.0.0-rc.0 to 1.0.0-rc.1
export * from './layout'; | ||
export * from './title'; | ||
export * from './widget'; |
@@ -0,0 +0,0 @@ /*----------------------------------------------------------------------------- |
@@ -0,0 +0,0 @@ import { IDisposable } from 'phosphor-disposable'; |
@@ -0,0 +0,0 @@ /*----------------------------------------------------------------------------- |
@@ -55,2 +55,5 @@ import { IChangedArgs } from 'phosphor-properties'; | ||
* Get the icon class name for the title. | ||
* | ||
* #### Notes | ||
* The default value is an empty string. | ||
*/ | ||
@@ -66,2 +69,5 @@ /** | ||
* Get the closable state for the title. | ||
* | ||
* #### Notes | ||
* The default value is `false`. | ||
*/ | ||
@@ -77,2 +83,5 @@ /** | ||
* Get the extra class name for the title. | ||
* | ||
* #### Notes | ||
* The default value is an empty string. | ||
*/ | ||
@@ -79,0 +88,0 @@ /** |
@@ -61,2 +61,5 @@ /*----------------------------------------------------------------------------- | ||
* Get the icon class name for the title. | ||
* | ||
* #### Notes | ||
* The default value is an empty string. | ||
*/ | ||
@@ -81,2 +84,5 @@ get: function () { | ||
* Get the closable state for the title. | ||
* | ||
* #### Notes | ||
* The default value is `false`. | ||
*/ | ||
@@ -101,2 +107,5 @@ get: function () { | ||
* Get the extra class name for the title. | ||
* | ||
* #### Notes | ||
* The default value is an empty string. | ||
*/ | ||
@@ -103,0 +112,0 @@ get: function () { |
@@ -0,0 +0,0 @@ import { IDisposable } from 'phosphor-disposable'; |
@@ -0,0 +0,0 @@ /*----------------------------------------------------------------------------- |
{ | ||
"name": "phosphor-widget", | ||
"version": "1.0.0-rc.0", | ||
"version": "1.0.0-rc.1", | ||
"description": "The core Phosphor widget class.", | ||
@@ -10,3 +10,3 @@ "main": "lib/index.js", | ||
"phosphor-messaging": "^1.0.6", | ||
"phosphor-nodewrapper": "^1.0.4", | ||
"phosphor-nodewrapper": "^1.0.6", | ||
"phosphor-properties": "^2.0.0", | ||
@@ -17,9 +17,8 @@ "phosphor-queue": "^1.0.5", | ||
"devDependencies": { | ||
"browserify-css": "^0.6.1", | ||
"browserify-istanbul": "^0.2.1", | ||
"coveralls": "^2.11.4", | ||
"css-loader": "^0.23.1", | ||
"expect.js": "^0.3.1", | ||
"fs-extra": "^0.26.3", | ||
"karma": "^0.13.9", | ||
"karma-browserify": "^4.3.0", | ||
"istanbul-instrumenter-loader": "^0.1.3", | ||
"karma": "0.13.15", | ||
"karma-chrome-launcher": "^0.2.0", | ||
@@ -31,13 +30,16 @@ "karma-coverage": "^0.5.0", | ||
"karma-mocha-reporter": "^1.1.1", | ||
"karma-webpack": "^1.7.0", | ||
"mocha": "^2.2.5", | ||
"rimraf": "^2.4.2", | ||
"style-loader": "^0.13.0", | ||
"ts-loader": "^0.7.2", | ||
"typedoc": "^0.3.11", | ||
"typescript": "^1.6.2" | ||
"typescript": "^1.6.2", | ||
"webpack": "^1.12.9" | ||
}, | ||
"scripts": { | ||
"clean": "rimraf lib && rimraf test/build && rimraf test/coverage", | ||
"clean": "rimraf lib && rimraf test/coverage", | ||
"build:src": "tsc --project src", | ||
"build:test": "tsc --project test/src", | ||
"build:css": "node scripts/copycss.js", | ||
"build": "npm run build:src && npm run build:test && npm run build:css", | ||
"build": "npm run build:src && npm run build:css", | ||
"docs": "rimraf docs/api && typedoc --options scripts/tdoptions.json", | ||
@@ -50,2 +52,3 @@ "postinstall": "npm dedupe", | ||
"test:ie": "karma start --browsers=IE test/karma.conf.js", | ||
"test:debug": "karma start --browsers=Chrome --singleRun=false --debug=true test/karma.conf.js", | ||
"test": "npm run test:firefox" | ||
@@ -62,7 +65,2 @@ }, | ||
], | ||
"browserify": { | ||
"transform": [ | ||
"browserify-css" | ||
] | ||
}, | ||
"keywords": [ | ||
@@ -69,0 +67,0 @@ "layout", |
@@ -107,6 +107,4 @@ phosphor-widget | ||
```bash | ||
npm install --save-dev browserify browserify-css | ||
browserify myapp.js -o mybundle.js | ||
``` | ||
Any bundler that understands how to `require()` files with `.js` and `.css` | ||
extensions can be used with this package. | ||
@@ -156,3 +154,3 @@ | ||
Likewise, a widget can be detached from the DOM with the `detach` method, | ||
though it is more common to simply `dipose` of the widget. | ||
though it is more common to simply `dispose` of the widget. | ||
@@ -192,3 +190,3 @@ ```typescript | ||
The `Layout` class is a low-level abstract base class which must be sublcassed | ||
The `Layout` class is a low-level abstract base class which must be subclassed | ||
to be useful. While it provides the greatest level of control and flexibility, | ||
@@ -195,0 +193,0 @@ it requires a decent amount of code and a solid understanding of the framework |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
77783
2129
20
211
Updatedphosphor-nodewrapper@^1.0.6