@triniwiz/nativescript-masonkit 1.0.0-beta.64 → 1.0.0-beta.66
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +15 -0
- package/package.json +1 -1
- package/platforms/android/masonkit-release.aar +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios.abi.json +2558 -10667
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios-simulator.abi.json +2558 -10667
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.abi.json +2558 -10667
package/index.d.ts
CHANGED
|
@@ -97,6 +97,11 @@ declare module '@nativescript/core/ui/styling/style' {
|
|
|
97
97
|
overflowY: Overflow;
|
|
98
98
|
scrollBarWidth: Length;
|
|
99
99
|
verticalAlign: VerticalAlign;
|
|
100
|
+
cornerShape: string;
|
|
101
|
+
cornerShapeTopLeft: string;
|
|
102
|
+
cornerShapeTopRight: string;
|
|
103
|
+
cornerShapeBottomRight: string;
|
|
104
|
+
cornerShapeBottomLeft: string;
|
|
100
105
|
}
|
|
101
106
|
}
|
|
102
107
|
|
|
@@ -149,6 +154,11 @@ interface Style {
|
|
|
149
154
|
overflowY: Overflow;
|
|
150
155
|
scrollBarWidth: Length;
|
|
151
156
|
verticalAlign: VerticalAlign;
|
|
157
|
+
cornerShape: string;
|
|
158
|
+
cornerShapeTopLeft: string;
|
|
159
|
+
cornerShapeTopRight: string;
|
|
160
|
+
cornerShapeBottomRight: string;
|
|
161
|
+
cornerShapeBottomLeft: string;
|
|
152
162
|
}
|
|
153
163
|
|
|
154
164
|
interface IViewBase {
|
|
@@ -199,6 +209,11 @@ interface IViewBase {
|
|
|
199
209
|
overflowY: Overflow;
|
|
200
210
|
scrollBarWidth: number | CoreTypes.LengthType;
|
|
201
211
|
verticalAlign: VerticalAlign;
|
|
212
|
+
cornerShape: string;
|
|
213
|
+
cornerShapeTopLeft: string;
|
|
214
|
+
cornerShapeTopRight: string;
|
|
215
|
+
cornerShapeBottomRight: string;
|
|
216
|
+
cornerShapeBottomLeft: string;
|
|
202
217
|
}
|
|
203
218
|
|
|
204
219
|
class VBase extends ViewBase implements IViewBase {
|
package/package.json
CHANGED
|
Binary file
|