mirror of
https://github.com/vale981/accounts-ui
synced 2025-03-04 17:31:41 -05:00
v1.3.0
This commit is contained in:
parent
87d531dbaa
commit
a8d578c919
5 changed files with 14 additions and 8 deletions
|
@ -43,7 +43,7 @@ ordered-dict@1.0.9
|
||||||
promise@0.8.9
|
promise@0.8.9
|
||||||
random@1.0.10
|
random@1.0.10
|
||||||
rate-limit@1.0.8
|
rate-limit@1.0.8
|
||||||
react-meteor-data@0.2.11
|
react-meteor-data@0.2.15
|
||||||
reactive-dict@1.1.9
|
reactive-dict@1.1.9
|
||||||
reactive-var@1.0.11
|
reactive-var@1.0.11
|
||||||
retry@1.0.9
|
retry@1.0.9
|
||||||
|
@ -53,7 +53,7 @@ session@1.1.7
|
||||||
softwarerero:accounts-t9n@1.3.3
|
softwarerero:accounts-t9n@1.3.3
|
||||||
spacebars@1.0.15
|
spacebars@1.0.15
|
||||||
spacebars-compiler@1.1.2
|
spacebars-compiler@1.1.2
|
||||||
std:accounts-ui@1.2.23
|
std:accounts-ui@1.3.0
|
||||||
tmeasday:check-npm-versions@0.3.0
|
tmeasday:check-npm-versions@0.3.0
|
||||||
tracker@1.1.3
|
tracker@1.1.3
|
||||||
ui@1.0.13
|
ui@1.0.13
|
||||||
|
|
|
@ -1,5 +1,11 @@
|
||||||
# ChangeLog
|
# ChangeLog
|
||||||
|
|
||||||
|
### v1.3
|
||||||
|
12-Nov-2017
|
||||||
|
|
||||||
|
* Updated LoginForm to be compatible with react-meteor-data 0.2.15 #131.
|
||||||
|
* Updated react-meteor-data dependency to 0.2.15.
|
||||||
|
|
||||||
### v1.2.23
|
### v1.2.23
|
||||||
15-Jun-2017
|
15-Jun-2017
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# React Accounts UI
|
# React Accounts UI
|
||||||
|
|
||||||
Current version 1.2.23
|
Current version 1.3.0
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import React, { Component } from 'react';
|
import React, { Component } from 'react';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import ReactDOM from 'react-dom';
|
import ReactDOM from 'react-dom';
|
||||||
import { createContainer } from 'meteor/react-meteor-data';
|
import { withTracker } from 'meteor/react-meteor-data';
|
||||||
import { Accounts } from 'meteor/accounts-base';
|
import { Accounts } from 'meteor/accounts-base';
|
||||||
import { T9n } from 'meteor/softwarerero:accounts-t9n';
|
import { T9n } from 'meteor/softwarerero:accounts-t9n';
|
||||||
import { KEY_PREFIX } from '../../login_session.js';
|
import { KEY_PREFIX } from '../../login_session.js';
|
||||||
|
@ -1024,10 +1024,10 @@ LoginForm.defaultProps = {
|
||||||
|
|
||||||
Accounts.ui.LoginForm = LoginForm;
|
Accounts.ui.LoginForm = LoginForm;
|
||||||
|
|
||||||
export default createContainer(() => {
|
export default withTracker(() => {
|
||||||
// Listen for the user to login/logout and the services list to the user.
|
// Listen for the user to login/logout and the services list to the user.
|
||||||
Meteor.subscribe('servicesList');
|
Meteor.subscribe('servicesList');
|
||||||
return ({
|
return ({
|
||||||
user: Accounts.user(),
|
user: Accounts.user(),
|
||||||
});
|
});
|
||||||
}, LoginForm);
|
})(LoginForm);
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
Package.describe({
|
Package.describe({
|
||||||
name: 'std:accounts-ui',
|
name: 'std:accounts-ui',
|
||||||
version: '1.2.23',
|
version: '1.3.0',
|
||||||
summary: 'Accounts UI for React in Meteor 1.3+',
|
summary: 'Accounts UI for React in Meteor 1.3+',
|
||||||
git: 'https://github.com/studiointeract/accounts-ui',
|
git: 'https://github.com/studiointeract/accounts-ui',
|
||||||
documentation: 'README.md'
|
documentation: 'README.md'
|
||||||
|
@ -14,7 +14,7 @@ Package.onUse(function(api) {
|
||||||
api.use('random');
|
api.use('random');
|
||||||
api.use('email');
|
api.use('email');
|
||||||
api.use('session');
|
api.use('session');
|
||||||
api.use('react-meteor-data@0.2.11');
|
api.use('react-meteor-data@0.2.15');
|
||||||
api.use('softwarerero:accounts-t9n');
|
api.use('softwarerero:accounts-t9n');
|
||||||
api.use('tmeasday:check-npm-versions@0.3.0');
|
api.use('tmeasday:check-npm-versions@0.3.0');
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue