@nativescript/core 9.0.11-next.2 → 9.0.11
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/LICENSE +19 -0
- package/abortcontroller/abortsignal.d.ts +23 -0
- package/abortcontroller/abortsignal.js +57 -0
- package/abortcontroller/abortsignal.js.map +1 -0
- package/abortcontroller/index.d.ts +20 -0
- package/abortcontroller/index.js +52 -0
- package/abortcontroller/index.js.map +1 -0
- package/accessibility/accessibility-common.d.ts +282 -0
- package/accessibility/accessibility-common.js +416 -0
- package/accessibility/accessibility-common.js.map +1 -0
- package/accessibility/accessibility-properties.d.ts +24 -0
- package/accessibility/accessibility-properties.js +118 -0
- package/accessibility/accessibility-properties.js.map +1 -0
- package/accessibility/index.d.ts +1 -0
- package/accessibility/index.js +2 -0
- package/accessibility/index.js.map +1 -0
- package/animation-frame/animation-native.android.d.ts +1 -0
- package/animation-frame/animation-native.android.js +4 -0
- package/animation-frame/animation-native.android.js.map +1 -0
- package/animation-frame/animation-native.ios.d.ts +1 -0
- package/animation-frame/animation-native.ios.js +3 -0
- package/animation-frame/animation-native.ios.js.map +1 -0
- package/animation-frame/index.js +81 -0
- package/animation-frame/index.js.map +1 -0
- package/application/application-common.d.ts +247 -0
- package/application/application-common.js +578 -0
- package/application/application-common.js.map +1 -0
- package/application/application-interfaces.d.ts +220 -0
- package/application/application-interfaces.js +2 -0
- package/application/application-interfaces.js.map +1 -0
- package/application/application-shims.d.ts +378 -0
- package/application/application-shims.js +380 -0
- package/application/application-shims.js.map +1 -0
- package/application/application.android.d.ts +81 -0
- package/application/application.android.js +1233 -0
- package/application/application.android.js.map +1 -0
- package/application/application.ios.d.ts +145 -0
- package/application/application.ios.js +1481 -0
- package/application/application.ios.js.map +1 -0
- package/application/helpers-common.d.ts +50 -0
- package/application/helpers-common.js +153 -0
- package/application/helpers-common.js.map +1 -0
- package/application/helpers.android.d.ts +8 -0
- package/application/helpers.android.js +119 -0
- package/application/helpers.android.js.map +1 -0
- package/application/helpers.ios.d.ts +8 -0
- package/application/helpers.ios.js +24 -0
- package/application/helpers.ios.js.map +1 -0
- package/application/index.android.d.ts +2 -0
- package/application/index.android.js +3 -0
- package/application/index.android.js.map +1 -0
- package/application/index.ios.d.ts +2 -0
- package/application/index.ios.js +3 -0
- package/application/index.ios.js.map +1 -0
- package/application-settings/application-settings-common.d.ts +2 -0
- package/application-settings/application-settings-common.js +15 -0
- package/application-settings/application-settings-common.js.map +1 -0
- package/application-settings/index.android.d.ts +11 -0
- package/application-settings/index.android.js +124 -0
- package/application-settings/index.android.js.map +1 -0
- package/application-settings/index.ios.d.ts +11 -0
- package/application-settings/index.ios.js +81 -0
- package/application-settings/index.ios.js.map +1 -0
- package/bundle-entry-points.d.ts +1 -0
- package/bundle-entry-points.js +47 -0
- package/bundle-entry-points.js.map +1 -0
- package/color/color-common.d.ts +136 -0
- package/color/color-common.js +341 -0
- package/color/color-common.js.map +1 -0
- package/color/color-types.d.ts +49 -0
- package/color/color-types.js +3 -0
- package/color/color-types.js.map +1 -0
- package/color/color-utils.d.ts +38 -0
- package/color/color-utils.js +213 -0
- package/color/color-utils.js.map +1 -0
- package/color/index.android.d.ts +4 -0
- package/color/index.android.js +7 -0
- package/color/index.android.js.map +1 -0
- package/color/index.ios.d.ts +7 -0
- package/color/index.ios.js +19 -0
- package/color/index.ios.js.map +1 -0
- package/color/known-colors.d.ts +144 -0
- package/color/known-colors.js +165 -0
- package/color/known-colors.js.map +1 -0
- package/config/config.interface.d.ts +297 -0
- package/config/config.interface.js +2 -0
- package/config/config.interface.js.map +1 -0
- package/config/index.d.ts +1 -0
- package/config/index.js +2 -0
- package/config/index.js.map +1 -0
- package/connectivity/index.android.d.ts +11 -0
- package/connectivity/index.android.js +157 -0
- package/connectivity/index.android.js.map +1 -0
- package/connectivity/index.ios.d.ts +11 -0
- package/connectivity/index.ios.js +132 -0
- package/connectivity/index.ios.js.map +1 -0
- package/console/index.d.ts +14 -0
- package/console/index.js +33 -0
- package/console/index.js.map +1 -0
- package/core-types/animation-types.d.ts +11 -0
- package/core-types/animation-types.js +13 -0
- package/core-types/animation-types.js.map +1 -0
- package/core-types/index.d.ts +345 -0
- package/core-types/index.js +290 -0
- package/core-types/index.js.map +1 -0
- package/core-types/validators.d.ts +2 -0
- package/core-types/validators.js +27 -0
- package/core-types/validators.js.map +1 -0
- package/css/CSS3Parser.d.ts +184 -0
- package/css/CSS3Parser.js +534 -0
- package/css/CSS3Parser.js.map +1 -0
- package/css/CSSNativeScript.d.ts +14 -0
- package/css/CSSNativeScript.js +113 -0
- package/css/CSSNativeScript.js.map +1 -0
- package/css/css-tree-parser.d.ts +1 -0
- package/css/css-tree-parser.js +133 -0
- package/css/css-tree-parser.js.map +1 -0
- package/css/lib/parse/index.d.ts +1 -0
- package/css/lib/parse/index.js +500 -0
- package/css/lib/parse/index.js.map +1 -0
- package/css/parser.d.ts +70 -0
- package/css/parser.js +517 -0
- package/css/parser.js.map +1 -0
- package/css/reworkcss.d.ts +44 -0
- package/css/reworkcss.js +5 -0
- package/css/reworkcss.js.map +1 -0
- package/css/system-classes.d.ts +12 -0
- package/css/system-classes.js +47 -0
- package/css/system-classes.js.map +1 -0
- package/css-mediaquery/index.d.ts +27 -0
- package/css-mediaquery/index.js +118 -0
- package/css-mediaquery/index.js.map +1 -0
- package/css-value/reworkcss-value.d.ts +31 -0
- package/css-value/reworkcss-value.js +91 -0
- package/css-value/reworkcss-value.js.map +1 -0
- package/data/observable/index.d.ts +213 -0
- package/data/observable/index.js +452 -0
- package/data/observable/index.js.map +1 -0
- package/data/observable-array/index.d.ts +215 -0
- package/data/observable-array/index.js +325 -0
- package/data/observable-array/index.js.map +1 -0
- package/data/virtual-array/index.d.ts +72 -0
- package/data/virtual-array/index.js +133 -0
- package/data/virtual-array/index.js.map +1 -0
- package/debugger/InspectorBackendCommands.d.ts +1056 -0
- package/debugger/InspectorBackendCommands.js +578 -0
- package/debugger/InspectorBackendCommands.js.map +1 -0
- package/debugger/devtools-elements-interfaces.d.ts +16 -0
- package/debugger/devtools-elements-interfaces.js +2 -0
- package/debugger/devtools-elements-interfaces.js.map +1 -0
- package/debugger/devtools-elements.common.d.ts +7 -0
- package/debugger/devtools-elements.common.js +93 -0
- package/debugger/devtools-elements.common.js.map +1 -0
- package/debugger/devtools-elements.js +20 -0
- package/debugger/devtools-elements.js.map +1 -0
- package/debugger/dom-types.d.ts +24 -0
- package/debugger/dom-types.js +152 -0
- package/debugger/dom-types.js.map +1 -0
- package/debugger/index.d.ts +87 -0
- package/debugger/index.js +118 -0
- package/debugger/index.js.map +1 -0
- package/debugger/webinspector-css.d.ts +34 -0
- package/debugger/webinspector-css.js +72 -0
- package/debugger/webinspector-css.js.map +1 -0
- package/debugger/webinspector-dom.d.ts +33 -0
- package/debugger/webinspector-dom.js +75 -0
- package/debugger/webinspector-dom.js.map +1 -0
- package/debugger/webinspector-network.android.d.ts +79 -0
- package/debugger/webinspector-network.android.js +208 -0
- package/debugger/webinspector-network.android.js.map +1 -0
- package/debugger/webinspector-network.ios.d.ts +79 -0
- package/debugger/webinspector-network.ios.js +204 -0
- package/debugger/webinspector-network.ios.js.map +1 -0
- package/fetch/index.d.ts +72 -0
- package/fetch/index.js +529 -0
- package/fetch/index.js.map +1 -0
- package/file-system/file-system-access.android.d.ts +151 -0
- package/file-system/file-system-access.android.js +1162 -0
- package/file-system/file-system-access.android.js.map +1 -0
- package/file-system/file-system-access.ios.d.ts +85 -0
- package/file-system/file-system-access.ios.js +622 -0
- package/file-system/file-system-access.ios.js.map +1 -0
- package/file-system/index.js +873 -0
- package/file-system/index.js.map +1 -0
- package/fps-meter/fps-native.android.d.ts +11 -0
- package/fps-meter/fps-native.android.js +62 -0
- package/fps-meter/fps-native.android.js.map +1 -0
- package/fps-meter/fps-native.ios.d.ts +10 -0
- package/fps-meter/fps-native.ios.js +56 -0
- package/fps-meter/fps-native.ios.js.map +1 -0
- package/fps-meter/index.js +77 -0
- package/fps-meter/index.js.map +1 -0
- package/globals/global-utils.d.ts +27 -0
- package/globals/global-utils.js +67 -0
- package/globals/global-utils.js.map +1 -0
- package/globals/index.d.ts +3 -0
- package/globals/index.js +313 -0
- package/globals/index.js.map +1 -0
- package/http/http-interfaces.d.ts +84 -0
- package/http/http-interfaces.js +6 -0
- package/http/http-interfaces.js.map +1 -0
- package/http/http-request/http-request-common.d.ts +1 -0
- package/http/http-request/http-request-common.js +15 -0
- package/http/http-request/http-request-common.js.map +1 -0
- package/http/http-request/index.android.d.ts +3 -0
- package/http/http-request/index.android.js +274 -0
- package/http/http-request/index.android.js.map +1 -0
- package/http/http-request/index.ios.d.ts +3 -0
- package/http/http-request/index.ios.js +221 -0
- package/http/http-request/index.ios.js.map +1 -0
- package/http/http-shared.d.ts +3 -0
- package/http/http-shared.js +2 -0
- package/http/http-shared.js.map +1 -0
- package/http/index.js +70 -0
- package/http/index.js.map +1 -0
- package/image-asset/image-asset-common.d.ts +25 -0
- package/image-asset/image-asset-common.js +74 -0
- package/image-asset/image-asset-common.js.map +1 -0
- package/image-asset/index.android.d.ts +9 -0
- package/image-asset/index.android.js +33 -0
- package/image-asset/index.android.js.map +1 -0
- package/image-asset/index.ios.d.ts +10 -0
- package/image-asset/index.ios.js +57 -0
- package/image-asset/index.ios.js.map +1 -0
- package/image-source/image-source-common.d.ts +4 -0
- package/image-source/image-source-common.js +21 -0
- package/image-source/image-source-common.js.map +1 -0
- package/image-source/index.android.d.ts +58 -0
- package/image-source/index.android.js +371 -0
- package/image-source/index.android.js.map +1 -0
- package/image-source/index.ios.d.ts +59 -0
- package/image-source/index.ios.js +454 -0
- package/image-source/index.ios.js.map +1 -0
- package/index.js +38 -0
- package/index.js.map +1 -0
- package/inspector_modules.d.ts +7 -0
- package/inspector_modules.js +233 -0
- package/inspector_modules.js.map +1 -0
- package/matrix/index.js +45 -0
- package/matrix/index.js.map +1 -0
- package/media-query-list/index.d.ts +21 -0
- package/media-query-list/index.js +159 -0
- package/media-query-list/index.js.map +1 -0
- package/module-name-resolver/helpers.d.ts +14 -0
- package/module-name-resolver/helpers.js +27 -0
- package/module-name-resolver/helpers.js.map +1 -0
- package/module-name-resolver/index.d.ts +14 -0
- package/module-name-resolver/index.js +67 -0
- package/module-name-resolver/index.js.map +1 -0
- package/module-name-resolver/non-bundle-workflow-compat.d.ts +6 -0
- package/module-name-resolver/non-bundle-workflow-compat.js +128 -0
- package/module-name-resolver/non-bundle-workflow-compat.js.map +1 -0
- package/module-name-resolver/qualifier-matcher/index.d.ts +11 -0
- package/module-name-resolver/qualifier-matcher/index.js +141 -0
- package/module-name-resolver/qualifier-matcher/index.js.map +1 -0
- package/package.json +86 -86
- package/platform/common.d.ts +10 -0
- package/platform/common.js +14 -0
- package/platform/common.js.map +1 -0
- package/platform/device/index.android.d.ts +20 -0
- package/platform/device/index.android.js +78 -0
- package/platform/device/index.android.js.map +1 -0
- package/platform/device/index.ios.d.ts +19 -0
- package/platform/device/index.ios.js +69 -0
- package/platform/device/index.ios.js.map +1 -0
- package/platform/index.js +4 -0
- package/platform/index.js.map +1 -0
- package/platform/screen/index.android.d.ts +16 -0
- package/platform/screen/index.android.js +41 -0
- package/platform/screen/index.android.js.map +1 -0
- package/platform/screen/index.ios.d.ts +15 -0
- package/platform/screen/index.ios.js +35 -0
- package/platform/screen/index.ios.js.map +1 -0
- package/platforms/ios/NSCWinterTC.xcframework/ios-arm64_x86_64-maccatalyst/NSCWinterTC.framework/Headers/NSCCrypto.h +79 -0
- package/platforms/ios/NSCWinterTC.xcframework/ios-arm64_x86_64-maccatalyst/NSCWinterTC.framework/Headers/NSCWinterTC.h +20 -0
- package/platforms/ios/NSCWinterTC.xcframework/ios-arm64_x86_64-maccatalyst/NSCWinterTC.framework/Headers/NSString+WinterTC.h +21 -0
- package/platforms/ios/NSCWinterTC.xcframework/ios-arm64_x86_64-maccatalyst/NSCWinterTC.framework/Modules/module.modulemap +6 -0
- package/platforms/ios/NSCWinterTC.xcframework/ios-arm64_x86_64-maccatalyst/NSCWinterTC.framework/Resources/Info.plist +52 -0
- package/platforms/ios/NSCWinterTC.xcframework/ios-arm64_x86_64-maccatalyst/NSCWinterTC.framework/Versions/Current/Headers/NSCCrypto.h +79 -0
- package/platforms/ios/NSCWinterTC.xcframework/ios-arm64_x86_64-maccatalyst/NSCWinterTC.framework/Versions/Current/Headers/NSCWinterTC.h +20 -0
- package/platforms/ios/NSCWinterTC.xcframework/ios-arm64_x86_64-maccatalyst/NSCWinterTC.framework/Versions/Current/Headers/NSString+WinterTC.h +21 -0
- package/platforms/ios/NSCWinterTC.xcframework/ios-arm64_x86_64-maccatalyst/NSCWinterTC.framework/Versions/Current/Modules/module.modulemap +6 -0
- package/platforms/ios/NSCWinterTC.xcframework/ios-arm64_x86_64-maccatalyst/NSCWinterTC.framework/Versions/Current/NSCWinterTC +0 -0
- package/platforms/ios/NSCWinterTC.xcframework/ios-arm64_x86_64-maccatalyst/NSCWinterTC.framework/Versions/Current/Resources/Info.plist +52 -0
- package/platforms/ios/TNSWidgets.xcframework/ios-arm64_x86_64-maccatalyst/TNSWidgets.framework/Headers/NSCCrypto.h +60 -0
- package/platforms/ios/TNSWidgets.xcframework/ios-arm64_x86_64-maccatalyst/TNSWidgets.framework/Headers/NSData+Async.h +24 -0
- package/platforms/ios/TNSWidgets.xcframework/ios-arm64_x86_64-maccatalyst/TNSWidgets.framework/Headers/NSFileHandle+Async.h +22 -0
- package/platforms/ios/TNSWidgets.xcframework/ios-arm64_x86_64-maccatalyst/TNSWidgets.framework/Headers/NSString+Async.h +25 -0
- package/platforms/ios/TNSWidgets.xcframework/ios-arm64_x86_64-maccatalyst/TNSWidgets.framework/Headers/TNSLabel.h +16 -0
- package/platforms/ios/TNSWidgets.xcframework/ios-arm64_x86_64-maccatalyst/TNSWidgets.framework/Headers/TNSProcess.h +29 -0
- package/platforms/ios/TNSWidgets.xcframework/ios-arm64_x86_64-maccatalyst/TNSWidgets.framework/Headers/TNSWidgets.h +25 -0
- package/platforms/ios/TNSWidgets.xcframework/ios-arm64_x86_64-maccatalyst/TNSWidgets.framework/Headers/UIImage+TNSBlocks.h +26 -0
- package/platforms/ios/TNSWidgets.xcframework/ios-arm64_x86_64-maccatalyst/TNSWidgets.framework/Headers/UIView+PassThroughParent.h +17 -0
- package/platforms/ios/TNSWidgets.xcframework/ios-arm64_x86_64-maccatalyst/TNSWidgets.framework/Modules/module.modulemap +6 -0
- package/platforms/ios/TNSWidgets.xcframework/ios-arm64_x86_64-maccatalyst/TNSWidgets.framework/PrivateHeaders/NSObject+Swizzling.h +17 -0
- package/platforms/ios/TNSWidgets.xcframework/ios-arm64_x86_64-maccatalyst/TNSWidgets.framework/PrivateHeaders/UIView+PropertyBag.h +18 -0
- package/platforms/ios/TNSWidgets.xcframework/ios-arm64_x86_64-maccatalyst/TNSWidgets.framework/Resources/Info.plist +52 -0
- package/platforms/ios/TNSWidgets.xcframework/ios-arm64_x86_64-maccatalyst/TNSWidgets.framework/Versions/Current/Headers/NSCCrypto.h +60 -0
- package/platforms/ios/TNSWidgets.xcframework/ios-arm64_x86_64-maccatalyst/TNSWidgets.framework/Versions/Current/Headers/NSData+Async.h +24 -0
- package/platforms/ios/TNSWidgets.xcframework/ios-arm64_x86_64-maccatalyst/TNSWidgets.framework/Versions/Current/Headers/NSFileHandle+Async.h +22 -0
- package/platforms/ios/TNSWidgets.xcframework/ios-arm64_x86_64-maccatalyst/TNSWidgets.framework/Versions/Current/Headers/NSString+Async.h +25 -0
- package/platforms/ios/TNSWidgets.xcframework/ios-arm64_x86_64-maccatalyst/TNSWidgets.framework/Versions/Current/Headers/TNSLabel.h +16 -0
- package/platforms/ios/TNSWidgets.xcframework/ios-arm64_x86_64-maccatalyst/TNSWidgets.framework/Versions/Current/Headers/TNSProcess.h +29 -0
- package/platforms/ios/TNSWidgets.xcframework/ios-arm64_x86_64-maccatalyst/TNSWidgets.framework/Versions/Current/Headers/TNSWidgets.h +25 -0
- package/platforms/ios/TNSWidgets.xcframework/ios-arm64_x86_64-maccatalyst/TNSWidgets.framework/Versions/Current/Headers/UIImage+TNSBlocks.h +26 -0
- package/platforms/ios/TNSWidgets.xcframework/ios-arm64_x86_64-maccatalyst/TNSWidgets.framework/Versions/Current/Headers/UIView+PassThroughParent.h +17 -0
- package/platforms/ios/TNSWidgets.xcframework/ios-arm64_x86_64-maccatalyst/TNSWidgets.framework/Versions/Current/Modules/module.modulemap +6 -0
- package/platforms/ios/TNSWidgets.xcframework/ios-arm64_x86_64-maccatalyst/TNSWidgets.framework/Versions/Current/PrivateHeaders/NSObject+Swizzling.h +17 -0
- package/platforms/ios/TNSWidgets.xcframework/ios-arm64_x86_64-maccatalyst/TNSWidgets.framework/Versions/Current/PrivateHeaders/UIView+PropertyBag.h +18 -0
- package/platforms/ios/TNSWidgets.xcframework/ios-arm64_x86_64-maccatalyst/TNSWidgets.framework/Versions/Current/Resources/Info.plist +52 -0
- package/platforms/ios/TNSWidgets.xcframework/ios-arm64_x86_64-maccatalyst/TNSWidgets.framework/Versions/Current/TNSWidgets +0 -0
- package/profiling/index.js +273 -0
- package/profiling/index.js.map +1 -0
- package/text/formatted-string.js +2 -0
- package/text/formatted-string.js.map +1 -0
- package/text/index.android.d.ts +9 -0
- package/text/index.android.js +11 -0
- package/text/index.android.js.map +1 -0
- package/text/index.ios.d.ts +9 -0
- package/text/index.ios.js +11 -0
- package/text/index.ios.js.map +1 -0
- package/text/span.js +2 -0
- package/text/span.js.map +1 -0
- package/text/text-common.d.ts +12 -0
- package/text/text-common.js +111 -0
- package/text/text-common.js.map +1 -0
- package/timer/index.android.d.ts +4 -0
- package/timer/index.android.js +83 -0
- package/timer/index.android.js.map +1 -0
- package/timer/index.ios.d.ts +4 -0
- package/timer/index.ios.js +68 -0
- package/timer/index.ios.js.map +1 -0
- package/trace/index.js +255 -0
- package/trace/index.js.map +1 -0
- package/ui/action-bar/action-bar-common.d.ts +85 -0
- package/ui/action-bar/action-bar-common.js +381 -0
- package/ui/action-bar/action-bar-common.js.map +1 -0
- package/ui/action-bar/index.android.d.ts +55 -0
- package/ui/action-bar/index.android.js +502 -0
- package/ui/action-bar/index.android.js.map +1 -0
- package/ui/action-bar/index.ios.d.ts +64 -0
- package/ui/action-bar/index.ios.js +614 -0
- package/ui/action-bar/index.ios.js.map +1 -0
- package/ui/activity-indicator/activity-indicator-common.d.ts +9 -0
- package/ui/activity-indicator/activity-indicator-common.js +22 -0
- package/ui/activity-indicator/activity-indicator-common.js.map +1 -0
- package/ui/activity-indicator/index.android.d.ts +15 -0
- package/ui/activity-indicator/index.android.js +54 -0
- package/ui/activity-indicator/index.android.js.map +1 -0
- package/ui/activity-indicator/index.ios.d.ts +16 -0
- package/ui/activity-indicator/index.ios.js +54 -0
- package/ui/activity-indicator/index.ios.js.map +1 -0
- package/ui/animation/animation-common.d.ts +30 -0
- package/ui/animation/animation-common.js +239 -0
- package/ui/animation/animation-common.js.map +1 -0
- package/ui/animation/animation-shared.d.ts +84 -0
- package/ui/animation/animation-shared.js +4 -0
- package/ui/animation/animation-shared.js.map +1 -0
- package/ui/animation/animation-types.d.ts +1 -0
- package/ui/animation/animation-types.js +3 -0
- package/ui/animation/animation-types.js.map +1 -0
- package/ui/animation/index.android.d.ts +23 -0
- package/ui/animation/index.android.js +432 -0
- package/ui/animation/index.android.js.map +1 -0
- package/ui/animation/index.ios.d.ts +28 -0
- package/ui/animation/index.ios.js +808 -0
- package/ui/animation/index.ios.js.map +1 -0
- package/ui/animation/keyframe-animation.d.ts +76 -0
- package/ui/animation/keyframe-animation.js +238 -0
- package/ui/animation/keyframe-animation.js.map +1 -0
- package/ui/builder/binding-builder.d.ts +13 -0
- package/ui/builder/binding-builder.js +171 -0
- package/ui/builder/binding-builder.js.map +1 -0
- package/ui/builder/component-builder/index.d.ts +7 -0
- package/ui/builder/component-builder/index.js +219 -0
- package/ui/builder/component-builder/index.js.map +1 -0
- package/ui/builder/index.d.ts +193 -0
- package/ui/builder/index.js +643 -0
- package/ui/builder/index.js.map +1 -0
- package/ui/button/button-common.d.ts +9 -0
- package/ui/button/button-common.js +26 -0
- package/ui/button/button-common.js.map +1 -0
- package/ui/button/index.android.d.ts +29 -0
- package/ui/button/index.android.js +166 -0
- package/ui/button/index.android.js.map +1 -0
- package/ui/button/index.ios.d.ts +37 -0
- package/ui/button/index.ios.js +316 -0
- package/ui/button/index.ios.js.map +1 -0
- package/ui/content-view/index.js +87 -0
- package/ui/content-view/index.js.map +1 -0
- package/ui/core/bindable/bindable-expressions.d.ts +7 -0
- package/ui/core/bindable/bindable-expressions.js +255 -0
- package/ui/core/bindable/bindable-expressions.js.map +1 -0
- package/ui/core/bindable/bindable-resources.d.ts +2 -0
- package/ui/core/bindable/bindable-resources.js +8 -0
- package/ui/core/bindable/bindable-resources.js.map +1 -0
- package/ui/core/bindable/bindable-types.d.ts +37 -0
- package/ui/core/bindable/bindable-types.js +3 -0
- package/ui/core/bindable/bindable-types.js.map +1 -0
- package/ui/core/bindable/index.d.ts +53 -0
- package/ui/core/bindable/index.js +555 -0
- package/ui/core/bindable/index.js.map +1 -0
- package/ui/core/control-state-change/index.android.d.ts +6 -0
- package/ui/core/control-state-change/index.android.js +8 -0
- package/ui/core/control-state-change/index.android.js.map +1 -0
- package/ui/core/control-state-change/index.ios.d.ts +10 -0
- package/ui/core/control-state-change/index.ios.js +43 -0
- package/ui/core/control-state-change/index.ios.js.map +1 -0
- package/ui/core/properties/index.d.ts +114 -0
- package/ui/core/properties/index.js +1290 -0
- package/ui/core/properties/index.js.map +1 -0
- package/ui/core/properties/property-shared.d.ts +35 -0
- package/ui/core/properties/property-shared.js +16 -0
- package/ui/core/properties/property-shared.js.map +1 -0
- package/ui/core/view/index.android.d.ts +144 -0
- package/ui/core/view/index.android.js +1576 -0
- package/ui/core/view/index.android.js.map +1 -0
- package/ui/core/view/index.ios.d.ts +151 -0
- package/ui/core/view/index.ios.js +1091 -0
- package/ui/core/view/index.ios.js.map +1 -0
- package/ui/core/view/view-common.d.ts +349 -0
- package/ui/core/view/view-common.js +1147 -0
- package/ui/core/view/view-common.js.map +1 -0
- package/ui/core/view/view-helper/index.android.d.ts +9 -0
- package/ui/core/view/view-helper/index.android.js +56 -0
- package/ui/core/view/view-helper/index.android.js.map +1 -0
- package/ui/core/view/view-helper/index.ios.d.ts +67 -0
- package/ui/core/view/view-helper/index.ios.js +414 -0
- package/ui/core/view/view-helper/index.ios.js.map +1 -0
- package/ui/core/view/view-helper/view-helper-common.d.ts +11 -0
- package/ui/core/view/view-helper/view-helper-common.js +166 -0
- package/ui/core/view/view-helper/view-helper-common.js.map +1 -0
- package/ui/core/view/view-helper/view-helper-shared.d.ts +5 -0
- package/ui/core/view/view-helper/view-helper-shared.js +6 -0
- package/ui/core/view/view-helper/view-helper-shared.js.map +1 -0
- package/ui/core/view/view-interfaces.d.ts +76 -0
- package/ui/core/view/view-interfaces.js +2 -0
- package/ui/core/view/view-interfaces.js.map +1 -0
- package/ui/core/view-base/index.d.ts +597 -0
- package/ui/core/view-base/index.js +1154 -0
- package/ui/core/view-base/index.js.map +1 -0
- package/ui/core/view-base/utils.d.ts +1 -0
- package/ui/core/view-base/utils.js +9 -0
- package/ui/core/view-base/utils.js.map +1 -0
- package/ui/core/weak-event-listener/index.js +123 -0
- package/ui/core/weak-event-listener/index.js.map +1 -0
- package/ui/date-picker/date-picker-common.d.ts +28 -0
- package/ui/date-picker/date-picker-common.js +82 -0
- package/ui/date-picker/date-picker-common.js.map +1 -0
- package/ui/date-picker/index.android.d.ts +19 -0
- package/ui/date-picker/index.android.js +131 -0
- package/ui/date-picker/index.android.js.map +1 -0
- package/ui/date-picker/index.ios.d.ts +27 -0
- package/ui/date-picker/index.ios.js +165 -0
- package/ui/date-picker/index.ios.js.map +1 -0
- package/ui/dialogs/dialogs-common.d.ts +211 -0
- package/ui/dialogs/dialogs-common.js +167 -0
- package/ui/dialogs/dialogs-common.js.map +1 -0
- package/ui/dialogs/index.android.d.ts +20 -0
- package/ui/dialogs/index.android.js +330 -0
- package/ui/dialogs/index.android.js.map +1 -0
- package/ui/dialogs/index.ios.d.ts +17 -0
- package/ui/dialogs/index.ios.js +293 -0
- package/ui/dialogs/index.ios.js.map +1 -0
- package/ui/editable-text-base/editable-text-base-common.d.ts +36 -0
- package/ui/editable-text-base/editable-text-base-common.js +91 -0
- package/ui/editable-text-base/editable-text-base-common.js.map +1 -0
- package/ui/editable-text-base/index.android.d.ts +48 -0
- package/ui/editable-text-base/index.android.js +497 -0
- package/ui/editable-text-base/index.android.js.map +1 -0
- package/ui/editable-text-base/index.ios.d.ts +20 -0
- package/ui/editable-text-base/index.ios.js +255 -0
- package/ui/editable-text-base/index.ios.js.map +1 -0
- package/ui/embedding/index.android.d.ts +4 -0
- package/ui/embedding/index.android.js +14 -0
- package/ui/embedding/index.android.js.map +1 -0
- package/ui/embedding/index.ios.d.ts +1 -0
- package/ui/embedding/index.ios.js +4 -0
- package/ui/embedding/index.ios.js.map +1 -0
- package/ui/enums/enums.js +6 -0
- package/ui/enums/enums.js.map +1 -0
- package/ui/enums/index.js +6 -0
- package/ui/enums/index.js.map +1 -0
- package/ui/frame/activity.android.d.ts +1 -0
- package/ui/frame/activity.android.js +110 -0
- package/ui/frame/activity.android.js.map +1 -0
- package/ui/frame/fragment.android.d.ts +3 -0
- package/ui/frame/fragment.android.js +90 -0
- package/ui/frame/fragment.android.js.map +1 -0
- package/ui/frame/fragment.ios.d.ts +3 -0
- package/ui/frame/fragment.ios.js +4 -0
- package/ui/frame/fragment.ios.js.map +1 -0
- package/ui/frame/fragment.transitions.android.d.ts +40 -0
- package/ui/frame/fragment.transitions.android.js +679 -0
- package/ui/frame/fragment.transitions.android.js.map +1 -0
- package/ui/frame/fragment.transitions.types.d.ts +6 -0
- package/ui/frame/fragment.transitions.types.js +2 -0
- package/ui/frame/fragment.transitions.types.js.map +1 -0
- package/ui/frame/frame-common.d.ts +101 -0
- package/ui/frame/frame-common.js +688 -0
- package/ui/frame/frame-common.js.map +1 -0
- package/ui/frame/frame-helper-for-android.d.ts +37 -0
- package/ui/frame/frame-helper-for-android.js +337 -0
- package/ui/frame/frame-helper-for-android.js.map +1 -0
- package/ui/frame/frame-helpers.d.ts +16 -0
- package/ui/frame/frame-helpers.js +19 -0
- package/ui/frame/frame-helpers.js.map +1 -0
- package/ui/frame/frame-interfaces.d.ts +130 -0
- package/ui/frame/frame-interfaces.js +7 -0
- package/ui/frame/frame-interfaces.js.map +1 -0
- package/ui/frame/frame-stack.d.ts +7 -0
- package/ui/frame/frame-stack.js +41 -0
- package/ui/frame/frame-stack.js.map +1 -0
- package/ui/frame/index.android.d.ts +93 -0
- package/ui/frame/index.android.js +977 -0
- package/ui/frame/index.android.js.map +1 -0
- package/ui/frame/index.ios.d.ts +61 -0
- package/ui/frame/index.ios.js +728 -0
- package/ui/frame/index.ios.js.map +1 -0
- package/ui/gestures/gestures-common.d.ts +32 -0
- package/ui/gestures/gestures-common.js +78 -0
- package/ui/gestures/gestures-common.js.map +1 -0
- package/ui/gestures/gestures-types.d.ts +108 -0
- package/ui/gestures/gestures-types.js +40 -0
- package/ui/gestures/gestures-types.js.map +1 -0
- package/ui/gestures/index.android.d.ts +49 -0
- package/ui/gestures/index.android.js +596 -0
- package/ui/gestures/index.android.js.map +1 -0
- package/ui/gestures/index.ios.d.ts +70 -0
- package/ui/gestures/index.ios.js +510 -0
- package/ui/gestures/index.ios.js.map +1 -0
- package/ui/gestures/touch-manager.d.ts +82 -0
- package/ui/gestures/touch-manager.js +268 -0
- package/ui/gestures/touch-manager.js.map +1 -0
- package/ui/html-view/html-view-common.d.ts +12 -0
- package/ui/html-view/html-view-common.js +31 -0
- package/ui/html-view/html-view-common.js.map +1 -0
- package/ui/html-view/index.android.d.ts +27 -0
- package/ui/html-view/index.android.js +90 -0
- package/ui/html-view/index.android.js.map +1 -0
- package/ui/html-view/index.ios.d.ts +22 -0
- package/ui/html-view/index.ios.js +101 -0
- package/ui/html-view/index.ios.js.map +1 -0
- package/ui/image/image-common.d.ts +45 -0
- package/ui/image/image-common.js +195 -0
- package/ui/image/image-common.js.map +1 -0
- package/ui/image/index.android.d.ts +23 -0
- package/ui/image/index.android.js +171 -0
- package/ui/image/index.android.js.map +1 -0
- package/ui/image/index.ios.d.ts +26 -0
- package/ui/image/index.ios.js +186 -0
- package/ui/image/index.ios.js.map +1 -0
- package/ui/image/symbol-effects-common.d.ts +36 -0
- package/ui/image/symbol-effects-common.js +35 -0
- package/ui/image/symbol-effects-common.js.map +1 -0
- package/ui/image/symbol-effects.android.d.ts +5 -0
- package/ui/image/symbol-effects.android.js +8 -0
- package/ui/image/symbol-effects.android.js.map +1 -0
- package/ui/image/symbol-effects.ios.d.ts +6 -0
- package/ui/image/symbol-effects.ios.js +79 -0
- package/ui/image/symbol-effects.ios.js.map +1 -0
- package/ui/image-cache/image-cache-common.d.ts +40 -0
- package/ui/image-cache/image-cache-common.js +176 -0
- package/ui/image-cache/image-cache-common.js.map +1 -0
- package/ui/image-cache/index.android.d.ts +11 -0
- package/ui/image-cache/index.android.js +74 -0
- package/ui/image-cache/index.android.js.map +1 -0
- package/ui/image-cache/index.ios.d.ts +11 -0
- package/ui/image-cache/index.ios.js +78 -0
- package/ui/image-cache/index.ios.js.map +1 -0
- package/ui/index.d.ts +92 -0
- package/ui/index.js +80 -0
- package/ui/index.js.map +1 -0
- package/ui/label/index.android.d.ts +13 -0
- package/ui/label/index.android.js +47 -0
- package/ui/label/index.android.js.map +1 -0
- package/ui/label/index.ios.d.ts +31 -0
- package/ui/label/index.ios.js +234 -0
- package/ui/label/index.ios.js.map +1 -0
- package/ui/layouts/absolute-layout/absolute-layout-common.d.ts +16 -0
- package/ui/layouts/absolute-layout/absolute-layout-common.js +72 -0
- package/ui/layouts/absolute-layout/absolute-layout-common.js.map +1 -0
- package/ui/layouts/absolute-layout/index.android.d.ts +6 -0
- package/ui/layouts/absolute-layout/index.android.js +26 -0
- package/ui/layouts/absolute-layout/index.android.js.map +1 -0
- package/ui/layouts/absolute-layout/index.ios.d.ts +10 -0
- package/ui/layouts/absolute-layout/index.ios.js +48 -0
- package/ui/layouts/absolute-layout/index.ios.js.map +1 -0
- package/ui/layouts/dock-layout/dock-layout-common.d.ts +14 -0
- package/ui/layouts/dock-layout/dock-layout-common.js +51 -0
- package/ui/layouts/dock-layout/dock-layout-common.js.map +1 -0
- package/ui/layouts/dock-layout/index.android.d.ts +8 -0
- package/ui/layouts/dock-layout/index.android.js +38 -0
- package/ui/layouts/dock-layout/index.android.js.map +1 -0
- package/ui/layouts/dock-layout/index.ios.d.ts +8 -0
- package/ui/layouts/dock-layout/index.ios.js +115 -0
- package/ui/layouts/dock-layout/index.ios.js.map +1 -0
- package/ui/layouts/flexbox-layout/flexbox-layout-common.d.ts +126 -0
- package/ui/layouts/flexbox-layout/flexbox-layout-common.js +403 -0
- package/ui/layouts/flexbox-layout/flexbox-layout-common.js.map +1 -0
- package/ui/layouts/flexbox-layout/index.android.d.ts +23 -0
- package/ui/layouts/flexbox-layout/index.android.js +152 -0
- package/ui/layouts/flexbox-layout/index.android.js.map +1 -0
- package/ui/layouts/flexbox-layout/index.ios.d.ts +44 -0
- package/ui/layouts/flexbox-layout/index.ios.js +1241 -0
- package/ui/layouts/flexbox-layout/index.ios.js.map +1 -0
- package/ui/layouts/grid-layout/grid-layout-common.d.ts +72 -0
- package/ui/layouts/grid-layout/grid-layout-common.js +358 -0
- package/ui/layouts/grid-layout/grid-layout-common.js.map +1 -0
- package/ui/layouts/grid-layout/index.android.d.ts +23 -0
- package/ui/layouts/grid-layout/index.android.js +122 -0
- package/ui/layouts/grid-layout/index.android.js.map +1 -0
- package/ui/layouts/grid-layout/index.ios.d.ts +28 -0
- package/ui/layouts/grid-layout/index.ios.js +778 -0
- package/ui/layouts/grid-layout/index.ios.js.map +1 -0
- package/ui/layouts/index.d.ts +12 -0
- package/ui/layouts/index.js +11 -0
- package/ui/layouts/index.js.map +1 -0
- package/ui/layouts/layout-base-common.d.ts +36 -0
- package/ui/layouts/layout-base-common.js +141 -0
- package/ui/layouts/layout-base-common.js.map +1 -0
- package/ui/layouts/layout-base.android.d.ts +17 -0
- package/ui/layouts/layout-base.android.js +50 -0
- package/ui/layouts/layout-base.android.js.map +1 -0
- package/ui/layouts/layout-base.ios.d.ts +13 -0
- package/ui/layouts/layout-base.ios.js +40 -0
- package/ui/layouts/layout-base.ios.js.map +1 -0
- package/ui/layouts/liquid-glass/index.android.d.ts +5 -0
- package/ui/layouts/liquid-glass/index.android.js +8 -0
- package/ui/layouts/liquid-glass/index.android.js.map +1 -0
- package/ui/layouts/liquid-glass/index.ios.d.ts +10 -0
- package/ui/layouts/liquid-glass/index.ios.js +59 -0
- package/ui/layouts/liquid-glass/index.ios.js.map +1 -0
- package/ui/layouts/liquid-glass/liquid-glass-common.d.ts +3 -0
- package/ui/layouts/liquid-glass/liquid-glass-common.js +4 -0
- package/ui/layouts/liquid-glass/liquid-glass-common.js.map +1 -0
- package/ui/layouts/liquid-glass-container/index.android.d.ts +3 -0
- package/ui/layouts/liquid-glass-container/index.android.js +4 -0
- package/ui/layouts/liquid-glass-container/index.android.js.map +1 -0
- package/ui/layouts/liquid-glass-container/index.ios.d.ts +14 -0
- package/ui/layouts/liquid-glass-container/index.ios.js +121 -0
- package/ui/layouts/liquid-glass-container/index.ios.js.map +1 -0
- package/ui/layouts/liquid-glass-container/liquid-glass-container-common.d.ts +4 -0
- package/ui/layouts/liquid-glass-container/liquid-glass-container-common.js +5 -0
- package/ui/layouts/liquid-glass-container/liquid-glass-container-common.js.map +1 -0
- package/ui/layouts/root-layout/index.android.d.ts +15 -0
- package/ui/layouts/root-layout/index.android.js +126 -0
- package/ui/layouts/root-layout/index.android.js.map +1 -0
- package/ui/layouts/root-layout/index.ios.d.ts +17 -0
- package/ui/layouts/root-layout/index.ios.js +101 -0
- package/ui/layouts/root-layout/index.ios.js.map +1 -0
- package/ui/layouts/root-layout/root-layout-common.d.ts +61 -0
- package/ui/layouts/root-layout/root-layout-common.js +425 -0
- package/ui/layouts/root-layout/root-layout-common.js.map +1 -0
- package/ui/layouts/root-layout/root-layout-stack.d.ts +5 -0
- package/ui/layouts/root-layout/root-layout-stack.js +19 -0
- package/ui/layouts/root-layout/root-layout-stack.js.map +1 -0
- package/ui/layouts/stack-layout/index.android.d.ts +7 -0
- package/ui/layouts/stack-layout/index.android.js +11 -0
- package/ui/layouts/stack-layout/index.android.js.map +1 -0
- package/ui/layouts/stack-layout/index.ios.d.ts +10 -0
- package/ui/layouts/stack-layout/index.ios.js +155 -0
- package/ui/layouts/stack-layout/index.ios.js.map +1 -0
- package/ui/layouts/stack-layout/stack-layout-common.d.ts +8 -0
- package/ui/layouts/stack-layout/stack-layout-common.js +19 -0
- package/ui/layouts/stack-layout/stack-layout-common.js.map +1 -0
- package/ui/layouts/wrap-layout/index.android.d.ts +10 -0
- package/ui/layouts/wrap-layout/index.android.js +18 -0
- package/ui/layouts/wrap-layout/index.android.js.map +1 -0
- package/ui/layouts/wrap-layout/index.ios.d.ts +8 -0
- package/ui/layouts/wrap-layout/index.ios.js +170 -0
- package/ui/layouts/wrap-layout/index.ios.js.map +1 -0
- package/ui/layouts/wrap-layout/wrap-layout-common.d.ts +15 -0
- package/ui/layouts/wrap-layout/wrap-layout-common.js +40 -0
- package/ui/layouts/wrap-layout/wrap-layout-common.js.map +1 -0
- package/ui/list-picker/index.android.d.ts +18 -0
- package/ui/list-picker/index.android.js +177 -0
- package/ui/list-picker/index.android.js.map +1 -0
- package/ui/list-picker/index.ios.d.ts +19 -0
- package/ui/list-picker/index.ios.js +99 -0
- package/ui/list-picker/index.ios.js.map +1 -0
- package/ui/list-picker/list-picker-common.d.ts +23 -0
- package/ui/list-picker/list-picker-common.js +78 -0
- package/ui/list-picker/list-picker-common.js.map +1 -0
- package/ui/list-view/index.android.d.ts +68 -0
- package/ui/list-view/index.android.js +1005 -0
- package/ui/list-view/index.android.js.map +1 -0
- package/ui/list-view/index.ios.d.ts +84 -0
- package/ui/list-view/index.ios.js +996 -0
- package/ui/list-view/index.ios.js.map +1 -0
- package/ui/list-view/list-view-common.d.ts +87 -0
- package/ui/list-view/list-view-common.js +296 -0
- package/ui/list-view/list-view-common.js.map +1 -0
- package/ui/page/events.d.ts +6 -0
- package/ui/page/events.js +7 -0
- package/ui/page/events.js.map +1 -0
- package/ui/page/index.android.d.ts +16 -0
- package/ui/page/index.android.js +106 -0
- package/ui/page/index.android.js.map +1 -0
- package/ui/page/index.ios.d.ts +52 -0
- package/ui/page/index.ios.js +515 -0
- package/ui/page/index.ios.js.map +1 -0
- package/ui/page/page-common.d.ts +73 -0
- package/ui/page/page-common.js +191 -0
- package/ui/page/page-common.js.map +1 -0
- package/ui/placeholder/index.android.d.ts +12 -0
- package/ui/placeholder/index.android.js +21 -0
- package/ui/placeholder/index.android.js.map +1 -0
- package/ui/placeholder/index.js +16 -0
- package/ui/placeholder/index.js.map +1 -0
- package/ui/placeholder/placeholder-common.d.ts +11 -0
- package/ui/placeholder/placeholder-common.js +2 -0
- package/ui/placeholder/placeholder-common.js.map +1 -0
- package/ui/progress/index.android.d.ts +18 -0
- package/ui/progress/index.android.js +65 -0
- package/ui/progress/index.android.js.map +1 -0
- package/ui/progress/index.ios.d.ts +19 -0
- package/ui/progress/index.ios.js +45 -0
- package/ui/progress/index.ios.js.map +1 -0
- package/ui/progress/progress-common.d.ts +15 -0
- package/ui/progress/progress-common.js +34 -0
- package/ui/progress/progress-common.js.map +1 -0
- package/ui/proxy-view-container/index.d.ts +33 -0
- package/ui/proxy-view-container/index.js +247 -0
- package/ui/proxy-view-container/index.js.map +1 -0
- package/ui/repeater/index.d.ts +67 -0
- package/ui/repeater/index.js +225 -0
- package/ui/repeater/index.js.map +1 -0
- package/ui/scroll-view/index.android.d.ts +27 -0
- package/ui/scroll-view/index.android.js +157 -0
- package/ui/scroll-view/index.android.js.map +1 -0
- package/ui/scroll-view/index.ios.d.ts +29 -0
- package/ui/scroll-view/index.ios.js +193 -0
- package/ui/scroll-view/index.ios.js.map +1 -0
- package/ui/scroll-view/scroll-view-common.d.ts +27 -0
- package/ui/scroll-view/scroll-view-common.js +93 -0
- package/ui/scroll-view/scroll-view-common.js.map +1 -0
- package/ui/search-bar/index.android.d.ts +44 -0
- package/ui/search-bar/index.android.js +260 -0
- package/ui/search-bar/index.android.js.map +1 -0
- package/ui/search-bar/index.ios.d.ts +36 -0
- package/ui/search-bar/index.ios.js +203 -0
- package/ui/search-bar/index.ios.js.map +1 -0
- package/ui/search-bar/search-bar-common.d.ts +19 -0
- package/ui/search-bar/search-bar-common.js +43 -0
- package/ui/search-bar/search-bar-common.js.map +1 -0
- package/ui/segmented-bar/index.android.d.ts +42 -0
- package/ui/segmented-bar/index.android.js +280 -0
- package/ui/segmented-bar/index.android.js.map +1 -0
- package/ui/segmented-bar/index.ios.d.ts +28 -0
- package/ui/segmented-bar/index.ios.js +141 -0
- package/ui/segmented-bar/index.ios.js.map +1 -0
- package/ui/segmented-bar/segmented-bar-common.d.ts +37 -0
- package/ui/segmented-bar/segmented-bar-common.js +146 -0
- package/ui/segmented-bar/segmented-bar-common.js.map +1 -0
- package/ui/slider/index.android.d.ts +32 -0
- package/ui/slider/index.android.js +123 -0
- package/ui/slider/index.android.js.map +1 -0
- package/ui/slider/index.ios.d.ts +34 -0
- package/ui/slider/index.ios.js +145 -0
- package/ui/slider/index.ios.js.map +1 -0
- package/ui/slider/slider-common.d.ts +27 -0
- package/ui/slider/slider-common.js +69 -0
- package/ui/slider/slider-common.js.map +1 -0
- package/ui/split-view/index.android.d.ts +3 -0
- package/ui/split-view/index.android.js +4 -0
- package/ui/split-view/index.android.js.map +1 -0
- package/ui/split-view/index.ios.d.ts +51 -0
- package/ui/split-view/index.ios.js +567 -0
- package/ui/split-view/index.ios.js.map +1 -0
- package/ui/split-view/split-view-common.d.ts +59 -0
- package/ui/split-view/split-view-common.js +127 -0
- package/ui/split-view/split-view-common.js.map +1 -0
- package/ui/styling/background-common.d.ts +78 -0
- package/ui/styling/background-common.js +241 -0
- package/ui/styling/background-common.js.map +1 -0
- package/ui/styling/background.android.d.ts +3 -0
- package/ui/styling/background.android.js +82 -0
- package/ui/styling/background.android.js.map +1 -0
- package/ui/styling/background.ios.d.ts +21 -0
- package/ui/styling/background.ios.js +1105 -0
- package/ui/styling/background.ios.js.map +1 -0
- package/ui/styling/box-shadow.d.ts +9 -0
- package/ui/styling/box-shadow.js +3 -0
- package/ui/styling/box-shadow.js.map +1 -0
- package/ui/styling/clip-path-function.d.ts +16 -0
- package/ui/styling/clip-path-function.js +25 -0
- package/ui/styling/clip-path-function.js.map +1 -0
- package/ui/styling/converters.d.ts +2 -0
- package/ui/styling/converters.js +41 -0
- package/ui/styling/converters.js.map +1 -0
- package/ui/styling/css-animation-parser.d.ts +14 -0
- package/ui/styling/css-animation-parser.js +187 -0
- package/ui/styling/css-animation-parser.js.map +1 -0
- package/ui/styling/css-selector.d.ts +270 -0
- package/ui/styling/css-selector.js +934 -0
- package/ui/styling/css-selector.js.map +1 -0
- package/ui/styling/css-shadow.d.ts +19 -0
- package/ui/styling/css-shadow.js +26 -0
- package/ui/styling/css-shadow.js.map +1 -0
- package/ui/styling/css-stroke.d.ts +12 -0
- package/ui/styling/css-stroke.js +19 -0
- package/ui/styling/css-stroke.js.map +1 -0
- package/ui/styling/css-transform.d.ts +2 -0
- package/ui/styling/css-transform.js +110 -0
- package/ui/styling/css-transform.js.map +1 -0
- package/ui/styling/css-utils.d.ts +8 -0
- package/ui/styling/css-utils.js +73 -0
- package/ui/styling/css-utils.js.map +1 -0
- package/ui/styling/font-common.d.ts +62 -0
- package/ui/styling/font-common.js +195 -0
- package/ui/styling/font-common.js.map +1 -0
- package/ui/styling/font-interfaces.d.ts +16 -0
- package/ui/styling/font-interfaces.js +2 -0
- package/ui/styling/font-interfaces.js.map +1 -0
- package/ui/styling/font.android.d.ts +15 -0
- package/ui/styling/font.android.js +226 -0
- package/ui/styling/font.android.js.map +1 -0
- package/ui/styling/font.ios.d.ts +18 -0
- package/ui/styling/font.ios.js +159 -0
- package/ui/styling/font.ios.js.map +1 -0
- package/ui/styling/length-shared.d.ts +52 -0
- package/ui/styling/length-shared.js +173 -0
- package/ui/styling/length-shared.js.map +1 -0
- package/ui/styling/linear-gradient.d.ts +13 -0
- package/ui/styling/linear-gradient.js +48 -0
- package/ui/styling/linear-gradient.js.map +1 -0
- package/ui/styling/style/index.d.ts +166 -0
- package/ui/styling/style/index.js +67 -0
- package/ui/styling/style/index.js.map +1 -0
- package/ui/styling/style-properties.d.ts +63 -0
- package/ui/styling/style-properties.js +1151 -0
- package/ui/styling/style-properties.js.map +1 -0
- package/ui/styling/style-scope.d.ts +87 -0
- package/ui/styling/style-scope.js +1020 -0
- package/ui/styling/style-scope.js.map +1 -0
- package/ui/styling/styling-profile.d.ts +1 -0
- package/ui/styling/styling-profile.js +4 -0
- package/ui/styling/styling-profile.js.map +1 -0
- package/ui/styling/styling-shared.d.ts +3 -0
- package/ui/styling/styling-shared.js +6 -0
- package/ui/styling/styling-shared.js.map +1 -0
- package/ui/switch/index.android.d.ts +23 -0
- package/ui/switch/index.android.js +111 -0
- package/ui/switch/index.android.js.map +1 -0
- package/ui/switch/index.ios.d.ts +26 -0
- package/ui/switch/index.ios.js +185 -0
- package/ui/switch/index.ios.js.map +1 -0
- package/ui/switch/switch-common.d.ts +12 -0
- package/ui/switch/switch-common.js +37 -0
- package/ui/switch/switch-common.js.map +1 -0
- package/ui/tab-view/index.android.d.ts +73 -0
- package/ui/tab-view/index.android.js +646 -0
- package/ui/tab-view/index.android.js.map +1 -0
- package/ui/tab-view/index.ios.d.ts +80 -0
- package/ui/tab-view/index.ios.js +877 -0
- package/ui/tab-view/index.ios.js.map +1 -0
- package/ui/tab-view/tab-view-common.d.ts +86 -0
- package/ui/tab-view/tab-view-common.js +277 -0
- package/ui/tab-view/tab-view-common.js.map +1 -0
- package/ui/text-base/formatted-string.js +163 -0
- package/ui/text-base/formatted-string.js.map +1 -0
- package/ui/text-base/index.android.d.ts +79 -0
- package/ui/text-base/index.android.js +589 -0
- package/ui/text-base/index.android.js.map +1 -0
- package/ui/text-base/index.ios.d.ts +53 -0
- package/ui/text-base/index.ios.js +452 -0
- package/ui/text-base/index.ios.js.map +1 -0
- package/ui/text-base/span.js +113 -0
- package/ui/text-base/span.js.map +1 -0
- package/ui/text-base/text-base-common.d.ts +99 -0
- package/ui/text-base/text-base-common.js +324 -0
- package/ui/text-base/text-base-common.js.map +1 -0
- package/ui/text-field/index.android.d.ts +10 -0
- package/ui/text-field/index.android.js +92 -0
- package/ui/text-field/index.android.js.map +1 -0
- package/ui/text-field/index.ios.d.ts +56 -0
- package/ui/text-field/index.ios.js +315 -0
- package/ui/text-field/index.ios.js.map +1 -0
- package/ui/text-field/text-field-common.d.ts +11 -0
- package/ui/text-field/text-field-common.js +25 -0
- package/ui/text-field/text-field-common.js.map +1 -0
- package/ui/text-view/index.android.d.ts +8 -0
- package/ui/text-view/index.android.js +24 -0
- package/ui/text-view/index.android.js.map +1 -0
- package/ui/text-view/index.ios.d.ts +59 -0
- package/ui/text-view/index.ios.js +432 -0
- package/ui/text-view/index.ios.js.map +1 -0
- package/ui/text-view/text-view-common.d.ts +32 -0
- package/ui/text-view/text-view-common.js +39 -0
- package/ui/text-view/text-view-common.js.map +1 -0
- package/ui/time-picker/index.android.d.ts +10 -0
- package/ui/time-picker/index.android.js +79 -0
- package/ui/time-picker/index.android.js.map +1 -0
- package/ui/time-picker/index.ios.d.ts +31 -0
- package/ui/time-picker/index.ios.js +138 -0
- package/ui/time-picker/index.ios.js.map +1 -0
- package/ui/time-picker/time-picker-common.d.ts +31 -0
- package/ui/time-picker/time-picker-common.js +176 -0
- package/ui/time-picker/time-picker-common.js.map +1 -0
- package/ui/transition/fade-transition.android.d.ts +4 -0
- package/ui/transition/fade-transition.android.js +28 -0
- package/ui/transition/fade-transition.android.js.map +1 -0
- package/ui/transition/fade-transition.ios.d.ts +17 -0
- package/ui/transition/fade-transition.ios.js +64 -0
- package/ui/transition/fade-transition.ios.js.map +1 -0
- package/ui/transition/flip-transition.android.d.ts +6 -0
- package/ui/transition/flip-transition.android.js +90 -0
- package/ui/transition/flip-transition.android.js.map +1 -0
- package/ui/transition/index.android.d.ts +19 -0
- package/ui/transition/index.android.js +37 -0
- package/ui/transition/index.android.js.map +1 -0
- package/ui/transition/index.ios.d.ts +14 -0
- package/ui/transition/index.ios.js +30 -0
- package/ui/transition/index.ios.js.map +1 -0
- package/ui/transition/modal-transition.android.d.ts +5 -0
- package/ui/transition/modal-transition.android.js +7 -0
- package/ui/transition/modal-transition.android.js.map +1 -0
- package/ui/transition/modal-transition.ios.d.ts +34 -0
- package/ui/transition/modal-transition.ios.js +175 -0
- package/ui/transition/modal-transition.ios.js.map +1 -0
- package/ui/transition/page-transition.android.d.ts +9 -0
- package/ui/transition/page-transition.android.js +284 -0
- package/ui/transition/page-transition.android.js.map +1 -0
- package/ui/transition/page-transition.ios.d.ts +35 -0
- package/ui/transition/page-transition.ios.js +193 -0
- package/ui/transition/page-transition.ios.js.map +1 -0
- package/ui/transition/shared-transition-helper.android.d.ts +9 -0
- package/ui/transition/shared-transition-helper.android.js +10 -0
- package/ui/transition/shared-transition-helper.android.js.map +1 -0
- package/ui/transition/shared-transition-helper.ios.d.ts +14 -0
- package/ui/transition/shared-transition-helper.ios.js +539 -0
- package/ui/transition/shared-transition-helper.ios.js.map +1 -0
- package/ui/transition/shared-transition.d.ts +271 -0
- package/ui/transition/shared-transition.js +215 -0
- package/ui/transition/shared-transition.js.map +1 -0
- package/ui/transition/slide-transition.android.d.ts +7 -0
- package/ui/transition/slide-transition.android.js +116 -0
- package/ui/transition/slide-transition.android.js.map +1 -0
- package/ui/transition/slide-transition.ios.d.ts +19 -0
- package/ui/transition/slide-transition.ios.js +94 -0
- package/ui/transition/slide-transition.ios.js.map +1 -0
- package/ui/utils.android.d.ts +5 -0
- package/ui/utils.android.js +16 -0
- package/ui/utils.android.js.map +1 -0
- package/ui/utils.ios.d.ts +11 -0
- package/ui/utils.ios.js +66 -0
- package/ui/utils.ios.js.map +1 -0
- package/ui/web-view/index.android.d.ts +18 -0
- package/ui/web-view/index.android.js +173 -0
- package/ui/web-view/index.android.js.map +1 -0
- package/ui/web-view/index.ios.d.ts +27 -0
- package/ui/web-view/index.ios.js +246 -0
- package/ui/web-view/index.ios.js.map +1 -0
- package/ui/web-view/web-view-common.d.ts +30 -0
- package/ui/web-view/web-view-common.js +74 -0
- package/ui/web-view/web-view-common.js.map +1 -0
- package/ui/web-view/web-view-interfaces.d.ts +11 -0
- package/ui/web-view/web-view-interfaces.js +2 -0
- package/ui/web-view/web-view-interfaces.js.map +1 -0
- package/utils/animation-helpers.d.ts +27 -0
- package/utils/animation-helpers.js +48 -0
- package/utils/animation-helpers.js.map +1 -0
- package/utils/common.d.ts +28 -0
- package/utils/common.js +158 -0
- package/utils/common.js.map +1 -0
- package/utils/constants.android.d.ts +2 -0
- package/utils/constants.android.js +5 -0
- package/utils/constants.android.js.map +1 -0
- package/utils/constants.ios.d.ts +2 -0
- package/utils/constants.ios.js +5 -0
- package/utils/constants.ios.js.map +1 -0
- package/utils/debug-source.d.ts +19 -0
- package/utils/debug-source.js +78 -0
- package/utils/debug-source.js.map +1 -0
- package/utils/debug.js +3 -0
- package/utils/debug.js.map +1 -0
- package/utils/index.android.d.ts +26 -0
- package/utils/index.android.js +205 -0
- package/utils/index.android.js.map +1 -0
- package/utils/index.ios.d.ts +22 -0
- package/utils/index.ios.js +113 -0
- package/utils/index.ios.js.map +1 -0
- package/utils/layout-helper/index.android.d.ts +25 -0
- package/utils/layout-helper/index.android.js +86 -0
- package/utils/layout-helper/index.android.js.map +1 -0
- package/utils/layout-helper/index.ios.d.ts +25 -0
- package/utils/layout-helper/index.ios.js +68 -0
- package/utils/layout-helper/index.ios.js.map +1 -0
- package/utils/layout-helper/layout-helper-common.d.ts +5 -0
- package/utils/layout-helper/layout-helper-common.js +49 -0
- package/utils/layout-helper/layout-helper-common.js.map +1 -0
- package/utils/layout-helper/layout-helper-shared.d.ts +9 -0
- package/utils/layout-helper/layout-helper-shared.js +13 -0
- package/utils/layout-helper/layout-helper-shared.js.map +1 -0
- package/utils/lazy.js +5 -0
- package/utils/lazy.js.map +1 -0
- package/utils/macrotask-scheduler.js +26 -0
- package/utils/macrotask-scheduler.js.map +1 -0
- package/utils/mainthread-helper.android.d.ts +3 -0
- package/utils/mainthread-helper.android.js +28 -0
- package/utils/mainthread-helper.android.js.map +1 -0
- package/utils/mainthread-helper.ios.d.ts +3 -0
- package/utils/mainthread-helper.ios.js +17 -0
- package/utils/mainthread-helper.ios.js.map +1 -0
- package/utils/module-merge.d.ts +1 -0
- package/utils/module-merge.js +8 -0
- package/utils/module-merge.js.map +1 -0
- package/utils/native-helper-for-android.d.ts +45 -0
- package/utils/native-helper-for-android.js +376 -0
- package/utils/native-helper-for-android.js.map +1 -0
- package/utils/native-helper.android.d.ts +42 -0
- package/utils/native-helper.android.js +30 -0
- package/utils/native-helper.android.js.map +1 -0
- package/utils/native-helper.ios.d.ts +79 -0
- package/utils/native-helper.ios.js +339 -0
- package/utils/native-helper.ios.js.map +1 -0
- package/utils/number-utils.d.ts +19 -0
- package/utils/number-utils.js +37 -0
- package/utils/number-utils.js.map +1 -0
- package/utils/platform-check.d.ts +4 -0
- package/utils/platform-check.js +21 -0
- package/utils/platform-check.js.map +1 -0
- package/utils/shared.d.ts +17 -0
- package/utils/shared.js +40 -0
- package/utils/shared.js.map +1 -0
- package/utils/types.js +104 -0
- package/utils/types.js.map +1 -0
- package/utils/utils-shared.d.ts +1 -0
- package/utils/utils-shared.js +8 -0
- package/utils/utils-shared.js.map +1 -0
- package/wgc/atob.d.ts +1 -0
- package/wgc/atob.js +9 -0
- package/wgc/atob.js.map +1 -0
- package/wgc/btoa.d.ts +1 -0
- package/wgc/btoa.js +9 -0
- package/wgc/btoa.js.map +1 -0
- package/wgc/crypto/SubtleCrypto.d.ts +63 -0
- package/wgc/crypto/SubtleCrypto.js +551 -0
- package/wgc/crypto/SubtleCrypto.js.map +1 -0
- package/wgc/crypto/index.d.ts +8 -0
- package/wgc/crypto/index.js +32 -0
- package/wgc/crypto/index.js.map +1 -0
- package/wgc/index.d.ts +2 -0
- package/wgc/index.js +3 -0
- package/wgc/index.js.map +1 -0
- package/xhr/index.d.ts +113 -0
- package/xhr/index.js +486 -0
- package/xhr/index.js.map +1 -0
- package/xml/index.d.ts +108 -0
- package/xml/index.js +574 -0
- package/xml/index.js.map +1 -0
- package/css/package.json +0 -36
- package/css-value/package.json +0 -23
|
@@ -0,0 +1,220 @@
|
|
|
1
|
+
import type { EventData } from '../data/observable';
|
|
2
|
+
import type { View } from '../ui/core/view';
|
|
3
|
+
import type { CoreTypes } from '../core-types';
|
|
4
|
+
/**
|
|
5
|
+
* An extended JavaScript Error which will have the nativeError property initialized in case the error is caused by executing platform-specific code.
|
|
6
|
+
*/
|
|
7
|
+
export interface NativeScriptError extends Error {
|
|
8
|
+
/**
|
|
9
|
+
* Represents the native error object.
|
|
10
|
+
*/
|
|
11
|
+
nativeException?: any;
|
|
12
|
+
/**
|
|
13
|
+
* The native stack trace.
|
|
14
|
+
*/
|
|
15
|
+
stackTrace?: string;
|
|
16
|
+
/**
|
|
17
|
+
* Javascript portion of stack trace.
|
|
18
|
+
*/
|
|
19
|
+
stack?: string;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Event data containing information for the application events.
|
|
23
|
+
*/
|
|
24
|
+
export interface ApplicationEventData {
|
|
25
|
+
/**
|
|
26
|
+
* The name of the event.
|
|
27
|
+
*/
|
|
28
|
+
eventName: string;
|
|
29
|
+
/**
|
|
30
|
+
* Gets the native iOS event arguments. Valid only when running on iOS.
|
|
31
|
+
*/
|
|
32
|
+
ios?: any;
|
|
33
|
+
/**
|
|
34
|
+
* Gets the native Android event arguments. Valid only when running on Android.
|
|
35
|
+
*/
|
|
36
|
+
android?: any;
|
|
37
|
+
/**
|
|
38
|
+
* The instance that has raised the event.
|
|
39
|
+
*/
|
|
40
|
+
object: any;
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* Event data containing information for launch event.
|
|
44
|
+
*/
|
|
45
|
+
export interface LaunchEventData extends EventData {
|
|
46
|
+
/**
|
|
47
|
+
* The root view for this Window on iOS or Activity for Android.
|
|
48
|
+
* If not set a new Frame will be created as a root view in order to maintain backwards compatibility.
|
|
49
|
+
* If explicitly set to null, there will be no root view.
|
|
50
|
+
*/
|
|
51
|
+
root?: View | null;
|
|
52
|
+
savedInstanceState?: any;
|
|
53
|
+
android?: android.content.Intent;
|
|
54
|
+
ios?: any;
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* Event data containing information for orientation changed event.
|
|
58
|
+
*/
|
|
59
|
+
export interface OrientationChangedEventData extends ApplicationEventData {
|
|
60
|
+
/**
|
|
61
|
+
* New orientation value.
|
|
62
|
+
*/
|
|
63
|
+
newValue: 'portrait' | 'landscape' | 'unknown';
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* Event data containing information for system appearance changed event.
|
|
67
|
+
*/
|
|
68
|
+
export interface SystemAppearanceChangedEventData extends ApplicationEventData {
|
|
69
|
+
/**
|
|
70
|
+
* New system appearance value.
|
|
71
|
+
*/
|
|
72
|
+
newValue: 'light' | 'dark';
|
|
73
|
+
}
|
|
74
|
+
/**
|
|
75
|
+
* Event data containing information for system layout direction changed event.
|
|
76
|
+
*/
|
|
77
|
+
export interface LayoutDirectionChangedEventData extends ApplicationEventData {
|
|
78
|
+
/**
|
|
79
|
+
* New layout direction value.
|
|
80
|
+
*/
|
|
81
|
+
newValue: CoreTypes.LayoutDirectionType;
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* Event data containing information for font scale changed event.
|
|
85
|
+
*/
|
|
86
|
+
export interface FontScaleChangedEventData extends ApplicationEventData {
|
|
87
|
+
/**
|
|
88
|
+
* New font scale value.
|
|
89
|
+
*/
|
|
90
|
+
newValue: number;
|
|
91
|
+
}
|
|
92
|
+
/**
|
|
93
|
+
* Event data containing information about unhandled application errors.
|
|
94
|
+
*/
|
|
95
|
+
export interface UnhandledErrorEventData extends ApplicationEventData {
|
|
96
|
+
ios?: NativeScriptError;
|
|
97
|
+
android?: NativeScriptError;
|
|
98
|
+
error: NativeScriptError;
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* Event data containing information about discarded application errors.
|
|
102
|
+
*/
|
|
103
|
+
export interface DiscardedErrorEventData extends ApplicationEventData {
|
|
104
|
+
error: NativeScriptError;
|
|
105
|
+
}
|
|
106
|
+
/**
|
|
107
|
+
* Event data containing information about application css change.
|
|
108
|
+
*/
|
|
109
|
+
export interface CssChangedEventData extends ApplicationEventData {
|
|
110
|
+
cssFile?: string;
|
|
111
|
+
cssText?: string;
|
|
112
|
+
}
|
|
113
|
+
/**
|
|
114
|
+
* Event data containing information about root view application.
|
|
115
|
+
*/
|
|
116
|
+
export interface InitRootViewEventData extends ApplicationEventData {
|
|
117
|
+
rootView: View;
|
|
118
|
+
}
|
|
119
|
+
/**
|
|
120
|
+
* Data for the Android activity events.
|
|
121
|
+
*/
|
|
122
|
+
export interface AndroidActivityEventData {
|
|
123
|
+
/**
|
|
124
|
+
* The activity.
|
|
125
|
+
*/
|
|
126
|
+
activity: androidx.appcompat.app.AppCompatActivity;
|
|
127
|
+
/**
|
|
128
|
+
* The name of the event.
|
|
129
|
+
*/
|
|
130
|
+
eventName: string;
|
|
131
|
+
/**
|
|
132
|
+
* The instance that has raised the event.
|
|
133
|
+
*/
|
|
134
|
+
object: any;
|
|
135
|
+
}
|
|
136
|
+
/**
|
|
137
|
+
* Data for the Android activity events with bundle.
|
|
138
|
+
*/
|
|
139
|
+
export interface AndroidActivityBundleEventData extends AndroidActivityEventData {
|
|
140
|
+
/**
|
|
141
|
+
* The bundle.
|
|
142
|
+
*/
|
|
143
|
+
bundle: android.os.Bundle;
|
|
144
|
+
}
|
|
145
|
+
/**
|
|
146
|
+
* Data for the Android activity onRequestPermissions callback
|
|
147
|
+
*/
|
|
148
|
+
export interface AndroidActivityRequestPermissionsEventData extends AndroidActivityEventData {
|
|
149
|
+
/**
|
|
150
|
+
* The request code.
|
|
151
|
+
*/
|
|
152
|
+
requestCode: number;
|
|
153
|
+
/**
|
|
154
|
+
* The Permissions.
|
|
155
|
+
*/
|
|
156
|
+
permissions: Array<string>;
|
|
157
|
+
/**
|
|
158
|
+
* The Granted.
|
|
159
|
+
*/
|
|
160
|
+
grantResults: Array<number>;
|
|
161
|
+
}
|
|
162
|
+
/**
|
|
163
|
+
* Data for the Android activity result event.
|
|
164
|
+
*/
|
|
165
|
+
export interface AndroidActivityResultEventData extends AndroidActivityEventData {
|
|
166
|
+
/**
|
|
167
|
+
* The request code.
|
|
168
|
+
*/
|
|
169
|
+
requestCode: number;
|
|
170
|
+
/**
|
|
171
|
+
* The result code.
|
|
172
|
+
*/
|
|
173
|
+
resultCode: number;
|
|
174
|
+
/**
|
|
175
|
+
* The intent.
|
|
176
|
+
*/
|
|
177
|
+
intent: android.content.Intent;
|
|
178
|
+
}
|
|
179
|
+
/**
|
|
180
|
+
* Data for the Android activity newIntent event.
|
|
181
|
+
*/
|
|
182
|
+
export interface AndroidActivityNewIntentEventData extends AndroidActivityEventData {
|
|
183
|
+
/**
|
|
184
|
+
* The intent.
|
|
185
|
+
*/
|
|
186
|
+
intent: any;
|
|
187
|
+
}
|
|
188
|
+
/**
|
|
189
|
+
* Data for the Android activity back pressed event.
|
|
190
|
+
*/
|
|
191
|
+
export interface AndroidActivityBackPressedEventData extends AndroidActivityEventData {
|
|
192
|
+
/**
|
|
193
|
+
* In the event handler, set this value to true if you want to cancel the back navigation and do something else instead.
|
|
194
|
+
*/
|
|
195
|
+
cancel: boolean;
|
|
196
|
+
}
|
|
197
|
+
export interface LoadAppCSSEventData extends ApplicationEventData {
|
|
198
|
+
cssFile: string;
|
|
199
|
+
}
|
|
200
|
+
/**
|
|
201
|
+
* iOS Event data containing information for scene lifecycle events (iOS 13+).
|
|
202
|
+
*/
|
|
203
|
+
export interface SceneEventData extends ApplicationEventData {
|
|
204
|
+
/**
|
|
205
|
+
* The UIWindowScene instance associated with this event.
|
|
206
|
+
*/
|
|
207
|
+
scene?: UIWindowScene;
|
|
208
|
+
/**
|
|
209
|
+
* The UIWindow associated with this scene (if applicable).
|
|
210
|
+
*/
|
|
211
|
+
window?: UIWindow;
|
|
212
|
+
/**
|
|
213
|
+
* Scene connection options (for sceneWillConnect event).
|
|
214
|
+
*/
|
|
215
|
+
connectionOptions?: UISceneConnectionOptions;
|
|
216
|
+
/**
|
|
217
|
+
* Additional user info from the notification.
|
|
218
|
+
*/
|
|
219
|
+
userInfo?: NSDictionary<any, any>;
|
|
220
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"application-interfaces.js","sourceRoot":"","sources":["../../../../packages/core/application/application-interfaces.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,378 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
3
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
4
|
+
* ```ts
|
|
5
|
+
* import { Application } from "@nativescript/core";
|
|
6
|
+
* Application.addCss()
|
|
7
|
+
* ```
|
|
8
|
+
*/
|
|
9
|
+
export declare const addCss: any;
|
|
10
|
+
/**
|
|
11
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
12
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
13
|
+
* ```ts
|
|
14
|
+
* import { Application } from "@nativescript/core";
|
|
15
|
+
* Application.getCssFileName()
|
|
16
|
+
* ```
|
|
17
|
+
*/
|
|
18
|
+
export declare const getCssFileName: any;
|
|
19
|
+
/**
|
|
20
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
21
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
22
|
+
* ```ts
|
|
23
|
+
* import { Application } from "@nativescript/core";
|
|
24
|
+
* Application.getMainEntry()
|
|
25
|
+
* ```
|
|
26
|
+
*/
|
|
27
|
+
export declare const getMainEntry: any;
|
|
28
|
+
/**
|
|
29
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
30
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
31
|
+
* ```ts
|
|
32
|
+
* import { Application } from "@nativescript/core";
|
|
33
|
+
* Application.getNativeApplication()
|
|
34
|
+
* ```
|
|
35
|
+
*/
|
|
36
|
+
export declare const getNativeApplication: any;
|
|
37
|
+
/**
|
|
38
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
39
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
40
|
+
* ```ts
|
|
41
|
+
* import { Application } from "@nativescript/core";
|
|
42
|
+
* Application.getResources()
|
|
43
|
+
* ```
|
|
44
|
+
*/
|
|
45
|
+
export declare const getResources: any;
|
|
46
|
+
/**
|
|
47
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
48
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
49
|
+
* ```ts
|
|
50
|
+
* import { Application } from "@nativescript/core";
|
|
51
|
+
* Application.getRootView()
|
|
52
|
+
* ```
|
|
53
|
+
*/
|
|
54
|
+
export declare const getRootView: any;
|
|
55
|
+
/**
|
|
56
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
57
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
58
|
+
* ```ts
|
|
59
|
+
* import { Application } from "@nativescript/core";
|
|
60
|
+
* Application.hasLaunched()
|
|
61
|
+
* ```
|
|
62
|
+
*/
|
|
63
|
+
export declare const hasLaunched: any;
|
|
64
|
+
/**
|
|
65
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
66
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
67
|
+
* ```ts
|
|
68
|
+
* import { Application } from "@nativescript/core";
|
|
69
|
+
* Application.hasListeners()
|
|
70
|
+
* ```
|
|
71
|
+
*/
|
|
72
|
+
export declare const hasListeners: any;
|
|
73
|
+
/**
|
|
74
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
75
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
76
|
+
* ```ts
|
|
77
|
+
* import { Application } from "@nativescript/core";
|
|
78
|
+
* Application.loadAppCss()
|
|
79
|
+
* ```
|
|
80
|
+
*/
|
|
81
|
+
export declare const loadAppCss: any;
|
|
82
|
+
/**
|
|
83
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
84
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
85
|
+
* ```ts
|
|
86
|
+
* import { Application } from "@nativescript/core";
|
|
87
|
+
* Application.notify()
|
|
88
|
+
* ```
|
|
89
|
+
*/
|
|
90
|
+
export declare const notify: any;
|
|
91
|
+
/**
|
|
92
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
93
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
94
|
+
* ```ts
|
|
95
|
+
* import { Application } from "@nativescript/core";
|
|
96
|
+
* Application.off()
|
|
97
|
+
* ```
|
|
98
|
+
*/
|
|
99
|
+
export declare const off: any;
|
|
100
|
+
/**
|
|
101
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
102
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
103
|
+
* ```ts
|
|
104
|
+
* import { Application } from "@nativescript/core";
|
|
105
|
+
* Application.on()
|
|
106
|
+
* ```
|
|
107
|
+
*/
|
|
108
|
+
export declare const on: any;
|
|
109
|
+
/**
|
|
110
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
111
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
112
|
+
* ```ts
|
|
113
|
+
* import { Application } from "@nativescript/core";
|
|
114
|
+
* Application.orientation()
|
|
115
|
+
* ```
|
|
116
|
+
*/
|
|
117
|
+
export declare const orientation: any;
|
|
118
|
+
/**
|
|
119
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
120
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
121
|
+
* ```ts
|
|
122
|
+
* import { Application } from "@nativescript/core";
|
|
123
|
+
* Application.resetRootView()
|
|
124
|
+
* ```
|
|
125
|
+
*/
|
|
126
|
+
export declare const resetRootView: any;
|
|
127
|
+
/**
|
|
128
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
129
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
130
|
+
* ```ts
|
|
131
|
+
* import { Application } from "@nativescript/core";
|
|
132
|
+
* Application.resetRootView()
|
|
133
|
+
* ```
|
|
134
|
+
*/
|
|
135
|
+
export declare const _resetRootView: any;
|
|
136
|
+
/**
|
|
137
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
138
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
139
|
+
* ```ts
|
|
140
|
+
* import { Application } from "@nativescript/core";
|
|
141
|
+
* Application.run()
|
|
142
|
+
* ```
|
|
143
|
+
*/
|
|
144
|
+
export declare const run: any;
|
|
145
|
+
/**
|
|
146
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
147
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
148
|
+
* ```ts
|
|
149
|
+
* import { Application } from "@nativescript/core";
|
|
150
|
+
* Application.setAutoSystemAppearanceChanged()
|
|
151
|
+
* ```
|
|
152
|
+
*/
|
|
153
|
+
export declare const setAutoSystemAppearanceChanged: any;
|
|
154
|
+
/**
|
|
155
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
156
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
157
|
+
* ```ts
|
|
158
|
+
* import { Application } from "@nativescript/core";
|
|
159
|
+
* Application.setCssFileName()
|
|
160
|
+
* ```
|
|
161
|
+
*/
|
|
162
|
+
export declare const setCssFileName: any;
|
|
163
|
+
/**
|
|
164
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
165
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
166
|
+
* ```ts
|
|
167
|
+
* import { Application } from "@nativescript/core";
|
|
168
|
+
* Application.setMaxRefreshRate()
|
|
169
|
+
* ```
|
|
170
|
+
*/
|
|
171
|
+
export declare const setMaxRefreshRate: any;
|
|
172
|
+
/**
|
|
173
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
174
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
175
|
+
* ```ts
|
|
176
|
+
* import { Application } from "@nativescript/core";
|
|
177
|
+
* Application.setResources()
|
|
178
|
+
* ```
|
|
179
|
+
*/
|
|
180
|
+
export declare const setResources: any;
|
|
181
|
+
/**
|
|
182
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
183
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
184
|
+
* ```ts
|
|
185
|
+
* import { Application } from "@nativescript/core";
|
|
186
|
+
* Application.systemAppearance()
|
|
187
|
+
* ```
|
|
188
|
+
*/
|
|
189
|
+
export declare const systemAppearance: any;
|
|
190
|
+
/**
|
|
191
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
192
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
193
|
+
* ```ts
|
|
194
|
+
* import { Application } from "@nativescript/core";
|
|
195
|
+
* Application.systemAppearanceChanged()
|
|
196
|
+
* ```
|
|
197
|
+
*/
|
|
198
|
+
export declare const systemAppearanceChanged: any;
|
|
199
|
+
/**
|
|
200
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
201
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
202
|
+
* ```ts
|
|
203
|
+
* import { Application } from "@nativescript/core";
|
|
204
|
+
* Application.layoutDirection()
|
|
205
|
+
* ```
|
|
206
|
+
*/
|
|
207
|
+
export declare const layoutDirection: any;
|
|
208
|
+
/**
|
|
209
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
210
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
211
|
+
* ```ts
|
|
212
|
+
* import { Application } from "@nativescript/core";
|
|
213
|
+
* Application.layoutDirectionChanged()
|
|
214
|
+
* ```
|
|
215
|
+
*/
|
|
216
|
+
export declare const layoutDirectionChanged: any;
|
|
217
|
+
/**
|
|
218
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
219
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
220
|
+
* ```ts
|
|
221
|
+
* import { Application } from "@nativescript/core";
|
|
222
|
+
* Application.discardedErrorEvent
|
|
223
|
+
* ```
|
|
224
|
+
*/
|
|
225
|
+
export declare const discardedErrorEvent = "discardedError";
|
|
226
|
+
/**
|
|
227
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
228
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
229
|
+
* ```ts
|
|
230
|
+
* import { Application } from "@nativescript/core";
|
|
231
|
+
* Application.uncaughtErrorEvent
|
|
232
|
+
* ```
|
|
233
|
+
*/
|
|
234
|
+
export declare const uncaughtErrorEvent = "uncaughtError";
|
|
235
|
+
/**
|
|
236
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
237
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
238
|
+
* ```ts
|
|
239
|
+
* import { Application } from "@nativescript/core";
|
|
240
|
+
* Application.displayedEvent
|
|
241
|
+
* ```
|
|
242
|
+
*/
|
|
243
|
+
export declare const displayedEvent = "displayed";
|
|
244
|
+
/**
|
|
245
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
246
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
247
|
+
* ```ts
|
|
248
|
+
* import { Application } from "@nativescript/core";
|
|
249
|
+
* Application.exitEvent
|
|
250
|
+
* ```
|
|
251
|
+
*/
|
|
252
|
+
export declare const exitEvent = "exit";
|
|
253
|
+
/**
|
|
254
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
255
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
256
|
+
* ```ts
|
|
257
|
+
* import { Application } from "@nativescript/core";
|
|
258
|
+
* Application.fontScaleChangedEvent
|
|
259
|
+
* ```
|
|
260
|
+
*/
|
|
261
|
+
export declare const fontScaleChangedEvent = "fontScaleChanged";
|
|
262
|
+
/**
|
|
263
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
264
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
265
|
+
* ```ts
|
|
266
|
+
* import { Application } from "@nativescript/core";
|
|
267
|
+
* Application.launchEvent
|
|
268
|
+
* ```
|
|
269
|
+
*/
|
|
270
|
+
export declare const launchEvent = "launch";
|
|
271
|
+
/**
|
|
272
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
273
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
274
|
+
* ```ts
|
|
275
|
+
* import { Application } from "@nativescript/core";
|
|
276
|
+
* Application.lowMemoryEvent
|
|
277
|
+
* ```
|
|
278
|
+
*/
|
|
279
|
+
export declare const lowMemoryEvent = "lowMemory";
|
|
280
|
+
/**
|
|
281
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
282
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
283
|
+
* ```ts
|
|
284
|
+
* import { Application } from "@nativescript/core";
|
|
285
|
+
* Application.resumeEvent
|
|
286
|
+
* ```
|
|
287
|
+
*/
|
|
288
|
+
export declare const resumeEvent = "resume";
|
|
289
|
+
/**
|
|
290
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
291
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
292
|
+
* ```ts
|
|
293
|
+
* import { Application } from "@nativescript/core";
|
|
294
|
+
* Application.orientationChangedEvent
|
|
295
|
+
* ```
|
|
296
|
+
*/
|
|
297
|
+
export declare const orientationChangedEvent = "orientationChanged";
|
|
298
|
+
/**
|
|
299
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
300
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
301
|
+
* ```ts
|
|
302
|
+
* import { Application } from "@nativescript/core";
|
|
303
|
+
* Application.suspendEvent
|
|
304
|
+
* ```
|
|
305
|
+
*/
|
|
306
|
+
export declare const suspendEvent = "suspend";
|
|
307
|
+
/**
|
|
308
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
309
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
310
|
+
* ```ts
|
|
311
|
+
* import { Application } from "@nativescript/core";
|
|
312
|
+
* Application.systemAppearanceChangedEvent
|
|
313
|
+
* ```
|
|
314
|
+
*/
|
|
315
|
+
export declare const systemAppearanceChangedEvent = "systemAppearanceChanged";
|
|
316
|
+
/**
|
|
317
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
318
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
319
|
+
* ```ts
|
|
320
|
+
* import { Application } from "@nativescript/core";
|
|
321
|
+
* Application.layoutDirectionChangedEvent
|
|
322
|
+
* ```
|
|
323
|
+
*/
|
|
324
|
+
export declare const layoutDirectionChangedEvent = "layoutDirectionChanged";
|
|
325
|
+
/**
|
|
326
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
327
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
328
|
+
* ```ts
|
|
329
|
+
* import { Application } from "@nativescript/core";
|
|
330
|
+
* Application.backgroundEvent
|
|
331
|
+
* ```
|
|
332
|
+
*/
|
|
333
|
+
export declare const backgroundEvent = "background";
|
|
334
|
+
/**
|
|
335
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
336
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
337
|
+
* ```ts
|
|
338
|
+
* import { Application } from "@nativescript/core";
|
|
339
|
+
* Application.foregroundEvent
|
|
340
|
+
* ```
|
|
341
|
+
*/
|
|
342
|
+
export declare const foregroundEvent = "foreground";
|
|
343
|
+
/**
|
|
344
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
345
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
346
|
+
* ```ts
|
|
347
|
+
* import { Application } from "@nativescript/core";
|
|
348
|
+
* Application.inBackground
|
|
349
|
+
* ```
|
|
350
|
+
*/
|
|
351
|
+
export declare const inBackground: boolean;
|
|
352
|
+
/**
|
|
353
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
354
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
355
|
+
* ```ts
|
|
356
|
+
* import { Application } from "@nativescript/core";
|
|
357
|
+
* Application.suspended
|
|
358
|
+
* ```
|
|
359
|
+
*/
|
|
360
|
+
export declare const suspended: boolean;
|
|
361
|
+
/**
|
|
362
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
363
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
364
|
+
* ```ts
|
|
365
|
+
* import { Application } from "@nativescript/core";
|
|
366
|
+
* Application.android
|
|
367
|
+
* ```
|
|
368
|
+
*/
|
|
369
|
+
export declare const android: import("./application").AndroidApplication;
|
|
370
|
+
/**
|
|
371
|
+
* @deprecated Deep imports into the Application module are deprecated and will be removed in a future release.
|
|
372
|
+
* Use the `Application` class imported from "@nativescript/core" instead:
|
|
373
|
+
* ```ts
|
|
374
|
+
* import { Application } from "@nativescript/core";
|
|
375
|
+
* Application.ios
|
|
376
|
+
* ```
|
|
377
|
+
*/
|
|
378
|
+
export declare const ios: import("./application").iOSApplication;
|