diff --git a/packages/core/index.d.ts b/packages/core/index.d.ts index 99a8e4f3f..e81e32221 100644 --- a/packages/core/index.d.ts +++ b/packages/core/index.d.ts @@ -93,7 +93,7 @@ export type { InstrumentationMode, TimerInfo } from './profiling'; export { encoding } from './text'; export * from './trace'; export * from './ui'; -import { GC, isFontIconURI, isDataURI, isFileOrResourcePath, executeOnMainThread, mainThreadify, isMainThread, dispatchToMainThread, releaseNativeObject, getModuleName, openFile, openUrl, isRealDevice, layout, ad as androidUtils, iOSNativeHelper as iosUtils, Source } from './utils'; +import { GC, isFontIconURI, isDataURI, isFileOrResourcePath, executeOnMainThread, mainThreadify, isMainThread, dispatchToMainThread, releaseNativeObject, getModuleName, openFile, openUrl, isRealDevice, layout, ad as androidUtils, iOSNativeHelper as iosUtils, Source, escapeRegexSymbols, convertString } from './utils'; import { ClassInfo, getClass, getBaseClasses, getClassInfo, isBoolean, isDefined, isFunction, isNullOrUndefined, isNumber, isObject, isString, isUndefined, toUIString, verifyCallback } from './utils/types'; export declare const Utils: { GC: typeof GC; @@ -107,6 +107,8 @@ export declare const Utils: { isMainThread: typeof isMainThread; dispatchToMainThread: typeof dispatchToMainThread; releaseNativeObject: typeof releaseNativeObject; + escapeRegexSymbols: typeof escapeRegexSymbols; + convertString: typeof convertString; getModuleName: typeof getModuleName; openFile: typeof openFile; openUrl: typeof openUrl; diff --git a/packages/core/index.ts b/packages/core/index.ts index 65879ead4..89f4e412f 100644 --- a/packages/core/index.ts +++ b/packages/core/index.ts @@ -110,7 +110,7 @@ export * from './trace'; export * from './ui'; -import { GC, isFontIconURI, isDataURI, isFileOrResourcePath, executeOnMainThread, mainThreadify, isMainThread, dispatchToMainThread, queueMacrotask, releaseNativeObject, getModuleName, openFile, openUrl, isRealDevice, layout, ad as androidUtils, iOSNativeHelper as iosUtils, Source, RESOURCE_PREFIX, FILE_PREFIX } from './utils'; +import { GC, isFontIconURI, isDataURI, isFileOrResourcePath, executeOnMainThread, mainThreadify, isMainThread, dispatchToMainThread, queueMacrotask, releaseNativeObject, getModuleName, openFile, openUrl, isRealDevice, layout, ad as androidUtils, iOSNativeHelper as iosUtils, Source, RESOURCE_PREFIX, FILE_PREFIX, escapeRegexSymbols, convertString } from './utils'; import { ClassInfo, getClass, getBaseClasses, getClassInfo, isBoolean, isDefined, isFunction, isNullOrUndefined, isNumber, isObject, isString, isUndefined, toUIString, verifyCallback } from './utils/types'; export const Utils = { @@ -126,6 +126,8 @@ export const Utils = { dispatchToMainThread, queueMacrotask, releaseNativeObject, + convertString, + escapeRegexSymbols, getModuleName, openFile, diff --git a/packages/ui-mobile-base/package.json b/packages/ui-mobile-base/package.json index 89820b440..8b62c5224 100644 --- a/packages/ui-mobile-base/package.json +++ b/packages/ui-mobile-base/package.json @@ -1,6 +1,6 @@ { "name": "@nativescript/ui-mobile-base", - "version": "7.0.0-rc.0", + "version": "7.0.0", "description": "Native UI base components used with NativeScript.", "scripts": { "test": "echo \"Error: no test specified\" && exit 1"