Skip to content
This repository has been archived by the owner on Oct 30, 2022. It is now read-only.

Commit

Permalink
Merge branch 'next'
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurClemens committed Aug 13, 2019
2 parents 7329c3a + 5daa4e5 commit 844e249
Show file tree
Hide file tree
Showing 167 changed files with 799 additions and 780 deletions.
2 changes: 1 addition & 1 deletion docs/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ Mithril's API change may have some implications for code written with Polythene:
```javascript
h(Button, {
label: "Update",
element: h.route.Link, // Note the capital L
element: m.route.Link, // Note the capital L
url: {
selector: "a", // this is the default, so can be omitted
href: route.path,
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"packages": [
"packages/*"
],
"version": "1.7.0"
"version": "1.7.1"
}
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
"build:collect-css": "cd packages/polythene-css && npm run build",
"build:standalone": "node ./scripts/private/buildStandalone && npm run github:assets",
"dependencies:update": "node ./scripts/private/updateDependencies",
"bump:test": "node --experimental-modules ./scripts/private/bumpVersion --dry-run --version 1.7.0",
"bump:real": "node --experimental-modules ./scripts/private/bumpVersion --version 1.7.0",
"publish:test": "node --experimental-modules ./scripts/private/publish --dry-run --version 1.7.0",
"publish:real": "node --experimental-modules ./scripts/private/publish --version 1.7.0",
"bump:test": "node --experimental-modules ./scripts/private/bumpVersion --dry-run --version 1.7.1",
"bump:real": "node --experimental-modules ./scripts/private/bumpVersion --version 1.7.1",
"publish:test": "node --experimental-modules ./scripts/private/publish --dry-run --version 1.7.1",
"publish:real": "node --experimental-modules ./scripts/private/publish --version 1.7.1",
"github:demos": "node ./scripts/private/copyToDemos",
"github:assets": "node ./scripts/private/copyToAssets",
"typecheck": "lerna run typecheck",
Expand Down
8 changes: 4 additions & 4 deletions packages/polythene-core-base-spinner/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "polythene-core-base-spinner",
"version": "1.7.0",
"version": "1.7.1",
"description": "",
"main": "dist/polythene-core-base-spinner",
"module": "dist/polythene-core-base-spinner.mjs",
Expand All @@ -16,9 +16,9 @@
"README.md"
],
"dependencies": {
"polythene-core": "1.7.0",
"polythene-css-classes": "1.7.0",
"polythene-theme": "1.7.0"
"polythene-core": "1.7.1",
"polythene-css-classes": "1.7.1",
"polythene-theme": "1.7.1"
},
"author": "Arthur Clemens <[email protected]> (http://arthurclemens.com)",
"homepage": "https://github.com/ArthurClemens/polythene",
Expand Down
8 changes: 4 additions & 4 deletions packages/polythene-core-button-group/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "polythene-core-button-group",
"version": "1.7.0",
"version": "1.7.1",
"description": "",
"main": "dist/polythene-core-button-group",
"module": "dist/polythene-core-button-group.mjs",
Expand All @@ -16,9 +16,9 @@
"README.md"
],
"dependencies": {
"polythene-core": "1.7.0",
"polythene-css-classes": "1.7.0",
"polythene-theme": "1.7.0"
"polythene-core": "1.7.1",
"polythene-css-classes": "1.7.1",
"polythene-theme": "1.7.1"
},
"author": "Arthur Clemens <[email protected]> (http://arthurclemens.com)",
"homepage": "https://github.com/ArthurClemens/polythene",
Expand Down
5 changes: 3 additions & 2 deletions packages/polythene-core-button/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,11 @@ export interface Options extends Partial<CommonOptions>, RaisedButtonOptions {
/* START COMMON OPTIONS */

/**
* HTML element tag; may also be "button".
* HTML element tag; string: for example "a" or "button".
* With Mithril 2.x: may contain `m.route.Link`
* @default "a"
*/
element?: string;
element?: any;

/**
* Options object containing one or more standard events such as onclick (React: onClick).
Expand Down
12 changes: 6 additions & 6 deletions packages/polythene-core-button/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "polythene-core-button",
"version": "1.7.0",
"version": "1.7.1",
"description": "",
"main": "dist/polythene-core-button",
"module": "dist/polythene-core-button.mjs",
Expand All @@ -16,13 +16,13 @@
"README.md"
],
"dependencies": {
"polythene-core": "1.7.0",
"polythene-core-shadow": "1.7.0",
"polythene-css-classes": "1.7.0",
"polythene-theme": "1.7.0"
"polythene-core": "1.7.1",
"polythene-core-shadow": "1.7.1",
"polythene-css-classes": "1.7.1",
"polythene-theme": "1.7.1"
},
"devDependencies": {
"polythene-core-ripple": "1.7.0"
"polythene-core-ripple": "1.7.1"
},
"author": "Arthur Clemens <[email protected]> (http://arthurclemens.com)",
"homepage": "https://github.com/ArthurClemens/polythene",
Expand Down
12 changes: 6 additions & 6 deletions packages/polythene-core-card/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "polythene-core-card",
"version": "1.7.0",
"version": "1.7.1",
"description": "",
"main": "dist/polythene-core-card",
"module": "dist/polythene-core-card.mjs",
Expand All @@ -16,13 +16,13 @@
"README.md"
],
"dependencies": {
"polythene-core": "1.7.0",
"polythene-css-classes": "1.7.0",
"polythene-theme": "1.7.0"
"polythene-core": "1.7.1",
"polythene-css-classes": "1.7.1",
"polythene-theme": "1.7.1"
},
"devDependencies": {
"polythene-core-icon": "1.7.0",
"polythene-core-list-tile": "1.7.0"
"polythene-core-icon": "1.7.1",
"polythene-core-list-tile": "1.7.1"
},
"author": "Arthur Clemens <[email protected]> (http://arthurclemens.com)",
"homepage": "https://github.com/ArthurClemens/polythene",
Expand Down
10 changes: 5 additions & 5 deletions packages/polythene-core-checkbox/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "polythene-core-checkbox",
"version": "1.7.0",
"version": "1.7.1",
"description": "",
"main": "dist/polythene-core-checkbox",
"module": "dist/polythene-core-checkbox.mjs",
Expand All @@ -16,10 +16,10 @@
"README.md"
],
"dependencies": {
"polythene-core": "1.7.0",
"polythene-core-selection-control": "1.7.0",
"polythene-css-classes": "1.7.0",
"polythene-theme": "1.7.0"
"polythene-core": "1.7.1",
"polythene-core-selection-control": "1.7.1",
"polythene-css-classes": "1.7.1",
"polythene-theme": "1.7.1"
},
"author": "Arthur Clemens <[email protected]> (http://arthurclemens.com)",
"homepage": "https://github.com/ArthurClemens/polythene",
Expand Down
6 changes: 3 additions & 3 deletions packages/polythene-core-css/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "polythene-core-css",
"version": "1.7.0",
"version": "1.7.1",
"description": "",
"main": "dist/polythene-core-css",
"module": "dist/polythene-core-css.mjs",
Expand All @@ -20,10 +20,10 @@
"dependencies": {
"j2c": "^1.0.0-4",
"j2c-plugin-prefix-browser": "^1.0.7",
"polythene-core": "1.7.0"
"polythene-core": "1.7.1"
},
"devDependencies": {
"polythene-scripts": "1.7.0"
"polythene-scripts": "1.7.1"
},
"author": "Arthur Clemens <[email protected]> (http://arthurclemens.com)",
"homepage": "https://github.com/ArthurClemens/polythene",
Expand Down
8 changes: 4 additions & 4 deletions packages/polythene-core-dialog-pane/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "polythene-core-dialog-pane",
"version": "1.7.0",
"version": "1.7.1",
"description": "",
"main": "dist/polythene-core-dialog-pane",
"module": "dist/polythene-core-dialog-pane.mjs",
Expand All @@ -16,9 +16,9 @@
"README.md"
],
"dependencies": {
"polythene-core": "1.7.0",
"polythene-css-classes": "1.7.0",
"polythene-theme": "1.7.0"
"polythene-core": "1.7.1",
"polythene-css-classes": "1.7.1",
"polythene-theme": "1.7.1"
},
"author": "Arthur Clemens <[email protected]> (http://arthurclemens.com)",
"homepage": "https://github.com/ArthurClemens/polythene",
Expand Down
10 changes: 5 additions & 5 deletions packages/polythene-core-dialog/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "polythene-core-dialog",
"version": "1.7.0",
"version": "1.7.1",
"description": "",
"main": "dist/polythene-core-dialog",
"module": "dist/polythene-core-dialog.mjs",
Expand All @@ -16,12 +16,12 @@
"README.md"
],
"dependencies": {
"polythene-core": "1.7.0",
"polythene-css-classes": "1.7.0",
"polythene-theme": "1.7.0"
"polythene-core": "1.7.1",
"polythene-css-classes": "1.7.1",
"polythene-theme": "1.7.1"
},
"devDependencies": {
"polythene-core-dialog-pane": "1.7.0"
"polythene-core-dialog-pane": "1.7.1"
},
"author": "Arthur Clemens <[email protected]> (http://arthurclemens.com)",
"homepage": "https://github.com/ArthurClemens/polythene",
Expand Down
10 changes: 5 additions & 5 deletions packages/polythene-core-drawer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "polythene-core-drawer",
"version": "1.7.0",
"version": "1.7.1",
"description": "",
"main": "dist/polythene-core-drawer",
"module": "dist/polythene-core-drawer.mjs",
Expand All @@ -16,12 +16,12 @@
"README.md"
],
"dependencies": {
"polythene-core": "1.7.0",
"polythene-css-classes": "1.7.0",
"polythene-theme": "1.7.0"
"polythene-core": "1.7.1",
"polythene-css-classes": "1.7.1",
"polythene-theme": "1.7.1"
},
"devDependencies": {
"polythene-core-dialog": "1.7.0"
"polythene-core-dialog": "1.7.1"
},
"author": "Arthur Clemens <[email protected]> (http://arthurclemens.com)",
"homepage": "https://github.com/ArthurClemens/polythene",
Expand Down
12 changes: 6 additions & 6 deletions packages/polythene-core-fab/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "polythene-core-fab",
"version": "1.7.0",
"version": "1.7.1",
"description": "",
"main": "dist/polythene-core-fab",
"module": "dist/polythene-core-fab.mjs",
Expand All @@ -16,13 +16,13 @@
"README.md"
],
"dependencies": {
"polythene-core": "1.7.0",
"polythene-css-classes": "1.7.0",
"polythene-theme": "1.7.0"
"polythene-core": "1.7.1",
"polythene-css-classes": "1.7.1",
"polythene-theme": "1.7.1"
},
"devDependencies": {
"polythene-core-button": "1.7.0",
"polythene-core-icon": "1.7.0"
"polythene-core-button": "1.7.1",
"polythene-core-icon": "1.7.1"
},
"author": "Arthur Clemens <[email protected]> (http://arthurclemens.com)",
"homepage": "https://github.com/ArthurClemens/polythene",
Expand Down
12 changes: 6 additions & 6 deletions packages/polythene-core-icon-button/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "polythene-core-icon-button",
"version": "1.7.0",
"version": "1.7.1",
"description": "",
"main": "dist/polythene-core-icon-button",
"module": "dist/polythene-core-icon-button.mjs",
Expand All @@ -16,13 +16,13 @@
"README.md"
],
"dependencies": {
"polythene-core": "1.7.0",
"polythene-css-classes": "1.7.0",
"polythene-theme": "1.7.0"
"polythene-core": "1.7.1",
"polythene-css-classes": "1.7.1",
"polythene-theme": "1.7.1"
},
"devDependencies": {
"polythene-core-button": "1.7.0",
"polythene-core-icon": "1.7.0"
"polythene-core-button": "1.7.1",
"polythene-core-icon": "1.7.1"
},
"author": "Arthur Clemens <[email protected]> (http://arthurclemens.com)",
"homepage": "https://github.com/ArthurClemens/polythene",
Expand Down
10 changes: 5 additions & 5 deletions packages/polythene-core-icon/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "polythene-core-icon",
"version": "1.7.0",
"version": "1.7.1",
"description": "",
"main": "dist/polythene-core-icon",
"module": "dist/polythene-core-icon.mjs",
Expand All @@ -16,12 +16,12 @@
"README.md"
],
"dependencies": {
"polythene-core": "1.7.0",
"polythene-css-classes": "1.7.0",
"polythene-theme": "1.7.0"
"polythene-core": "1.7.1",
"polythene-css-classes": "1.7.1",
"polythene-theme": "1.7.1"
},
"devDependencies": {
"polythene-core-svg": "1.7.0"
"polythene-core-svg": "1.7.1"
},
"author": "Arthur Clemens <[email protected]> (http://arthurclemens.com)",
"homepage": "https://github.com/ArthurClemens/polythene",
Expand Down
10 changes: 5 additions & 5 deletions packages/polythene-core-ios-spinner/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "polythene-core-ios-spinner",
"version": "1.7.0",
"version": "1.7.1",
"description": "",
"main": "dist/polythene-core-ios-spinner",
"module": "dist/polythene-core-ios-spinner.mjs",
Expand All @@ -16,10 +16,10 @@
"README.md"
],
"dependencies": {
"polythene-core": "1.7.0",
"polythene-core-base-spinner": "1.7.0",
"polythene-css-classes": "1.7.0",
"polythene-theme": "1.7.0"
"polythene-core": "1.7.1",
"polythene-core-base-spinner": "1.7.1",
"polythene-css-classes": "1.7.1",
"polythene-theme": "1.7.1"
},
"author": "Arthur Clemens <[email protected]> (http://arthurclemens.com)",
"homepage": "https://github.com/ArthurClemens/polythene",
Expand Down
5 changes: 3 additions & 2 deletions packages/polythene-core-list-tile/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,11 +137,12 @@ interface PrimaryContentOptions extends CommonListTileOptions {
compactFront?: boolean;

/**
* HTML element tag.
* HTML element tag; string: for example "a" or "button".
* With Mithril 2.x: may contain `m.route.Link`
* If `url` is passed, the default value is "a".
* @default "div"
*/
element?: string;
element?: any;

/**
* Content to show at the left of the primary content.
Expand Down
12 changes: 6 additions & 6 deletions packages/polythene-core-list-tile/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "polythene-core-list-tile",
"version": "1.7.0",
"version": "1.7.1",
"description": "",
"main": "dist/polythene-core-list-tile",
"module": "dist/polythene-core-list-tile.mjs",
Expand All @@ -16,13 +16,13 @@
"README.md"
],
"dependencies": {
"polythene-core": "1.7.0",
"polythene-css-classes": "1.7.0",
"polythene-theme": "1.7.0"
"polythene-core": "1.7.1",
"polythene-css-classes": "1.7.1",
"polythene-theme": "1.7.1"
},
"devDependencies": {
"polythene-core-icon": "1.7.0",
"polythene-core-ripple": "1.7.0"
"polythene-core-icon": "1.7.1",
"polythene-core-ripple": "1.7.1"
},
"author": "Arthur Clemens <[email protected]> (http://arthurclemens.com)",
"homepage": "https://github.com/ArthurClemens/polythene",
Expand Down
Loading

0 comments on commit 844e249

Please sign in to comment.