f71b2f6c8b
bitmap clip fixed
2015-06-18 15:26:00 +03:00
1f7454f87f
missed density added
2015-06-18 11:07:14 +03:00
d03e45b633
button styler removed
2015-06-18 10:24:41 +03:00
fceafbccf3
styler logic fixed again
2015-06-18 10:24:36 +03:00
508817fc26
condition fixed
2015-06-18 10:24:34 +03:00
4673b97eae
android styler fixed
2015-06-18 10:24:32 +03:00
108e21f546
tslint error fixed
2015-06-18 10:24:29 +03:00
b1cfc37ec9
old border code restored
2015-06-18 10:24:28 +03:00
86430bec3d
stylers fixed
2015-06-18 10:24:26 +03:00
9b934432aa
border props added to view
2015-06-18 10:24:25 +03:00
d66cf0fab8
http image download fixed
2015-06-18 10:24:24 +03:00
77b996ea4b
url parsing fixed
2015-06-18 10:24:23 +03:00
150babd2e6
test fixed to use local file
2015-06-18 10:24:22 +03:00
c878d94be2
border and tests fixes
2015-06-18 10:24:21 +03:00
3da1f6f57a
tests added
2015-06-18 10:24:18 +03:00
05faf74f0d
cornerRadius fixed
2015-06-18 10:24:17 +03:00
f41d1cba8a
backgroundImage support for Border
2015-06-18 10:24:16 +03:00
7c5d1011cb
throw error if nesting platform tags + test
2015-06-17 16:07:42 +03:00
b38d181b67
platform specific component declaration support for UI builder + tests
2015-06-17 10:51:32 +03:00
d7fd672ad6
Collapse property added. Collapsed property is now obsolete.
2015-06-16 10:55:30 +03:00
bc2a34d4f6
Better public type fix by not exposing the private types.
...
Change the property types to the base public types.
2015-06-11 17:10:53 +03:00
1374054b16
Merge pull request #313 from hdeshev/angular-types
...
"Fix" type clashes with Angular 2
2015-06-11 16:48:07 +03:00
b34a281d32
Fix compile errors for methods returning private types.
2015-06-11 15:35:14 +03:00
6cc5675d31
Resolved #294 : Add an optional fullscreen parameter to Page.showModal method.
2015-06-11 11:04:08 +03:00
e0e4c6d7c7
backgroundImage exposed to View
2015-06-10 15:19:21 +03:00
3907975577
Remove class override of ListViewCell
...
This is broken in the new ios runtime.
2015-06-09 15:51:07 +03:00
a122d854d0
Fixed issue with updating nested properties via binding.
2015-06-08 11:54:20 +03:00
e9d6c68605
Remove the non-implemented tool-bar component
2015-06-05 17:16:02 +03:00
918fe5f3b4
color check added
2015-06-03 17:24:34 +03:00
887aea68c5
lint error fixed
2015-06-03 16:31:14 +03:00
6b2d47e0db
tab text color set after items changed
2015-06-03 16:29:16 +03:00
63b5f2ae8b
Right enumeration iteration.
2015-06-03 09:50:58 +03:00
b23f7333d6
Fix: Content of tab view does not appear when application is minimized and shown again
2015-06-02 17:15:45 +03:00
c09538d39d
Merge pull request #256 from NativeScript/nnikolov/GesturesRefactor
...
view.gestureObservers exposed to public.
2015-06-02 16:06:19 +03:00
ae6fc36ec1
gestureObservers exposed to public via getGestureObservers method.
2015-06-02 15:25:01 +03:00
068dd8b868
Fixed crash due to asserts in scrollToRowAtIndexPathAtScrollPositionAnimated for ListView's UITableView instance. Fixed a case where the UITableView fails to calculate its layout when the page it is displayed in is navigated to, from and back to.
2015-06-02 10:47:40 +03:00
5c130e45ce
more event fixes
2015-06-01 17:23:46 +03:00
a3070bef83
events naming updated
2015-06-01 17:04:06 +03:00
a8be503417
various application event implementation fixes
2015-06-01 15:51:37 +03:00
c6549343bc
application module events added
2015-06-01 15:10:47 +03:00
f3e953f6b4
Changed android to _nativeView.
2015-05-29 14:35:53 +03:00
f838f11844
Refactored gestures to support more scenarios in android.
2015-05-29 13:45:27 +03:00
0cb70233f0
Merge pull request #235 from NativeScript/css-import
...
css import support added
2015-05-29 13:40:46 +03:00
a8a8c77e5a
Change Application and NativeActivity classes to accommodate android runtime changes.
2015-05-29 11:53:54 +03:00
ce0428fdc9
css import support added
2015-05-28 16:57:01 +03:00
2b25721829
Fixed #228 : ListPicker for Android shows text after bound to an empty array.
2015-05-28 14:38:13 +03:00
b259cde7fd
Adding Search Hint text color; since this is not accessible from the standard style/theming xml files.
...
Added Tests so that it will verify the search bar color is changing.
2015-05-27 11:50:56 -05:00
20fb94ebe3
Merge pull request #226 from NativeScript/ListView-ios-separator-width
...
separator is no longer forced to the edge
2015-05-27 17:07:44 +03:00
dc302c4fcd
Another minor fix.
2015-05-27 16:58:45 +03:00
9238f29556
separator is no longer forced to the edge
...
Use this code in ListView.itemLoading event if you want to control the
inset:
function listViewItemLoading(args) {
if (args.ios) {
args.ios.separatorInset = UIEdgeInsetsZero;
args.ios.preservesSuperviewLayoutMargins = false;
args.ios.layoutMargins = UIEdgeInsetsZero;
}
}
2015-05-27 16:47:01 +03:00