@ui5/task-adaptation 1.3.1 → 1.3.3
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/CHANGELOG.md +9 -1
- package/README.md +18 -0
- package/dist/annotationManager.d.ts +18 -0
- package/dist/annotationManager.js +79 -0
- package/dist/annotations/comparator/comparator.d.ts +47 -0
- package/dist/annotations/comparator/comparator.js +283 -0
- package/dist/annotations/comparator/diffCase.d.ts +4 -0
- package/dist/annotations/comparator/diffCase.js +2 -0
- package/dist/annotations/comparator/interchangableCase.d.ts +25 -0
- package/dist/annotations/comparator/interchangableCase.js +60 -0
- package/dist/annotations/converter/metadataJsonReferenceUtil.d.ts +12 -0
- package/dist/annotations/converter/metadataJsonReferenceUtil.js +48 -0
- package/dist/annotations/converter/metadataJsonUtil.d.ts +30 -0
- package/dist/annotations/converter/metadataJsonUtil.js +70 -0
- package/dist/annotations/converter/ui5JsonConverter.d.ts +21 -0
- package/dist/annotations/converter/ui5JsonConverter.js +252 -0
- package/dist/annotations/converter/ui5MetadataJsonUtil.d.ts +3 -0
- package/dist/annotations/converter/ui5MetadataJsonUtil.js +10 -0
- package/dist/annotations/converter/ui5XmlConverter.d.ts +5 -0
- package/dist/annotations/converter/ui5XmlConverter.js +14 -0
- package/dist/annotations/dataSource/dataSource.d.ts +34 -0
- package/dist/annotations/dataSource/dataSource.js +62 -0
- package/dist/annotations/dataSource/dataSourceManager.d.ts +12 -0
- package/dist/annotations/dataSource/dataSourceManager.js +45 -0
- package/dist/annotations/dataSource/dataSourceOData.d.ts +17 -0
- package/dist/annotations/dataSource/dataSourceOData.js +45 -0
- package/dist/annotations/dataSource/dataSourceODataAnnotation.d.ts +6 -0
- package/dist/annotations/dataSource/dataSourceODataAnnotation.js +16 -0
- package/dist/annotations/serviceRequestor.d.ts +9 -0
- package/dist/annotations/serviceRequestor.js +73 -0
- package/dist/annotations/transformers/convertV2ToV4.d.ts +4 -0
- package/dist/annotations/transformers/convertV2ToV4.js +13 -0
- package/dist/annotations/transformers/makeAnnotationNamespaceUnique.d.ts +6 -0
- package/dist/annotations/transformers/makeAnnotationNamespaceUnique.js +41 -0
- package/dist/annotations/transformers/removeAllSchemaNodesExceptAnnotations.d.ts +4 -0
- package/dist/annotations/transformers/removeAllSchemaNodesExceptAnnotations.js +14 -0
- package/dist/annotations/transformers/transformer.d.ts +12 -0
- package/dist/annotations/transformers/transformer.js +2 -0
- package/dist/annotations/transformers/traverseReferences.d.ts +9 -0
- package/dist/annotations/transformers/traverseReferences.js +66 -0
- package/dist/appVariantManager.d.ts +12 -0
- package/dist/appVariantManager.js +102 -0
- package/dist/baseAppManager.d.ts +29 -0
- package/dist/baseAppManager.js +139 -0
- package/dist/buildStrategy.d.ts +7 -0
- package/dist/buildStrategy.js +19 -0
- package/dist/bundle.d.ts +25 -0
- package/dist/bundle.js +7146 -0
- package/dist/cache/annotationsCacheManager.d.ts +8 -0
- package/dist/cache/annotationsCacheManager.js +16 -0
- package/dist/cache/baseAppFilesCacheManager.d.ts +6 -0
- package/dist/cache/baseAppFilesCacheManager.js +12 -0
- package/dist/cache/cacheManager.d.ts +16 -0
- package/dist/cache/cacheManager.js +65 -0
- package/dist/i18nManager.d.ts +43 -0
- package/dist/i18nManager.js +203 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +25 -0
- package/dist/model/annotationDiffStructureError.d.ts +3 -0
- package/dist/model/annotationDiffStructureError.js +8 -0
- package/dist/model/configuration.d.ts +21 -0
- package/dist/model/configuration.js +2 -0
- package/dist/model/language.d.ts +13 -0
- package/dist/model/language.js +37 -0
- package/dist/model/serverError.d.ts +3 -0
- package/dist/model/serverError.js +6 -0
- package/dist/model/types.d.ts +105 -0
- package/dist/model/types.js +2 -0
- package/dist/processors/abapProcessor.d.ts +21 -0
- package/dist/processors/abapProcessor.js +39 -0
- package/dist/processors/cfProcessor.d.ts +17 -0
- package/dist/processors/cfProcessor.js +45 -0
- package/dist/processors/processor.d.ts +7 -0
- package/dist/processors/processor.js +32 -0
- package/dist/repositories/abapProvider.d.ts +9 -0
- package/dist/repositories/abapProvider.js +69 -0
- package/dist/repositories/abapRepoManager.d.ts +11 -0
- package/dist/repositories/abapRepoManager.js +71 -0
- package/dist/repositories/html5RepoManager.d.ts +11 -0
- package/dist/repositories/html5RepoManager.js +87 -0
- package/dist/util/cfUtil.d.ts +30 -0
- package/dist/util/cfUtil.js +171 -0
- package/dist/util/commonUtil.d.ts +13 -0
- package/dist/util/commonUtil.js +118 -0
- package/dist/util/i18nMerger.d.ts +32 -0
- package/dist/util/i18nMerger.js +99 -0
- package/dist/util/requestUtil.d.ts +6 -0
- package/dist/util/requestUtil.js +36 -0
- package/dist/util/resourceUtil.d.ts +11 -0
- package/dist/util/resourceUtil.js +62 -0
- package/dist/util/urlUtil.d.ts +4 -0
- package/dist/util/urlUtil.js +18 -0
- package/dist/util/xmlUtil.d.ts +4 -0
- package/dist/util/xmlUtil.js +21 -0
- package/dist/util/zipUtil.d.ts +2 -0
- package/dist/util/zipUtil.js +16 -0
- package/package.json +8 -3
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.