mirror of
https://github.com/status-im/react-native.git
synced 2025-01-21 23:09:22 +00:00
48650226e8
Summary: Now padding, border and intinsic sizes are computed same way as for singlelined text input. Reviewed By: mmmulani Differential Revision: D5075880 fbshipit-source-id: 1bc2fd479c13a003c717b1fc3d9c69f4639d4444
46 lines
1.7 KiB
Objective-C
46 lines
1.7 KiB
Objective-C
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import <React/RCTView.h>
|
|
#import <React/UIView+React.h>
|
|
|
|
@class RCTBridge;
|
|
|
|
@interface RCTTextView : RCTView <UITextViewDelegate>
|
|
|
|
@property (nonatomic, assign) UITextAutocorrectionType autocorrectionType;
|
|
@property (nonatomic, assign) UITextSpellCheckingType spellCheckingType;
|
|
@property (nonatomic, assign) BOOL blurOnSubmit;
|
|
@property (nonatomic, assign) BOOL clearTextOnFocus;
|
|
@property (nonatomic, assign) BOOL selectTextOnFocus;
|
|
@property (nonatomic, assign) BOOL automaticallyAdjustContentInsets;
|
|
@property (nonatomic, copy) NSString *text;
|
|
@property (nonatomic, strong) UIColor *placeholderTextColor;
|
|
@property (nonatomic, copy) NSString *placeholder;
|
|
@property (nonatomic, strong) UIFont *font;
|
|
@property (nonatomic, assign) NSInteger mostRecentEventCount;
|
|
@property (nonatomic, strong) NSNumber *maxLength;
|
|
@property (nonatomic, assign, readonly) CGSize contentSize;
|
|
@property (nonatomic, assign) UIEdgeInsets reactPaddingInsets;
|
|
@property (nonatomic, assign) UIEdgeInsets reactBorderInsets;
|
|
|
|
@property (nonatomic, copy) RCTDirectEventBlock onChange;
|
|
@property (nonatomic, copy) RCTDirectEventBlock onContentSizeChange;
|
|
@property (nonatomic, copy) RCTDirectEventBlock onSelectionChange;
|
|
@property (nonatomic, copy) RCTDirectEventBlock onTextInput;
|
|
@property (nonatomic, copy) RCTDirectEventBlock onScroll;
|
|
|
|
- (instancetype)initWithBridge:(RCTBridge *)bridge NS_DESIGNATED_INITIALIZER;
|
|
|
|
- (void)performTextUpdate;
|
|
|
|
@end
|