diff --git a/build/..js b/build/..js deleted file mode 100644 index e69de29..0000000 --- a/build/..js +++ /dev/null diff --git a/build/BreadcrumbItem/BreadcrumbItem.html b/build/BreadcrumbItem/BreadcrumbItem.html index bf81b23..6ad3d21 100644 --- a/build/BreadcrumbItem/BreadcrumbItem.html +++ b/build/BreadcrumbItem/BreadcrumbItem.html @@ -1,4 +1,6 @@ - + + + / \ No newline at end of file diff --git a/build/BreadcrumbItem/BreadcrumbItem.js b/build/BreadcrumbItem/BreadcrumbItem.js index 726ebd4..8f78e20 100644 --- a/build/BreadcrumbItem/BreadcrumbItem.js +++ b/build/BreadcrumbItem/BreadcrumbItem.js @@ -5,6 +5,9 @@ angular.module("esNgAntd").directive("antdBreadcrumbItem", function () { restrict: "E", transclude: true, replace: true, + scope: { + href: "@", + }, template: template, }; }); diff --git a/build/Col/Col.html b/build/Col/Col.html index 0d6641f..a447d00 100644 --- a/build/Col/Col.html +++ b/build/Col/Col.html @@ -1 +1 @@ -
\ No newline at end of file +
\ No newline at end of file diff --git a/build/Col/Col.js b/build/Col/Col.js index db6e16d..8e13ecc 100644 --- a/build/Col/Col.js +++ b/build/Col/Col.js @@ -11,6 +11,7 @@ angular.module("esNgAntd").directive("antdCol", function (esNgAntd) { replace: true, scope: { span: "@", + offset: "@", }, template: template, controller: function ($scope, $element, $attrs) { diff --git a/build/Table/Table.html b/build/Table/Table.html index 0a698a0..be9b161 100644 --- a/build/Table/Table.html +++ b/build/Table/Table.html @@ -30,7 +30,7 @@ - + diff --git a/src/BreadcrumbItem/BreadcrumbItem.html b/src/BreadcrumbItem/BreadcrumbItem.html index c0f5481..121b465 100644 --- a/src/BreadcrumbItem/BreadcrumbItem.html +++ b/src/BreadcrumbItem/BreadcrumbItem.html @@ -1,4 +1,6 @@ - {children} + + {children} + / \ No newline at end of file diff --git a/src/BreadcrumbItem/BreadcrumbItem.js b/src/BreadcrumbItem/BreadcrumbItem.js index 686d752..5e520d9 100644 --- a/src/BreadcrumbItem/BreadcrumbItem.js +++ b/src/BreadcrumbItem/BreadcrumbItem.js @@ -1,5 +1,8 @@ import template from "./BreadcrumbItem.html"; class BreadcrumbItem { + props = { + href: String, + }; template = template; -} \ No newline at end of file +} diff --git a/src/Col/Col.html b/src/Col/Col.html index 44a948e..6237616 100644 --- a/src/Col/Col.html +++ b/src/Col/Col.html @@ -1 +1 @@ -
{children}
\ No newline at end of file +
{children}
\ No newline at end of file diff --git a/src/Col/Col.js b/src/Col/Col.js index 02058f7..b4dca69 100644 --- a/src/Col/Col.js +++ b/src/Col/Col.js @@ -10,6 +10,7 @@ class Col { props = { span: String, + offset: String }; state = { diff --git a/src/Table/Table.html b/src/Table/Table.html index acf1182..fdca6ea 100644 --- a/src/Table/Table.html +++ b/src/Table/Table.html @@ -34,7 +34,7 @@ {state.dataSource.map(function (record, key) { - return + return {rowSelection &&