Skip to content
This repository was archived by the owner on Nov 21, 2024. It is now read-only.

Commit d046140

Browse files
author
Travis CI
committed
Merge branch 'release/0.0.2'
2 parents bd598ea + 18d3a39 commit d046140

11 files changed

+40
-19
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## [0.0.2](https://github.com/rucken/ionic/compare/0.0.1...0.0.2) (2019-01-10)
2+
3+
4+
### Bug Fixes
5+
6+
* **auth-modal:** Add class for change modal header ([2617454](https://github.com/rucken/ionic/commit/2617454))
7+
8+
9+
110
## 0.0.1 (2019-01-10)
211

312

capacitor.config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"appId": "ru.site15.ionic.rucken",
33
"appName": "rucken-ionic",
44
"bundledWebRuntime": false,
5-
"webDir": "www"
5+
"webDir": "dist/demo"
66
}

config.xml

+10-8
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,14 @@
7676
<splash height="480" src="resources/ios/splash/Default~iphone.png" width="320" />
7777
<splash height="2732" src="resources/ios/splash/Default@2x~universal~anyany.png" width="2732" />
7878
</platform>
79-
<plugin name="cordova-plugin-whitelist" spec="1.3.3" />
80-
<plugin name="cordova-plugin-statusbar" spec="2.4.2" />
81-
<plugin name="cordova-plugin-device" spec="2.0.2" />
82-
<plugin name="cordova-plugin-splashscreen" spec="5.0.2" />
83-
<plugin name="cordova-plugin-ionic-webview" spec="^2.0.0" />
84-
<plugin name="cordova-plugin-ionic-keyboard" spec="^2.0.5" />
85-
<plugin name="cordova-sqlite-storage" spec="2.4.0" />
86-
<engine name="android" spec="7.1.1" />
79+
<engine name="android" spec="7.1.4" />
80+
<plugin name="cordova-plugin-device" spec="^2.0.2" />
81+
<plugin name="cordova-plugin-splashscreen" spec="^5.0.2" />
82+
<plugin name="cordova-plugin-ionic-webview" spec="^3.0.0">
83+
<variable name="ANDROID_SUPPORT_ANNOTATIONS_VERSION" value="27.+" />
84+
</plugin>
85+
<plugin name="cordova-plugin-ionic-keyboard" spec="^2.1.3" />
86+
<plugin name="cordova-sqlite-storage" spec="2.6.0" />
87+
<plugin name="cordova-plugin-whitelist" spec="^1.3.3" />
88+
<plugin name="cordova-plugin-statusbar" spec="^2.4.2" />
8789
</widget>

libs/rucken/ionic/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rucken/ionic",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"engines": {
55
"node": ">=10",
66
"npm": ">=6.4.0"

libs/rucken/ionic/src/lib/modules/auth-modal/auth-modal.component.html

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
[formGroup]="form"
33
novalidate>
44
<prompt-form-modal
5+
[class]="class"
56
[title]="title"
67
[message]="message"
78
[infoMessage]="signInType === type ? signInInfoMessage : signUpInfoMessage"

libs/rucken/ionic/src/lib/modules/auth-modal/auth-modal.component.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ChangeDetectionStrategy, Component, Inject } from '@angular/core';
1+
import { ChangeDetectionStrategy, Component, Inject, Input } from '@angular/core';
22
import { AuthModalComponent, AUTH_MODAL_CONFIG_TOKEN, IAuthModalConfig } from '@rucken/core';
33

44
@Component({
@@ -8,6 +8,8 @@ import { AuthModalComponent, AUTH_MODAL_CONFIG_TOKEN, IAuthModalConfig } from '@
88
changeDetection: ChangeDetectionStrategy.OnPush
99
})
1010
export class IonicAuthModalComponent extends AuthModalComponent {
11+
@Input()
12+
class: string;
1113
constructor(@Inject(AUTH_MODAL_CONFIG_TOKEN) private _authModalConfig: IAuthModalConfig) {
1214
super(_authModalConfig);
1315
}

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rucken-ionic",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"engines": {
55
"node": ">=10",
66
"npm": ">=6.4.0"
@@ -61,8 +61,8 @@
6161
"github:postbuild": "./node_modules/.bin/cp-cli ./dist/demo/index.html ./dist/demo/404.html",
6262
"github:build": "run-s lib:build config:prod github:prebuild github:postbuild doc",
6363
"github:deploy": "gh-pages -d dist/demo",
64-
"doc:lib:ionic": "./node_modules/.bin/compodoc -p libs/rucken/ionic/tsconfig.lib.json -n \"rucken:ionic\" -d dist/demo/doc/ionic",
65-
"doc:app:demo": "./node_modules/.bin/compodoc -p src/tsconfig.app.json -n \"rucken:ionic-demo\" -d dist/demo/doc/demo",
64+
"doc:lib:ionic": "./node_modules/.bin/compodoc -p libs/rucken/ionic/tsconfig.lib.json -n \"rucken:ionic\" -d dist/demo/doc/ionic/",
65+
"doc:app:demo": "./node_modules/.bin/compodoc -p src/tsconfig.app.json -n \"rucken:ionic-demo\" -d dist/demo/doc/demo/",
6666
"doc": "run-s doc:lib:ionic doc:app:demo"
6767
},
6868
"dependencies": {
@@ -169,4 +169,4 @@
169169
"zone.js"
170170
]
171171
}
172-
}
172+
}

src/app/app.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export const ApplicationName = translate('Rucken Ionic');
2121
export const ApplicationDescription = translate(
2222
'Core with Admin UI for web and native application maked on Angular7+'
2323
);
24-
export const AuthModalSignInInfoMessage = translate(`<ul>
24+
export const AuthModalSignInInfoMessage = translate(`<p>Demo users:</p><ul>
2525
<li>user with admin group: [email protected], password: 12345678</li>
2626
<li>user with user group: [email protected], password: 12345678</li>
2727
<li>user with user group: [email protected], password: 12345678</li>

src/app/i18n/template.pot

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ msgid "Core with Admin UI for web and native application maked on Angular7+"
2626
msgstr ""
2727

2828
msgid ""
29-
"<ul>\n"
29+
"<p>Demo users:</p><ul>\n"
3030
"<li>user with admin group: [email protected], password: 12345678</li>\n"
3131
"<li>user with user group: [email protected], password: 12345678</li>\n"
3232
"<li>user with user group: [email protected], password: 12345678</li>\n"
@@ -67,7 +67,7 @@ msgid "Search"
6767
msgstr ""
6868

6969
msgid ""
70-
"<p>Demo users:</p><ul>\n"
70+
"<ul>\n"
7171
"<li>user with admin group: [email protected], password: 12345678</li>\n"
7272
"<li>user with user group: [email protected], password: 12345678</li>\n"
7373
"<li>user with user group: [email protected], password: 12345678</li>\n"

src/app/pages/home-page/home-page.component.html

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@
44
<ion-menu-button></ion-menu-button>
55
</ion-buttons>
66
<ion-title>{{ title$ | async | translate }}</ion-title>
7+
<ion-buttons slot="secondary">
8+
<ion-button href="https://github.com/rucken/ionic">
9+
<ion-icon
10+
slot="icon-only"
11+
name="logo-github"></ion-icon>
12+
</ion-button>
13+
</ion-buttons>
714
</ion-toolbar>
815
</ion-header>
916
<ion-content

0 commit comments

Comments
 (0)