UNPKG

openui5-model-json-crud

Version:

An OpenUI5 library which extends JSONModel to support CRUD (Create, Read, Update, Delete) operations.

39 lines (36 loc) 808 B
'use strict'; /* * openui5-model-json-crud * (c) Copyright 2018-2023 Mauricio Lauffer * Licensed under the MIT license. See LICENSE file in the project root for full license information. */ sap.ui.define([ 'sap/ui/core/Lib', 'sap/ui/core/library' ], /** * Module Dependencies * @param {sap.ui.core.Lib} Lib - sap.ui.core.Lib * @returns {object} openui5.model.json.crud library */ function(Lib) { /** * OpenUI5 library: openui5.model.json.crud * @namespace * @name openui5.model.json.crud * @author Mauricio Lauffer * @version 0.0.15 * @public */ return Lib.init({ name: 'openui5.model.json.crud', dependencies: [ 'sap.ui.core' ], controls: [ 'openui5.model.json.crud.CRUDModel' ], noLibraryCSS: true, version: '0.0.15' }); });