将uiExtension, FullScreenLaunchComponent两个接口kit化处理

Signed-off-by: liuhui <985721518@qq.com>
Change-Id: I8326f655e8c8efe8df0950586ac043fe4f53e207
This commit is contained in:
liuhui 2024-06-25 13:50:16 +00:00
parent 3f85a884a0
commit e099f762ea
2 changed files with 77 additions and 2 deletions

View File

@ -1,8 +1,81 @@
{
"name": "delete",
"version": "1.0.0",
"lockfileVersion": 1,
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "delete",
"version": "1.0.0",
"license": "ISC",
"dependencies": {
"fs": "^0.0.1-security",
"path": "^0.12.7",
"typescript": "npm:ohos-typescript@4.2.3-r5"
}
},
"node_modules/fs": {
"version": "0.0.1-security",
"resolved": "https://repo.huaweicloud.com/repository/npm/fs/-/fs-0.0.1-security.tgz",
"integrity": "sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==",
"license": "ISC"
},
"node_modules/inherits": {
"version": "2.0.3",
"resolved": "https://repo.huaweicloud.com/repository/npm/inherits/-/inherits-2.0.3.tgz",
"integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==",
"license": "ISC"
},
"node_modules/json5": {
"version": "2.2.3",
"resolved": "https://repo.huaweicloud.com/repository/npm/json5/-/json5-2.2.3.tgz",
"integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
"license": "MIT",
"bin": {
"json5": "lib/cli.js"
},
"engines": {
"node": ">=6"
}
},
"node_modules/path": {
"version": "0.12.7",
"resolved": "https://repo.huaweicloud.com/repository/npm/path/-/path-0.12.7.tgz",
"integrity": "sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==",
"license": "MIT",
"dependencies": {
"process": "^0.11.1",
"util": "^0.10.3"
}
},
"node_modules/process": {
"version": "0.11.10",
"resolved": "https://repo.huaweicloud.com/repository/npm/process/-/process-0.11.10.tgz",
"integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==",
"license": "MIT",
"engines": {
"node": ">= 0.6.0"
}
},
"node_modules/typescript": {
"name": "ohos-typescript",
"version": "4.2.3-r5",
"resolved": "https://repo.huaweicloud.com/repository/npm/ohos-typescript/-/ohos-typescript-4.2.3-r5.tgz",
"integrity": "sha512-9l72RIvrz8RMpU8j1uK7cIL5/gpNR11nelIFOmMDDOA3LJf70NlMgVIXOIg7MjCgjPb+U9PDwYBpalvb+rd2LA==",
"dependencies": {
"json5": "^2.2.3"
}
},
"node_modules/util": {
"version": "0.10.4",
"resolved": "https://repo.huaweicloud.com/repository/npm/util/-/util-0.10.4.tgz",
"integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==",
"license": "MIT",
"dependencies": {
"inherits": "2.0.3"
}
}
},
"dependencies": {
"fs": {
"version": "0.0.1-security",

View File

@ -118,6 +118,8 @@ import {
} from '@ohos.arkui.advanced.FoldSplitContainer';
import { AppStorageV2, PersistenceV2, Type } from '@ohos.arkui.StateManagement';
import { IDataSourcePrefetching, IPrefetcher, BasicPrefetcher } from '@ohos.arkui.Prefetcher';
import uiExtension from '@ohos.arkui.uiExtension';
import { FullScreenLaunchComponent } from '@ohos.arkui.advanced.FullScreenLaunchComponent';
export {
AddFormMenuItem, AddFormOptions, AlertDialog, Animator, AnimatorOptions, AnimatorResult, App, AppResponse, AtomicServiceBar,
@ -149,5 +151,5 @@ export {
ExtraRegionPosition, ExpandedRegionLayoutOptions, HoverModeRegionLayoutOptions, FoldedRegionLayoutOptions, PresetSplitRatio, FoldSplitContainer,
HoverModeStatus, OnHoverStatusChangeHandler,
AppStorageV2, PersistenceV2, Type,
IDataSourcePrefetching, IPrefetcher, BasicPrefetcher
IDataSourcePrefetching, IPrefetcher, BasicPrefetcher,uiExtension, FullScreenLaunchComponent
};