Browse Source

Update website with 0.13.2 builds

(cherry picked from commit 179f90452570193b4e1037698bafe5628afe5e7b)
main
Paul O’Shannessy 10 years ago
parent
commit
86f7859507
  1. BIN
      downloads/react-0.13.2.zip
  2. 33
      js/JSXTransformer.js
  3. 37
      js/react.js

BIN
downloads/react-0.13.2.zip

Binary file not shown.

33
js/JSXTransformer.js

@ -1,5 +1,5 @@
/** /**
* JSXTransformer v0.13.1 * JSXTransformer v0.13.2
*/ */
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.JSXTransformer = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(_dereq_,module,exports){ (function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.JSXTransformer = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(_dereq_,module,exports){
/** /**
@ -502,8 +502,9 @@ Buffer.TYPED_ARRAY_SUPPORT = (function () {
* By augmenting the instances, we can avoid modifying the `Uint8Array` * By augmenting the instances, we can avoid modifying the `Uint8Array`
* prototype. * prototype.
*/ */
function Buffer (subject, encoding, noZero) { function Buffer (subject, encoding) {
if (!(this instanceof Buffer)) return new Buffer(subject, encoding, noZero) var self = this
if (!(self instanceof Buffer)) return new Buffer(subject, encoding)
var type = typeof subject var type = typeof subject
var length var length
@ -528,12 +529,9 @@ function Buffer (subject, encoding, noZero) {
if (length < 0) length = 0 if (length < 0) length = 0
else length >>>= 0 // coerce to uint32 else length >>>= 0 // coerce to uint32
var self = this
if (Buffer.TYPED_ARRAY_SUPPORT) { if (Buffer.TYPED_ARRAY_SUPPORT) {
// Preferred: Return an augmented `Uint8Array` instance for best performance // Preferred: Return an augmented `Uint8Array` instance for best performance
/*eslint-disable consistent-this */ self = Buffer._augment(new Uint8Array(length)) // eslint-disable-line consistent-this
self = Buffer._augment(new Uint8Array(length))
/*eslint-enable consistent-this */
} else { } else {
// Fallback: Return THIS instance of Buffer (created by `new`) // Fallback: Return THIS instance of Buffer (created by `new`)
self.length = length self.length = length
@ -557,7 +555,7 @@ function Buffer (subject, encoding, noZero) {
} }
} else if (type === 'string') { } else if (type === 'string') {
self.write(subject, 0, encoding) self.write(subject, 0, encoding)
} else if (type === 'number' && !Buffer.TYPED_ARRAY_SUPPORT && !noZero) { } else if (type === 'number' && !Buffer.TYPED_ARRAY_SUPPORT) {
for (i = 0; i < length; i++) { for (i = 0; i < length; i++) {
self[i] = 0 self[i] = 0
} }
@ -568,10 +566,10 @@ function Buffer (subject, encoding, noZero) {
return self return self
} }
function SlowBuffer (subject, encoding, noZero) { function SlowBuffer (subject, encoding) {
if (!(this instanceof SlowBuffer)) return new SlowBuffer(subject, encoding, noZero) if (!(this instanceof SlowBuffer)) return new SlowBuffer(subject, encoding)
var buf = new Buffer(subject, encoding, noZero) var buf = new Buffer(subject, encoding)
delete buf.parent delete buf.parent
return buf return buf
} }
@ -619,7 +617,7 @@ Buffer.isEncoding = function isEncoding (encoding) {
} }
Buffer.concat = function concat (list, totalLength) { Buffer.concat = function concat (list, totalLength) {
if (!isArray(list)) throw new TypeError('Usage: Buffer.concat(list[, length])') if (!isArray(list)) throw new TypeError('list argument must be an Array of Buffers.')
if (list.length === 0) { if (list.length === 0) {
return new Buffer(0) return new Buffer(0)
@ -1012,7 +1010,7 @@ Buffer.prototype.slice = function slice (start, end) {
newBuf = Buffer._augment(this.subarray(start, end)) newBuf = Buffer._augment(this.subarray(start, end))
} else { } else {
var sliceLen = end - start var sliceLen = end - start
newBuf = new Buffer(sliceLen, undefined, true) newBuf = new Buffer(sliceLen, undefined)
for (var i = 0; i < sliceLen; i++) { for (var i = 0; i < sliceLen; i++) {
newBuf[i] = this[i + start] newBuf[i] = this[i + start]
} }
@ -1456,8 +1454,6 @@ Buffer.prototype.writeDoubleBE = function writeDoubleBE (value, offset, noAssert
// copy(targetBuffer, targetStart=0, sourceStart=0, sourceEnd=buffer.length) // copy(targetBuffer, targetStart=0, sourceStart=0, sourceEnd=buffer.length)
Buffer.prototype.copy = function copy (target, target_start, start, end) { Buffer.prototype.copy = function copy (target, target_start, start, end) {
var self = this // source
if (!start) start = 0 if (!start) start = 0
if (!end && end !== 0) end = this.length if (!end && end !== 0) end = this.length
if (target_start >= target.length) target_start = target.length if (target_start >= target.length) target_start = target.length
@ -1466,13 +1462,13 @@ Buffer.prototype.copy = function copy (target, target_start, start, end) {
// Copy 0 bytes; we're done // Copy 0 bytes; we're done
if (end === start) return 0 if (end === start) return 0
if (target.length === 0 || self.length === 0) return 0 if (target.length === 0 || this.length === 0) return 0
// Fatal error conditions // Fatal error conditions
if (target_start < 0) { if (target_start < 0) {
throw new RangeError('targetStart out of bounds') throw new RangeError('targetStart out of bounds')
} }
if (start < 0 || start >= self.length) throw new RangeError('sourceStart out of bounds') if (start < 0 || start >= this.length) throw new RangeError('sourceStart out of bounds')
if (end < 0) throw new RangeError('sourceEnd out of bounds') if (end < 0) throw new RangeError('sourceEnd out of bounds')
// Are we oob? // Are we oob?
@ -1557,8 +1553,7 @@ Buffer._augment = function _augment (arr) {
arr.constructor = Buffer arr.constructor = Buffer
arr._isBuffer = true arr._isBuffer = true
// save reference to original Uint8Array get/set methods before overwriting // save reference to original Uint8Array set method before overwriting
arr._get = arr.get
arr._set = arr.set arr._set = arr.set
// deprecated, will be removed in node 0.13+ // deprecated, will be removed in node 0.13+

37
js/react.js

@ -1,5 +1,5 @@
/** /**
* React v0.13.1 * React v0.13.2
*/ */
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.React = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(_dereq_,module,exports){ (function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.React = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(_dereq_,module,exports){
/** /**
@ -147,7 +147,7 @@ if ("production" !== "development") {
} }
} }
React.version = '0.13.1'; React.version = '0.13.2';
module.exports = React; module.exports = React;
@ -696,7 +696,9 @@ var isUnitlessNumber = {
columnCount: true, columnCount: true,
flex: true, flex: true,
flexGrow: true, flexGrow: true,
flexPositive: true,
flexShrink: true, flexShrink: true,
flexNegative: true,
fontWeight: true, fontWeight: true,
lineClamp: true, lineClamp: true,
lineHeight: true, lineHeight: true,
@ -709,7 +711,9 @@ var isUnitlessNumber = {
// SVG-related properties // SVG-related properties
fillOpacity: true, fillOpacity: true,
strokeOpacity: true strokeDashoffset: true,
strokeOpacity: true,
strokeWidth: true
}; };
/** /**
@ -3774,6 +3778,7 @@ var HTMLDOMPropertyConfig = {
headers: null, headers: null,
height: MUST_USE_ATTRIBUTE, height: MUST_USE_ATTRIBUTE,
hidden: MUST_USE_ATTRIBUTE | HAS_BOOLEAN_VALUE, hidden: MUST_USE_ATTRIBUTE | HAS_BOOLEAN_VALUE,
high: null,
href: null, href: null,
hrefLang: null, hrefLang: null,
htmlFor: null, htmlFor: null,
@ -3784,6 +3789,7 @@ var HTMLDOMPropertyConfig = {
lang: null, lang: null,
list: MUST_USE_ATTRIBUTE, list: MUST_USE_ATTRIBUTE,
loop: MUST_USE_PROPERTY | HAS_BOOLEAN_VALUE, loop: MUST_USE_PROPERTY | HAS_BOOLEAN_VALUE,
low: null,
manifest: MUST_USE_ATTRIBUTE, manifest: MUST_USE_ATTRIBUTE,
marginHeight: null, marginHeight: null,
marginWidth: null, marginWidth: null,
@ -3798,6 +3804,7 @@ var HTMLDOMPropertyConfig = {
name: null, name: null,
noValidate: HAS_BOOLEAN_VALUE, noValidate: HAS_BOOLEAN_VALUE,
open: HAS_BOOLEAN_VALUE, open: HAS_BOOLEAN_VALUE,
optimum: null,
pattern: null, pattern: null,
placeholder: null, placeholder: null,
poster: null, poster: null,
@ -3811,6 +3818,7 @@ var HTMLDOMPropertyConfig = {
rowSpan: null, rowSpan: null,
sandbox: null, sandbox: null,
scope: null, scope: null,
scoped: HAS_BOOLEAN_VALUE,
scrolling: null, scrolling: null,
seamless: MUST_USE_ATTRIBUTE | HAS_BOOLEAN_VALUE, seamless: MUST_USE_ATTRIBUTE | HAS_BOOLEAN_VALUE,
selected: MUST_USE_PROPERTY | HAS_BOOLEAN_VALUE, selected: MUST_USE_PROPERTY | HAS_BOOLEAN_VALUE,
@ -3852,7 +3860,9 @@ var HTMLDOMPropertyConfig = {
itemID: MUST_USE_ATTRIBUTE, itemID: MUST_USE_ATTRIBUTE,
itemRef: MUST_USE_ATTRIBUTE, itemRef: MUST_USE_ATTRIBUTE,
// property is supported for OpenGraph in meta tags. // property is supported for OpenGraph in meta tags.
property: null property: null,
// IE-only attribute that controls focus behavior
unselectable: MUST_USE_ATTRIBUTE
}, },
DOMAttributeNames: { DOMAttributeNames: {
acceptCharset: 'accept-charset', acceptCharset: 'accept-charset',
@ -6332,6 +6342,14 @@ var ReactCompositeComponentMixin = {
'Did you mean to define a state property instead?', 'Did you mean to define a state property instead?',
this.getName() || 'a component' this.getName() || 'a component'
) : null); ) : null);
("production" !== "development" ? warning(
!inst.getDefaultProps ||
inst.getDefaultProps.isReactClassApproved,
'getDefaultProps was defined on %s, a plain JavaScript class. ' +
'This is only supported for classes created using React.createClass. ' +
'Use a static property to define defaultProps instead.',
this.getName() || 'a component'
) : null);
("production" !== "development" ? warning( ("production" !== "development" ? warning(
!inst.propTypes, !inst.propTypes,
'propTypes was defined as an instance property on %s. Use a static ' + 'propTypes was defined as an instance property on %s. Use a static ' +
@ -6901,7 +6919,7 @@ var ReactCompositeComponentMixin = {
this._renderedComponent, this._renderedComponent,
thisID, thisID,
transaction, transaction,
context this._processChildContext(context)
); );
this._replaceNodeWithMarkupByID(prevComponentID, nextMarkup); this._replaceNodeWithMarkupByID(prevComponentID, nextMarkup);
} }
@ -7769,6 +7787,8 @@ ReactDOMComponent.Mixin = {
if (propKey === STYLE) { if (propKey === STYLE) {
if (nextProp) { if (nextProp) {
nextProp = this._previousStyleCopy = assign({}, nextProp); nextProp = this._previousStyleCopy = assign({}, nextProp);
} else {
this._previousStyleCopy = null;
} }
if (lastProp) { if (lastProp) {
// Unset styles on `lastProp` but not on `nextProp`. // Unset styles on `lastProp` but not on `nextProp`.
@ -10375,9 +10395,9 @@ function warnForPropsMutation(propName, element) {
("production" !== "development" ? warning( ("production" !== "development" ? warning(
false, false,
'Don\'t set .props.%s of the React component%s. ' + 'Don\'t set .props.%s of the React component%s. Instead, specify the ' +
'Instead, specify the correct value when ' + 'correct value when initially creating the element or use ' +
'initially creating the element.%s', 'React.cloneElement to make a new element with updated props.%s',
propName, propName,
elementInfo, elementInfo,
ownerInfo ownerInfo
@ -18274,6 +18294,7 @@ assign(
function isInternalComponentType(type) { function isInternalComponentType(type) {
return ( return (
typeof type === 'function' && typeof type === 'function' &&
typeof type.prototype !== 'undefined' &&
typeof type.prototype.mountComponent === 'function' && typeof type.prototype.mountComponent === 'function' &&
typeof type.prototype.receiveComponent === 'function' typeof type.prototype.receiveComponent === 'function'
); );

Loading…
Cancel
Save