diff --git a/src/platform/core/README.md b/src/platform/core/README.md
index 6cb6a2c36b..f19fe7b2a1 100644
--- a/src/platform/core/README.md
+++ b/src/platform/core/README.md
@@ -35,7 +35,7 @@ Properties:
| Name | Type | Description |
| --- | --- | --- |
-| `title` | `string` | Title to be displayed.
+| `sidenavTitle` | `string` | SideNav Title to be displayed.
| `icon` | `string` | Uses material icon names.
| `displayName` | `string` | Username to be displayed.
| `logout` | `function()` | Function executed when logout it pressed.
@@ -56,8 +56,8 @@ Properties:
| Name | Type | Description |
| --- | --- | --- |
-| `title` | `string` | Title in card to be displayed.
-| `subtitle` | `string` | Subtitle in card to be displayed.
+| `cardTitle` | `string` | Title in card to be displayed.
+| `cardSubtitle` | `string` | Subtitle in card to be displayed.
#### td-layout-manage-items
@@ -73,7 +73,7 @@ Example Nav Layout / Main Layout combo:
{{item.icon}}{{item.title}}
-
+
Title
@@ -127,12 +127,12 @@ Example for Manage List Layout / Nav Layout combo:
Example for Card Over Layout / Nav Layout / Main Layout combo:
```html
-
+
...
-
-
+
+
...
diff --git a/src/platform/core/layout/layout-card-over/layout-card-over.component.html b/src/platform/core/layout/layout-card-over/layout-card-over.component.html
index 4df6b932a1..4c66916af8 100644
--- a/src/platform/core/layout/layout-card-over/layout-card-over.component.html
+++ b/src/platform/core/layout/layout-card-over/layout-card-over.component.html
@@ -1,11 +1,11 @@
-
+
- {{title}}
- {{subtitle}}
-
+ {{cardTitle}}
+ {{cardSubtitle}}
+
diff --git a/src/platform/core/layout/layout-card-over/layout-card-over.component.ts b/src/platform/core/layout/layout-card-over/layout-card-over.component.ts
index 626e6eabf2..c0fbba89f5 100644
--- a/src/platform/core/layout/layout-card-over/layout-card-over.component.ts
+++ b/src/platform/core/layout/layout-card-over/layout-card-over.component.ts
@@ -11,11 +11,53 @@ export class TdLayoutCardOverComponent {
/**
* title in card
*/
- @Input('title') title: string;
+ @Input('cardTitle') cardTitle: string;
/**
* subtitle in card
*/
- @Input('subtitle') subtitle: string;
+ @Input('cardSubtitle') cardSubtitle: string;
+ /**
+ * card flex width %
+ */
+ @Input('cardWidth') cardWidth: number = 70;
+
+ /**
+ * title in card
+ * @deprecated since 0.9, use cardTitle instead
+ */
+ @Input()
+ set title(title: string) {
+ /* tslint:disable-next-line */
+ console.warn("title is deprecated. Please use cardTitle instead");
+ this.cardTitle = title;
+ }
+
+ /**
+ * title in card
+ * @deprecated since 0.9, use cardTitle instead
+ */
+ get title(): string {
+ return this.cardTitle;
+ }
+
+ /**
+ * subtitle in card
+ * @deprecated since 0.9, use cardSubtitle instead
+ */
+ @Input()
+ set subtitle(subtitle: string) {
+ /* tslint:disable-next-line */
+ console.warn("subtitle is deprecated. Please use cardSubtitle instead");
+ this.cardSubtitle = subtitle;
+ }
+
+ /**
+ * subtitle in card
+ * @deprecated since 0.9, use cardSubtitle instead
+ */
+ get subtitle(): string {
+ return this.cardSubtitle;
+ }
}
diff --git a/src/platform/core/layout/layout-manage-list/layout-manage-list.component.html b/src/platform/core/layout/layout-manage-list/layout-manage-list.component.html
index 0ced1b5de5..57c7c91df0 100644
--- a/src/platform/core/layout/layout-manage-list/layout-manage-list.component.html
+++ b/src/platform/core/layout/layout-manage-list/layout-manage-list.component.html
@@ -1,6 +1,6 @@