5830 Commits

Author SHA1 Message Date
39cbcad115 asdf 2019-10-14 13:10:14 +03:00
6465f3c9a4 fix: colors of tabs 2019-10-03 15:06:22 +03:00
ab18926a15 test: fix execution 2019-10-03 15:06:22 +03:00
173665a620 refactor: address a comment 2019-10-03 15:06:22 +03:00
cb1f7cc182 refactor(dark-mode): arrow functions to properties 2019-10-03 15:06:22 +03:00
cb92ca07af test: page background color 2019-10-03 15:06:22 +03:00
dfda58111e refactor(dark-mode): remove compatibility color module 2019-10-03 15:06:22 +03:00
3de233887a feat(dark-mode): text-view colors 2019-10-03 15:06:22 +03:00
d9e8e69309 fix(dark-mode): tslint errors 2019-10-03 15:06:22 +03:00
9a7bad60e8 feat(dark-mode): tabs colors 2019-10-03 15:06:22 +03:00
27bb151c8d feat(dark-mode): compatibility color 2019-10-03 15:06:22 +03:00
1354b75034 feat(dark-mode): activity indicator style 2019-10-03 15:06:22 +03:00
4e4cbb7c55 feat(dark-mode): window and page background color 2019-10-03 15:06:22 +03:00
82f2ccbdfb chore: remove grunt and clean-up (#7845)
* chore: remove grunt files and deps

* chore: npm scripts cleanup

* chore: more deps clean-up

* chore: tsconfig clean-up

* chore: remove unneed file

* chore: move tsinfig.unit-tests

* chore: add dist/ exclude
2019-10-03 14:50:59 +03:00
beffc5736a chore: remove short imports (#7847) 2019-10-02 18:08:13 +03:00
ca7c46da3c feat(segmented-bar-ios): add support for the new selectedSegmentTintColor property (#7880) 2019-10-02 16:49:20 +03:00
d479067afb chore(travis-ci): add circular references check (#7754) 2019-10-02 15:01:01 +03:00
268a193de6 docs: update readme (#7893) 2019-10-02 14:46:05 +03:00
57a86051b2 feat(action-bar-android): add properties to control the titleView content insets (#7805) 2019-10-02 14:41:36 +03:00
2146ac902f feat(file-system): async read/write (#7671) 2019-10-02 11:21:18 +03:00
790870178c docs(readme): update community slack invitation link (#7889) 2019-10-01 19:02:16 +03:00
49791beb91 Merge pull request #7881 from NativeScript/mdonev/release-to-master-20190930
chore: merge release to master
2019-10-01 13:45:11 +03:00
c41e5c0b6d Merge branch 'master' into mdonev/release-to-master-20190930 2019-09-30 14:14:17 +03:00
fa11e1cb33 Merge pull request #7875 from NativeScript/escape-amp-in-tests-release
Escape amp in tests release
2019-09-29 01:43:38 +03:00
b7f6a2dec5 test: escape & in tests (invalid XML) 2019-09-27 17:26:51 +03:00
4991e6dc99 fix(android/action-bar): process Icon Fonts in NavigationButton the same way as in ActionItem (#7842)
* fix(android/action-bar): process Icon Fonts in NavigationButton the same way as in ActionItem

* Add NavigationButton with font icons to corresponding page in ui tests app
2019-09-25 13:23:33 +03:00
167c0c9c2a chore: add highlight color to api reference (#7858) 2019-09-24 17:27:42 +03:00
3e8d6350b9 feat(platform-declarations): generate typings from iOS 13.0 SDK (#7817)
* feat(platform-declarations): generate typings from iOS 13.0 SDK

* fix(platform-declarations): typings generation script

Delete Material Components typings from `tns-platform-declarations`,
they are part of `tns-core-modules` package.

* refactor(platform-declarations): workaround a TypeScript error

Error:
```
tns-platform-declarations/ios/objc-x86_64/objc!OSLog.d.ts(178,15): error TS2417: Class static side 'typeof OSLogEnumerator' incorrectly extends base class static side 'typeof NSEnumerator'.
  Types of property 'alloc' are incompatible.
    Type '() => OSLogEnumerator' is not assignable to type '<ObjectType>() => NSEnumerator<ObjectType>'.
      Type 'OSLogEnumerator' is not assignable to type 'NSEnumerator<ObjectType>'.
        Types of property 'allObjects' are incompatible.
          Type 'NSArray<NSObject>' is not assignable to type 'NSArray<ObjectType>'.
            Type 'NSObject' is not assignable to type 'ObjectType'.
              'NSObject' is assignable to the constraint of type 'ObjectType', but 'ObjectType' could be instantiated with a different subtype of constraint '{}'.
```

References:
https://github.com/Microsoft/TypeScript/issues/17575
https://stackoverflow.com/questions/52518125/workaround-for-accessing-class-type-arguments-in-static-method-in-typescript

* docs(platform-declarations): note a manual step on generating typings

* chore(platform-declarations): exclude ios-typings-prj from transpilation

* refactor(platform-declarations): delete references to MDC types

```
ios/objc-x86_64/objc!QuartzCore.d.ts:676:36 - error TS2304: Cannot find name 'MDCAnimationTimingFunction'.

676  static mdc_functionWithType(type: MDCAnimationTimingFunction): CAMediaTimingFunction;

ios/objc-x86_64/objc!UIKit.d.ts:7717:54 - error TS2304: Cannot find name 'MDCFontTextStyle'.

7717  static mdc_preferredFontForMaterialTextStyle(style: MDCFontTextStyle): UIFont;

ios/objc-x86_64/objc!UIKit.d.ts:7719:53 - error TS2304: Cannot find name 'MDCFontTextStyle'.

7719  static mdc_standardFontForMaterialTextStyle(style: MDCFontTextStyle): UIFont;

ios/objc-x86_64/objc!UIKit.d.ts:7771:63 - error TS2304: Cannot find name 'MDCFontTextStyle'.

7771  mdc_fontSizedForMaterialTextStyleScaledForDynamicType(style: MDCFontTextStyle, scaled: boolean): UIFont;

ios/objc-x86_64/objc!UIKit.d.ts:7794:64 - error TS2304: Cannot find name 'MDCFontTextStyle'.

7794  static mdc_preferredFontDescriptorForMaterialTextStyle(style: MDCFontTextStyle): UIFontDescriptor;

ios/objc-x86_64/objc!UIKit.d.ts:7796:63 - error TS2304: Cannot find name 'MDCFontTextStyle'.

7796  static mdc_standardFontDescriptorForMaterialTextStyle(style: MDCFontTextStyle): UIFontDescriptor;
```
2019-09-19 22:18:08 +03:00
4166e2d966 fix: expose orientation to application module (#7832) 2019-09-19 18:49:07 +03:00
dfcbe6c319 style: formatting and whitespaces (#7840) 2019-09-19 15:40:31 +03:00
3b5785146f Merge pull request #7839 from NativeScript/merge-release-in-master
chore: merge release in master
2019-09-18 12:02:51 +03:00
e6c7e0c1ac Merge remote-tracking branch 'origin' into merge-release-in-master 2019-09-18 01:08:56 +03:00
25046c7f94 chore: remove grunt and update build scripts (#7838)
* chore: prepare and pack scripts

* chore: update @types/node dep

* chore: remove prepare-dist command from pack-dist
2019-09-18 01:05:39 +03:00
4f421ffbfe fix(application-settings-android): possible uninitialized sharedPreferences variable usage (#7813) 2019-09-13 19:02:37 +03:00
0b3ceb0e7c chore: update dev workflow (#7819) 2019-09-13 14:53:10 +03:00
3cabdde05f feat(css): Add HSL/HSLA support (#7730) 2019-09-13 13:49:35 +03:00
f438ad7d69 chore: fix typo (#7765) 2019-09-12 15:54:34 +03:00
570c17f41a chore: dev-tsc-all target invalid in package.json (#7746) 2019-09-12 15:54:02 +03:00
e0c4933337 chore: merge release to master (#7809)
* feat(android): fix tab resource icon size based on spec (#7737)

* feat(ios): add icon rendering mode for bottom navigation (#7738)

* fix(ios-tabs): crash when add tabstrip in loaded event (#7743)

* fix(css): parse css selectors with escape sequences (#7689) (#7732)

* fix(ios-tabs): handle nesting proxy view container (#7755)

* fix-next(css): className to preserve root views classes (#7725)

* docs: cut the 6.1.0 release (#7773)

* fix(android-list-picker): NoSuchFieldException on api29 (#7790)

* chore: hardcode tslib version to 1.10.0 (#7776)

* fix(css-calc): reduce_css_calc_1.default is not a function (#7787) (#7801)
2019-09-12 14:33:03 +03:00
a8680f0761 release: cut the 6.1.1 release (#7808)
* release: cut the 6.1.1 release
6.1.1
2019-09-11 15:58:59 +03:00
20c07731b3 fix(css-calc): reduce_css_calc_1.default is not a function (#7787) (#7801) 2019-09-10 18:41:13 +03:00
f3d8967e0c chore: update development workflow info (#7750) 2019-09-10 15:57:47 +03:00
2d0737a92d chore: hardcode tslib version to 1.10.0 (#7776) 2019-09-10 15:43:17 +03:00
03d1ff0399 fix(css-calc): reduce_css_calc_1.default is not a function (#7787) 2019-09-10 14:12:04 +03:00
997d6de2e3 fix(android-list-picker): NoSuchFieldException on api29 (#7790) 2019-09-10 13:38:38 +03:00
c6efd08120 docs: cut the 6.1.0 release (#7773) 6.1.0 2019-09-04 17:54:48 +03:00
ca02ff1aed docs: remove obsolete Waffle.io links from the README (#7759) 2019-08-30 09:12:59 +03:00
d23ffb8dbf fix-next(css): className to preserve root views classes (#7725) 2019-08-30 09:09:35 +03:00
92c3338dd5 fix(ios-tabs): handle nesting proxy view container (#7755) 2019-08-29 21:15:23 +03:00
e3ed02858c fix(css): parse css selectors with escape sequences (#7689) (#7732) 2019-08-29 16:14:29 +03:00