mirror of
https://github.com/webmasterskaya/joomla-oauth-server.git
synced 2026-03-16 11:12:10 +03:00
Добавил поле "copy"
This commit is contained in:
parent
366ddf3534
commit
6ed72e5eb6
3
.gitignore
vendored
3
.gitignore
vendored
@ -5,11 +5,14 @@
|
||||
.vscode
|
||||
/tmp
|
||||
/.php-cs-fixer.cache
|
||||
/com_oauthserver/media
|
||||
|
||||
composer.phar
|
||||
com_oauthserver/administrator/vendor
|
||||
!com_oauthserver/administrator/vendor/.gitkeep
|
||||
|
||||
node_modules/
|
||||
|
||||
._*
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
|
||||
18
babel.config.es2017.json
Normal file
18
babel.config.es2017.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"presets": [
|
||||
[
|
||||
"@babel/preset-env",
|
||||
{
|
||||
"targets": {
|
||||
"browsers": [
|
||||
"> 1%",
|
||||
"not ie 11",
|
||||
"not op_mini all"
|
||||
]
|
||||
},
|
||||
"bugfixes": true,
|
||||
"loose": true
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
17
babel.config.es5.json
Normal file
17
babel.config.es5.json
Normal file
@ -0,0 +1,17 @@
|
||||
{
|
||||
"presets": [
|
||||
[
|
||||
"@babel/preset-env",
|
||||
{
|
||||
"corejs": "3.8",
|
||||
"useBuiltIns": "entry",
|
||||
"targets": {
|
||||
"ie": "11"
|
||||
},
|
||||
"loose": true,
|
||||
"bugfixes": false,
|
||||
"modules": false
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
32
build/src/com_oauthserver/joomla.asset.json
Normal file
32
build/src/com_oauthserver/joomla.asset.json
Normal file
@ -0,0 +1,32 @@
|
||||
{
|
||||
"$schema": "https://developer.joomla.org/schemas/json-schema/web_assets.json",
|
||||
"name": "com_oauthserver",
|
||||
"version": "version",
|
||||
"description": "Joomla CMS",
|
||||
"license": "MIT",
|
||||
"assets": [
|
||||
{
|
||||
"name": "com_oauthserver.field.copy.es5",
|
||||
"type": "script",
|
||||
"uri": "com_oauthserver/field-copy-es5.min.js",
|
||||
"dependencies": [
|
||||
"core"
|
||||
],
|
||||
"attributes": {
|
||||
"nomodule": true,
|
||||
"defer": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "com_oauthserver.field.copy",
|
||||
"type": "script",
|
||||
"uri": "com_oauthserver/field-copy.min.js",
|
||||
"dependencies": [
|
||||
"com_oauthserver.field.copy.es5"
|
||||
],
|
||||
"attributes": {
|
||||
"type": "module"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
56
build/src/com_oauthserver/js/field/copy.es6.js
Normal file
56
build/src/com_oauthserver/js/field/copy.es6.js
Normal file
@ -0,0 +1,56 @@
|
||||
/**
|
||||
* @copyright (c) 2024. Webmasterskaya. <https://webmasterskaya.xyz>
|
||||
* | ||||