- Updated version numbers in package.json, package-lock.json, and manifest.json to 2.0.0. - Refactored configuration types to use data sources (SELF, APP) instead of type-based configurations. - Enhanced settings UI to allow selection between using the current record or another app's record. - Improved error handling and validation for configuration settings. - Added new input component for better handling of text inputs in settings. - Updated localization files for new settings structure and error messages. - Optimized API calls with memoization for fetching form field properties and checking configurations.
29 lines
837 B
JSON
29 lines
837 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/kintone/js-sdk/%40kintone/plugin-manifest-validator%4010.2.0/packages/plugin-manifest-validator/manifest-schema.json",
|
|
"manifest_version": 1,
|
|
"version": "2.0.0",
|
|
"type": "APP",
|
|
"desktop": {
|
|
"js": ["js/desktop.js"],
|
|
"css": ["js/desktop.css"]
|
|
},
|
|
"mobile": {
|
|
"js": ["js/desktop.js"],
|
|
"css": ["js/desktop.css"]
|
|
},
|
|
"icon": "image/icon.png",
|
|
"config": {
|
|
"html": "html/config.html",
|
|
"js": ["js/config.js"],
|
|
"css": ["js/config.css"]
|
|
},
|
|
"name": {
|
|
"en": "Word output plugin",
|
|
"ja": "Word出力プラグイン"
|
|
},
|
|
"description": {
|
|
"en": "Data can be formatted and downloaded using Word template files.",
|
|
"ja": "Wordテンプレートファイルを使用して、データを整形してダウンロードできます。"
|
|
}
|
|
}
|