Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
No results found
Show changes
Commits on Source (5)
Showing
with 3424 additions and 7896 deletions
File added
...@@ -53,7 +53,7 @@ class PagesController extends APIBaseController ...@@ -53,7 +53,7 @@ class PagesController extends APIBaseController
} }
$last_edited = Pegawai::where('id_user', $id)->first()->updated_at; $last_edited = Pegawai::where('id_user', $id)->first()->updated_at;
return view("profile.index", compact('last_edited', 'nama_pengubah','data_kinerja', 'unit_kerja', 'posisi', 'kelompok_kompetensi', 'rekomendasi_training', 'training_list', 'rekomendasi_posisi')); return view("profile.index", compact('id', 'last_edited', 'nama_pengubah', 'data_kinerja', 'unit_kerja', 'posisi', 'kelompok_kompetensi', 'rekomendasi_training', 'training_list', 'rekomendasi_posisi'));
} }
public function pegawaiSpecific($id){ public function pegawaiSpecific($id){
...@@ -79,8 +79,6 @@ class PagesController extends APIBaseController ...@@ -79,8 +79,6 @@ class PagesController extends APIBaseController
} }
$last_edited = Pegawai::where('id_user', $id)->first()->updated_at; $last_edited = Pegawai::where('id_user', $id)->first()->updated_at;
return view("profile.pmo", compact('id_pmo','id', 'last_edited', 'nama_pengubah','data_kinerja', 'unit_kerja', 'posisi', 'kelompok_kompetensi', 'rekomendasi_training', 'training_list', 'rekomendasi_posisi')); return view("profile.pmo", compact('id_pmo','id', 'last_edited', 'nama_pengubah','data_kinerja', 'unit_kerja', 'posisi', 'kelompok_kompetensi', 'rekomendasi_training', 'training_list', 'rekomendasi_posisi'));
} }
......
...@@ -13,6 +13,7 @@ use App\Performance; ...@@ -13,6 +13,7 @@ use App\Performance;
use App\Profile; use App\Profile;
use App\User; use App\User;
use Validator; use Validator;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Hash; use Illuminate\Support\Facades\Hash;
...@@ -25,8 +26,14 @@ class UserAPIController extends APIBaseController ...@@ -25,8 +26,14 @@ class UserAPIController extends APIBaseController
*/ */
public function index() public function index()
{ {
$posts = User::all(); $data = DB::table('users')
return $this->sendResponse($posts->toArray(), 'User retrieved successfully.'); ->join('denormalized_pegawai', 'users.id', '=',
'denormalized_pegawai.id_user')
->select('users.name', 'denormalized_pegawai.nip', 'users.email',
'denormalized_pegawai.pendidikan_terakhir')
->get();
return $this->sendResponse($data->toArray(), 'User retrieved successfully.');
} }
......
...@@ -162,16 +162,16 @@ ...@@ -162,16 +162,16 @@
}, },
{ {
"name": "dragonmantank/cron-expression", "name": "dragonmantank/cron-expression",
"version": "v2.1.0", "version": "v2.2.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/dragonmantank/cron-expression.git", "url": "https://github.com/dragonmantank/cron-expression.git",
"reference": "3f00985deec8df53d4cc1e5c33619bda1ee309a5" "reference": "92a2c3768d50e21a1f26a53cb795ce72806266c5"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/3f00985deec8df53d4cc1e5c33619bda1ee309a5", "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/92a2c3768d50e21a1f26a53cb795ce72806266c5",
"reference": "3f00985deec8df53d4cc1e5c33619bda1ee309a5", "reference": "92a2c3768d50e21a1f26a53cb795ce72806266c5",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -207,20 +207,20 @@ ...@@ -207,20 +207,20 @@
"cron", "cron",
"schedule" "schedule"
], ],
"time": "2018-04-06T15:51:55+00:00" "time": "2018-06-06T03:12:17+00:00"
}, },
{ {
"name": "egulias/email-validator", "name": "egulias/email-validator",
"version": "2.1.4", "version": "2.1.7",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/egulias/EmailValidator.git", "url": "https://github.com/egulias/EmailValidator.git",
"reference": "8790f594151ca6a2010c6218e09d96df67173ad3" "reference": "709f21f92707308cdf8f9bcfa1af4cb26586521e"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/egulias/EmailValidator/zipball/8790f594151ca6a2010c6218e09d96df67173ad3", "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/709f21f92707308cdf8f9bcfa1af4cb26586521e",
"reference": "8790f594151ca6a2010c6218e09d96df67173ad3", "reference": "709f21f92707308cdf8f9bcfa1af4cb26586521e",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -264,7 +264,7 @@ ...@@ -264,7 +264,7 @@
"validation", "validation",
"validator" "validator"
], ],
"time": "2018-04-10T10:11:19+00:00" "time": "2018-12-04T22:38:24+00:00"
}, },
{ {
"name": "erusev/parsedown", "name": "erusev/parsedown",
...@@ -314,16 +314,16 @@ ...@@ -314,16 +314,16 @@
}, },
{ {
"name": "fideloper/proxy", "name": "fideloper/proxy",
"version": "4.0.0", "version": "4.1.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/fideloper/TrustedProxy.git", "url": "https://github.com/fideloper/TrustedProxy.git",
"reference": "cf8a0ca4b85659b9557e206c90110a6a4dba980a" "reference": "177c79a2d1f9970f89ee2fb4c12b429af38b6dfb"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/cf8a0ca4b85659b9557e206c90110a6a4dba980a", "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/177c79a2d1f9970f89ee2fb4c12b429af38b6dfb",
"reference": "cf8a0ca4b85659b9557e206c90110a6a4dba980a", "reference": "177c79a2d1f9970f89ee2fb4c12b429af38b6dfb",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -364,36 +364,37 @@ ...@@ -364,36 +364,37 @@
"proxy", "proxy",
"trusted proxy" "trusted proxy"
], ],
"time": "2018-02-07T20:20:57+00:00" "time": "2019-01-10T14:06:47+00:00"
}, },
{ {
"name": "guzzlehttp/psr7", "name": "guzzlehttp/psr7",
"version": "1.4.2", "version": "1.5.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/guzzle/psr7.git", "url": "https://github.com/guzzle/psr7.git",
"reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c" "reference": "9f83dded91781a01c63574e387eaa769be769115"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c", "url": "https://api.github.com/repos/guzzle/psr7/zipball/9f83dded91781a01c63574e387eaa769be769115",
"reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c", "reference": "9f83dded91781a01c63574e387eaa769be769115",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": ">=5.4.0", "php": ">=5.4.0",
"psr/http-message": "~1.0" "psr/http-message": "~1.0",
"ralouphie/getallheaders": "^2.0.5"
}, },
"provide": { "provide": {
"psr/http-message-implementation": "1.0" "psr/http-message-implementation": "1.0"
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "~4.0" "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
}, },
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "1.4-dev" "dev-master": "1.5-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -423,26 +424,27 @@ ...@@ -423,26 +424,27 @@
"keywords": [ "keywords": [
"http", "http",
"message", "message",
"psr-7",
"request", "request",
"response", "response",
"stream", "stream",
"uri", "uri",
"url" "url"
], ],
"time": "2017-03-20T17:10:46+00:00" "time": "2018-12-04T20:46:45+00:00"
}, },
{ {
"name": "intervention/image", "name": "intervention/image",
"version": "2.4.1", "version": "2.4.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/Intervention/image.git", "url": "https://github.com/Intervention/image.git",
"reference": "3603dbcc9a17d307533473246a6c58c31cf17919" "reference": "e82d274f786e3d4b866a59b173f42e716f0783eb"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/Intervention/image/zipball/3603dbcc9a17d307533473246a6c58c31cf17919", "url": "https://api.github.com/repos/Intervention/image/zipball/e82d274f786e3d4b866a59b173f42e716f0783eb",
"reference": "3603dbcc9a17d307533473246a6c58c31cf17919", "reference": "e82d274f786e3d4b866a59b173f42e716f0783eb",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -462,7 +464,7 @@ ...@@ -462,7 +464,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "2.3-dev" "dev-master": "2.4-dev"
}, },
"laravel": { "laravel": {
"providers": [ "providers": [
...@@ -499,36 +501,36 @@ ...@@ -499,36 +501,36 @@
"thumbnail", "thumbnail",
"watermark" "watermark"
], ],
"time": "2017-09-21T16:29:17+00:00" "time": "2018-05-29T14:19:03+00:00"
}, },
{ {
"name": "jakub-onderka/php-console-color", "name": "jakub-onderka/php-console-color",
"version": "0.1", "version": "v0.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/JakubOnderka/PHP-Console-Color.git", "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
"reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1" "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/e0b393dacf7703fc36a4efc3df1435485197e6c1", "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
"reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1", "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": ">=5.3.2" "php": ">=5.4.0"
}, },
"require-dev": { "require-dev": {
"jakub-onderka/php-code-style": "1.0", "jakub-onderka/php-code-style": "1.0",
"jakub-onderka/php-parallel-lint": "0.*", "jakub-onderka/php-parallel-lint": "1.0",
"jakub-onderka/php-var-dump-check": "0.*", "jakub-onderka/php-var-dump-check": "0.*",
"phpunit/phpunit": "3.7.*", "phpunit/phpunit": "~4.3",
"squizlabs/php_codesniffer": "1.*" "squizlabs/php_codesniffer": "1.*"
}, },
"type": "library", "type": "library",
"autoload": { "autoload": {
"psr-0": { "psr-4": {
"JakubOnderka\\PhpConsoleColor": "src/" "JakubOnderka\\PhpConsoleColor\\": "src/"
} }
}, },
"notification-url": "https://packagist.org/downloads/", "notification-url": "https://packagist.org/downloads/",
...@@ -538,41 +540,41 @@ ...@@ -538,41 +540,41 @@
"authors": [ "authors": [
{ {
"name": "Jakub Onderka", "name": "Jakub Onderka",
"email": "jakub.onderka@gmail.com", "email": "jakub.onderka@gmail.com"
"homepage": "http://www.acci.cz"
} }
], ],
"time": "2014-04-08T15:00:19+00:00" "time": "2018-09-29T17:23:10+00:00"
}, },
{ {
"name": "jakub-onderka/php-console-highlighter", "name": "jakub-onderka/php-console-highlighter",
"version": "v0.3.2", "version": "v0.4",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git", "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
"reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5" "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/7daa75df45242c8d5b75a22c00a201e7954e4fb5", "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
"reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5", "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"jakub-onderka/php-console-color": "~0.1", "ext-tokenizer": "*",
"php": ">=5.3.0" "jakub-onderka/php-console-color": "~0.2",
"php": ">=5.4.0"
}, },
"require-dev": { "require-dev": {
"jakub-onderka/php-code-style": "~1.0", "jakub-onderka/php-code-style": "~1.0",
"jakub-onderka/php-parallel-lint": "~0.5", "jakub-onderka/php-parallel-lint": "~1.0",
"jakub-onderka/php-var-dump-check": "~0.1", "jakub-onderka/php-var-dump-check": "~0.1",
"phpunit/phpunit": "~4.0", "phpunit/phpunit": "~4.0",
"squizlabs/php_codesniffer": "~1.5" "squizlabs/php_codesniffer": "~1.5"
}, },
"type": "library", "type": "library",
"autoload": { "autoload": {
"psr-0": { "psr-4": {
"JakubOnderka\\PhpConsoleHighlighter": "src/" "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
} }
}, },
"notification-url": "https://packagist.org/downloads/", "notification-url": "https://packagist.org/downloads/",
...@@ -586,7 +588,8 @@ ...@@ -586,7 +588,8 @@
"homepage": "http://www.acci.cz/" "homepage": "http://www.acci.cz/"
} }
], ],
"time": "2015-04-20T18:58:01+00:00" "description": "Highlight PHP code in terminal",
"time": "2018-09-29T18:48:56+00:00"
}, },
{ {
"name": "jeremeamia/SuperClosure", "name": "jeremeamia/SuperClosure",
...@@ -648,16 +651,16 @@ ...@@ -648,16 +651,16 @@
}, },
{ {
"name": "laravel/framework", "name": "laravel/framework",
"version": "v5.6.17", "version": "v5.6.39",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/laravel/framework.git", "url": "https://github.com/laravel/framework.git",
"reference": "0f787c763ae8fb9fae0c8c809830ba4fa81e2d9d" "reference": "37bb306f516669ab4f888c16003f694313ab299e"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/laravel/framework/zipball/0f787c763ae8fb9fae0c8c809830ba4fa81e2d9d", "url": "https://api.github.com/repos/laravel/framework/zipball/37bb306f516669ab4f888c16003f694313ab299e",
"reference": "0f787c763ae8fb9fae0c8c809830ba4fa81e2d9d", "reference": "37bb306f516669ab4f888c16003f694313ab299e",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -783,20 +786,20 @@ ...@@ -783,20 +786,20 @@
"framework", "framework",
"laravel" "laravel"
], ],
"time": "2018-04-17T12:51:04+00:00" "time": "2018-10-04T14:50:41+00:00"
}, },
{ {
"name": "laravel/tinker", "name": "laravel/tinker",
"version": "v1.0.6", "version": "v1.0.8",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/laravel/tinker.git", "url": "https://github.com/laravel/tinker.git",
"reference": "b22fe905fcefdffae76b011e27c7ac09e07e052b" "reference": "cafbf598a90acde68985660e79b2b03c5609a405"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/laravel/tinker/zipball/b22fe905fcefdffae76b011e27c7ac09e07e052b", "url": "https://api.github.com/repos/laravel/tinker/zipball/cafbf598a90acde68985660e79b2b03c5609a405",
"reference": "b22fe905fcefdffae76b011e27c7ac09e07e052b", "reference": "cafbf598a90acde68985660e79b2b03c5609a405",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -846,32 +849,32 @@ ...@@ -846,32 +849,32 @@
"laravel", "laravel",
"psysh" "psysh"
], ],
"time": "2018-04-16T12:10:37+00:00" "time": "2018-10-12T19:39:35+00:00"
}, },
{ {
"name": "league/flysystem", "name": "league/flysystem",
"version": "1.0.44", "version": "1.0.50",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/thephpleague/flysystem.git", "url": "https://github.com/thephpleague/flysystem.git",
"reference": "168dbe519737221dc87d17385cde33073881fd02" "reference": "dab4e7624efa543a943be978008f439c333f2249"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/168dbe519737221dc87d17385cde33073881fd02", "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/dab4e7624efa543a943be978008f439c333f2249",
"reference": "168dbe519737221dc87d17385cde33073881fd02", "reference": "dab4e7624efa543a943be978008f439c333f2249",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"ext-fileinfo": "*",
"php": ">=5.5.9" "php": ">=5.5.9"
}, },
"conflict": { "conflict": {
"league/flysystem-sftp": "<1.0.6" "league/flysystem-sftp": "<1.0.6"
}, },
"require-dev": { "require-dev": {
"ext-fileinfo": "*",
"phpspec/phpspec": "^3.4", "phpspec/phpspec": "^3.4",
"phpunit/phpunit": "^5.7" "phpunit/phpunit": "^5.7.10"
}, },
"suggest": { "suggest": {
"ext-fileinfo": "Required for MimeType", "ext-fileinfo": "Required for MimeType",
...@@ -930,27 +933,27 @@ ...@@ -930,27 +933,27 @@
"sftp", "sftp",
"storage" "storage"
], ],
"time": "2018-04-06T09:58:14+00:00" "time": "2019-02-01T08:50:36+00:00"
}, },
{ {
"name": "maatwebsite/excel", "name": "maatwebsite/excel",
"version": "2.1.27", "version": "2.1.30",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/Maatwebsite/Laravel-Excel.git", "url": "https://github.com/Maatwebsite/Laravel-Excel.git",
"reference": "ea758fe5a9d33e0d88b40f099d1df652a0c99d38" "reference": "f5540c4ba3ac50cebd98b09ca42e61f926ef299f"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/ea758fe5a9d33e0d88b40f099d1df652a0c99d38", "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/f5540c4ba3ac50cebd98b09ca42e61f926ef299f",
"reference": "ea758fe5a9d33e0d88b40f099d1df652a0c99d38", "reference": "f5540c4ba3ac50cebd98b09ca42e61f926ef299f",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"illuminate/cache": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*", "illuminate/cache": "^5.0",
"illuminate/config": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*", "illuminate/config": "^5.0",
"illuminate/filesystem": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*", "illuminate/filesystem": "^5.0",
"illuminate/support": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*", "illuminate/support": "^5.0",
"jeremeamia/superclosure": "^2.3", "jeremeamia/superclosure": "^2.3",
"nesbot/carbon": "~1.0", "nesbot/carbon": "~1.0",
"php": ">=5.5", "php": ">=5.5",
...@@ -964,10 +967,10 @@ ...@@ -964,10 +967,10 @@
"phpunit/phpunit": "~4.0" "phpunit/phpunit": "~4.0"
}, },
"suggest": { "suggest": {
"illuminate/http": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*", "illuminate/http": "^5.0",
"illuminate/queue": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*", "illuminate/queue": "^5.0",
"illuminate/routing": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*", "illuminate/routing": "^5.0",
"illuminate/view": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*" "illuminate/view": "^5.0"
}, },
"type": "library", "type": "library",
"extra": { "extra": {
...@@ -998,7 +1001,7 @@ ...@@ -998,7 +1001,7 @@
"email": "patrick@maatwebsite.nl" "email": "patrick@maatwebsite.nl"
} }
], ],
"description": "An eloquent way of importing and exporting Excel and CSV in Laravel 4 with the power of PHPExcel", "description": "Supercharged Excel exports in Laravel",
"keywords": [ "keywords": [
"PHPExcel", "PHPExcel",
"batch", "batch",
...@@ -1008,20 +1011,20 @@ ...@@ -1008,20 +1011,20 @@
"import", "import",
"laravel" "laravel"
], ],
"time": "2018-03-09T13:14:19+00:00" "time": "2018-09-04T19:00:09+00:00"
}, },
{ {
"name": "monolog/monolog", "name": "monolog/monolog",
"version": "1.23.0", "version": "1.24.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/Seldaek/monolog.git", "url": "https://github.com/Seldaek/monolog.git",
"reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4" "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd8c787753b3a2ad11bc60c063cff1358a32a3b4", "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
"reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4", "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -1086,7 +1089,7 @@ ...@@ -1086,7 +1089,7 @@
"logging", "logging",
"psr-3" "psr-3"
], ],
"time": "2017-06-19T01:22:40+00:00" "time": "2018-11-05T09:00:11+00:00"
}, },
{ {
"name": "nesbot/carbon", "name": "nesbot/carbon",
...@@ -1143,16 +1146,16 @@ ...@@ -1143,16 +1146,16 @@
}, },
{ {
"name": "nikic/php-parser", "name": "nikic/php-parser",
"version": "v4.0.1", "version": "v4.2.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/nikic/PHP-Parser.git", "url": "https://github.com/nikic/PHP-Parser.git",
"reference": "e4a54fa90a5cd8e8dd3fb4099942681731c5cdd3" "reference": "594bcae1fc0bccd3993d2f0d61a018e26ac2865a"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/e4a54fa90a5cd8e8dd3fb4099942681731c5cdd3", "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/594bcae1fc0bccd3993d2f0d61a018e26ac2865a",
"reference": "e4a54fa90a5cd8e8dd3fb4099942681731c5cdd3", "reference": "594bcae1fc0bccd3993d2f0d61a018e26ac2865a",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -1168,7 +1171,7 @@ ...@@ -1168,7 +1171,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "4.0-dev" "dev-master": "4.2-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -1190,37 +1193,33 @@ ...@@ -1190,37 +1193,33 @@
"parser", "parser",
"php" "php"
], ],
"time": "2018-03-25T17:35:16+00:00" "time": "2019-01-12T16:31:37+00:00"
}, },
{ {
"name": "paragonie/random_compat", "name": "paragonie/random_compat",
"version": "v2.0.12", "version": "v9.99.99",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/paragonie/random_compat.git", "url": "https://github.com/paragonie/random_compat.git",
"reference": "258c89a6b97de7dfaf5b8c7607d0478e236b04fb" "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/paragonie/random_compat/zipball/258c89a6b97de7dfaf5b8c7607d0478e236b04fb", "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
"reference": "258c89a6b97de7dfaf5b8c7607d0478e236b04fb", "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": ">=5.2.0" "php": "^7"
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "4.*|5.*" "phpunit/phpunit": "4.*|5.*",
"vimeo/psalm": "^1"
}, },
"suggest": { "suggest": {
"ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes." "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
}, },
"type": "library", "type": "library",
"autoload": {
"files": [
"lib/random.php"
]
},
"notification-url": "https://packagist.org/downloads/", "notification-url": "https://packagist.org/downloads/",
"license": [ "license": [
"MIT" "MIT"
...@@ -1235,29 +1234,34 @@ ...@@ -1235,29 +1234,34 @@
"description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
"keywords": [ "keywords": [
"csprng", "csprng",
"polyfill",
"pseudorandom", "pseudorandom",
"random" "random"
], ],
"time": "2018-04-04T21:24:14+00:00" "time": "2018-07-02T15:55:56+00:00"
}, },
{ {
"name": "phpoffice/phpexcel", "name": "phpoffice/phpexcel",
"version": "1.8.1", "version": "1.8.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/PHPOffice/PHPExcel.git", "url": "https://github.com/PHPOffice/PHPExcel.git",
"reference": "372c7cbb695a6f6f1e62649381aeaa37e7e70b32" "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/372c7cbb695a6f6f1e62649381aeaa37e7e70b32", "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/1441011fb7ecdd8cc689878f54f8b58a6805f870",
"reference": "372c7cbb695a6f6f1e62649381aeaa37e7e70b32", "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"ext-mbstring": "*",
"ext-xml": "*", "ext-xml": "*",
"ext-xmlwriter": "*", "ext-xmlwriter": "*",
"php": ">=5.2.0" "php": "^5.2|^7.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "2.*"
}, },
"type": "library", "type": "library",
"autoload": { "autoload": {
...@@ -1267,7 +1271,7 @@ ...@@ -1267,7 +1271,7 @@
}, },
"notification-url": "https://packagist.org/downloads/", "notification-url": "https://packagist.org/downloads/",
"license": [ "license": [
"LGPL" "LGPL-2.1"
], ],
"authors": [ "authors": [
{ {
...@@ -1275,18 +1279,19 @@ ...@@ -1275,18 +1279,19 @@
"homepage": "http://blog.maartenballiauw.be" "homepage": "http://blog.maartenballiauw.be"
}, },
{ {
"name": "Mark Baker" "name": "Erik Tilt"
}, },
{ {
"name": "Franck Lefevre", "name": "Franck Lefevre",
"homepage": "http://blog.rootslabs.net" "homepage": "http://rootslabs.net"
}, },
{ {
"name": "Erik Tilt" "name": "Mark Baker",
"homepage": "http://markbakeruk.net"
} }
], ],
"description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine", "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
"homepage": "http://phpexcel.codeplex.com", "homepage": "https://github.com/PHPOffice/PHPExcel",
"keywords": [ "keywords": [
"OpenXML", "OpenXML",
"excel", "excel",
...@@ -1296,7 +1301,7 @@ ...@@ -1296,7 +1301,7 @@
"xlsx" "xlsx"
], ],
"abandoned": "phpoffice/phpspreadsheet", "abandoned": "phpoffice/phpspreadsheet",
"time": "2015-05-01T07:00:55+00:00" "time": "2018-11-22T23:07:24+00:00"
}, },
{ {
"name": "psr/container", "name": "psr/container",
...@@ -1399,16 +1404,16 @@ ...@@ -1399,16 +1404,16 @@
}, },
{ {
"name": "psr/log", "name": "psr/log",
"version": "1.0.2", "version": "1.1.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/php-fig/log.git", "url": "https://github.com/php-fig/log.git",
"reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d" "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
"reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -1442,7 +1447,7 @@ ...@@ -1442,7 +1447,7 @@
"psr", "psr",
"psr-3" "psr-3"
], ],
"time": "2016-10-10T12:19:37+00:00" "time": "2018-11-20T15:27:04+00:00"
}, },
{ {
"name": "psr/simple-cache", "name": "psr/simple-cache",
...@@ -1494,30 +1499,32 @@ ...@@ -1494,30 +1499,32 @@
}, },
{ {
"name": "psy/psysh", "name": "psy/psysh",
"version": "v0.9.3", "version": "v0.9.9",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/bobthecow/psysh.git", "url": "https://github.com/bobthecow/psysh.git",
"reference": "79c280013cf0b30fa23f3ba8bd3649218075adf4" "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/bobthecow/psysh/zipball/79c280013cf0b30fa23f3ba8bd3649218075adf4", "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
"reference": "79c280013cf0b30fa23f3ba8bd3649218075adf4", "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"dnoegel/php-xdg-base-dir": "0.1", "dnoegel/php-xdg-base-dir": "0.1",
"jakub-onderka/php-console-highlighter": "0.3.*", "ext-json": "*",
"ext-tokenizer": "*",
"jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
"nikic/php-parser": "~1.3|~2.0|~3.0|~4.0", "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
"php": ">=5.4.0", "php": ">=5.4.0",
"symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0", "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
"symfony/var-dumper": "~2.7|~3.0|~4.0" "symfony/var-dumper": "~2.7|~3.0|~4.0"
}, },
"require-dev": { "require-dev": {
"bamarni/composer-bin-plugin": "^1.2",
"hoa/console": "~2.15|~3.16", "hoa/console": "~2.15|~3.16",
"phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0", "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
"symfony/finder": "~2.1|~3.0|~4.0"
}, },
"suggest": { "suggest": {
"ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
...@@ -1562,25 +1569,66 @@ ...@@ -1562,25 +1569,66 @@
"interactive", "interactive",
"shell" "shell"
], ],
"time": "2018-04-18T12:32:50+00:00" "time": "2018-10-13T15:16:03+00:00"
},
{
"name": "ralouphie/getallheaders",
"version": "2.0.5",
"source": {
"type": "git",
"url": "https://github.com/ralouphie/getallheaders.git",
"reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
"reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
"shasum": ""
},
"require": {
"php": ">=5.3"
},
"require-dev": {
"phpunit/phpunit": "~3.7.0",
"satooshi/php-coveralls": ">=1.0"
},
"type": "library",
"autoload": {
"files": [
"src/getallheaders.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Ralph Khattar",
"email": "ralph.khattar@gmail.com"
}
],
"description": "A polyfill for getallheaders.",
"time": "2016-02-11T07:05:27+00:00"
}, },
{ {
"name": "ramsey/uuid", "name": "ramsey/uuid",
"version": "3.7.3", "version": "3.8.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/ramsey/uuid.git", "url": "https://github.com/ramsey/uuid.git",
"reference": "44abcdad877d9a46685a3a4d221e3b2c4b87cb76" "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/ramsey/uuid/zipball/44abcdad877d9a46685a3a4d221e3b2c4b87cb76", "url": "https://api.github.com/repos/ramsey/uuid/zipball/d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
"reference": "44abcdad877d9a46685a3a4d221e3b2c4b87cb76", "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"paragonie/random_compat": "^1.0|^2.0", "paragonie/random_compat": "^1.0|^2.0|9.99.99",
"php": "^5.4 || ^7.0" "php": "^5.4 || ^7.0",
"symfony/polyfill-ctype": "^1.8"
}, },
"replace": { "replace": {
"rhumsaa/uuid": "self.version" "rhumsaa/uuid": "self.version"
...@@ -1588,16 +1636,17 @@ ...@@ -1588,16 +1636,17 @@
"require-dev": { "require-dev": {
"codeception/aspect-mock": "^1.0 | ~2.0.0", "codeception/aspect-mock": "^1.0 | ~2.0.0",
"doctrine/annotations": "~1.2.0", "doctrine/annotations": "~1.2.0",
"goaop/framework": "1.0.0-alpha.2 | ^1.0 | ^2.1", "goaop/framework": "1.0.0-alpha.2 | ^1.0 | ~2.1.0",
"ircmaxell/random-lib": "^1.1", "ircmaxell/random-lib": "^1.1",
"jakub-onderka/php-parallel-lint": "^0.9.0", "jakub-onderka/php-parallel-lint": "^0.9.0",
"mockery/mockery": "^0.9.9", "mockery/mockery": "^0.9.9",
"moontoast/math": "^1.1", "moontoast/math": "^1.1",
"php-mock/php-mock-phpunit": "^0.3|^1.1", "php-mock/php-mock-phpunit": "^0.3|^1.1",
"phpunit/phpunit": "^4.7|^5.0", "phpunit/phpunit": "^4.7|^5.0|^6.5",
"squizlabs/php_codesniffer": "^2.3" "squizlabs/php_codesniffer": "^2.3"
}, },
"suggest": { "suggest": {
"ext-ctype": "Provides support for PHP Ctype functions",
"ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator", "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
"ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator", "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
"ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter", "ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
...@@ -1642,20 +1691,20 @@ ...@@ -1642,20 +1691,20 @@
"identifier", "identifier",
"uuid" "uuid"
], ],
"time": "2018-01-20T00:28:24+00:00" "time": "2018-07-19T23:38:55+00:00"
}, },
{ {
"name": "swiftmailer/swiftmailer", "name": "swiftmailer/swiftmailer",
"version": "v6.0.2", "version": "v6.1.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/swiftmailer/swiftmailer.git", "url": "https://github.com/swiftmailer/swiftmailer.git",
"reference": "412333372fb6c8ffb65496a2bbd7321af75733fc" "reference": "8ddcb66ac10c392d3beb54829eef8ac1438595f4"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/412333372fb6c8ffb65496a2bbd7321af75733fc", "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8ddcb66ac10c392d3beb54829eef8ac1438595f4",
"reference": "412333372fb6c8ffb65496a2bbd7321af75733fc", "reference": "8ddcb66ac10c392d3beb54829eef8ac1438595f4",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -1666,10 +1715,14 @@ ...@@ -1666,10 +1715,14 @@
"mockery/mockery": "~0.9.1", "mockery/mockery": "~0.9.1",
"symfony/phpunit-bridge": "~3.3@dev" "symfony/phpunit-bridge": "~3.3@dev"
}, },
"suggest": {
"ext-intl": "Needed to support internationalized email addresses",
"true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
},
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "6.0-dev" "dev-master": "6.1-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -1691,36 +1744,40 @@ ...@@ -1691,36 +1744,40 @@
} }
], ],
"description": "Swiftmailer, free feature-rich PHP mailer", "description": "Swiftmailer, free feature-rich PHP mailer",
"homepage": "http://swiftmailer.symfony.com", "homepage": "https://swiftmailer.symfony.com",
"keywords": [ "keywords": [
"email", "email",
"mail", "mail",
"mailer" "mailer"
], ],
"time": "2017-09-30T22:39:41+00:00" "time": "2018-09-11T07:12:52+00:00"
}, },
{ {
"name": "symfony/console", "name": "symfony/console",
"version": "v4.0.8", "version": "v4.2.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/console.git", "url": "https://github.com/symfony/console.git",
"reference": "aad9a6fe47319f22748fd764f52d3a7ca6fa6b64" "reference": "1f0ad51dfde4da8a6070f06adc58b4e37cbb37a4"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/console/zipball/aad9a6fe47319f22748fd764f52d3a7ca6fa6b64", "url": "https://api.github.com/repos/symfony/console/zipball/1f0ad51dfde4da8a6070f06adc58b4e37cbb37a4",
"reference": "aad9a6fe47319f22748fd764f52d3a7ca6fa6b64", "reference": "1f0ad51dfde4da8a6070f06adc58b4e37cbb37a4",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": "^7.1.3", "php": "^7.1.3",
"symfony/contracts": "^1.0",
"symfony/polyfill-mbstring": "~1.0" "symfony/polyfill-mbstring": "~1.0"
}, },
"conflict": { "conflict": {
"symfony/dependency-injection": "<3.4", "symfony/dependency-injection": "<3.4",
"symfony/process": "<3.3" "symfony/process": "<3.3"
}, },
"provide": {
"psr/log-implementation": "1.0"
},
"require-dev": { "require-dev": {
"psr/log": "~1.0", "psr/log": "~1.0",
"symfony/config": "~3.4|~4.0", "symfony/config": "~3.4|~4.0",
...@@ -1738,7 +1795,7 @@ ...@@ -1738,7 +1795,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "4.0-dev" "dev-master": "4.2-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -1765,20 +1822,88 @@ ...@@ -1765,20 +1822,88 @@
], ],
"description": "Symfony Console Component", "description": "Symfony Console Component",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"time": "2018-04-03T05:24:00+00:00" "time": "2019-01-25T14:35:16+00:00"
},
{
"name": "symfony/contracts",
"version": "v1.0.2",
"source": {
"type": "git",
"url": "https://github.com/symfony/contracts.git",
"reference": "1aa7ab2429c3d594dd70689604b5cf7421254cdf"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/contracts/zipball/1aa7ab2429c3d594dd70689604b5cf7421254cdf",
"reference": "1aa7ab2429c3d594dd70689604b5cf7421254cdf",
"shasum": ""
},
"require": {
"php": "^7.1.3"
},
"require-dev": {
"psr/cache": "^1.0",
"psr/container": "^1.0"
},
"suggest": {
"psr/cache": "When using the Cache contracts",
"psr/container": "When using the Service contracts",
"symfony/cache-contracts-implementation": "",
"symfony/service-contracts-implementation": "",
"symfony/translation-contracts-implementation": ""
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"autoload": {
"psr-4": {
"Symfony\\Contracts\\": ""
},
"exclude-from-classmap": [
"**/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Nicolas Grekas",
"email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "A set of abstractions extracted out of the Symfony components",
"homepage": "https://symfony.com",
"keywords": [
"abstractions",
"contracts",
"decoupling",
"interfaces",
"interoperability",
"standards"
],
"time": "2018-12-05T08:06:11+00:00"
}, },
{ {
"name": "symfony/css-selector", "name": "symfony/css-selector",
"version": "v4.0.8", "version": "v4.2.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/css-selector.git", "url": "https://github.com/symfony/css-selector.git",
"reference": "03f965583147957f1ecbad7ea1c9d6fd5e525ec2" "reference": "48eddf66950fa57996e1be4a55916d65c10c604a"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/css-selector/zipball/03f965583147957f1ecbad7ea1c9d6fd5e525ec2", "url": "https://api.github.com/repos/symfony/css-selector/zipball/48eddf66950fa57996e1be4a55916d65c10c604a",
"reference": "03f965583147957f1ecbad7ea1c9d6fd5e525ec2", "reference": "48eddf66950fa57996e1be4a55916d65c10c604a",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -1787,7 +1912,7 @@ ...@@ -1787,7 +1912,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "4.0-dev" "dev-master": "4.2-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -1818,20 +1943,20 @@ ...@@ -1818,20 +1943,20 @@
], ],
"description": "Symfony CssSelector Component", "description": "Symfony CssSelector Component",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"time": "2018-03-19T22:35:49+00:00" "time": "2019-01-16T20:31:39+00:00"
}, },
{ {
"name": "symfony/debug", "name": "symfony/debug",
"version": "v4.0.8", "version": "v4.2.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/debug.git", "url": "https://github.com/symfony/debug.git",
"reference": "5961d02d48828671f5d8a7805e06579d692f6ede" "reference": "cf9b2e33f757deb884ce474e06d2647c1c769b65"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/debug/zipball/5961d02d48828671f5d8a7805e06579d692f6ede", "url": "https://api.github.com/repos/symfony/debug/zipball/cf9b2e33f757deb884ce474e06d2647c1c769b65",
"reference": "5961d02d48828671f5d8a7805e06579d692f6ede", "reference": "cf9b2e33f757deb884ce474e06d2647c1c769b65",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -1847,7 +1972,7 @@ ...@@ -1847,7 +1972,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "4.0-dev" "dev-master": "4.2-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -1874,24 +1999,25 @@ ...@@ -1874,24 +1999,25 @@
], ],
"description": "Symfony Debug Component", "description": "Symfony Debug Component",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"time": "2018-04-03T05:24:00+00:00" "time": "2019-01-25T14:35:16+00:00"
}, },
{ {
"name": "symfony/event-dispatcher", "name": "symfony/event-dispatcher",
"version": "v4.0.8", "version": "v4.2.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/event-dispatcher.git", "url": "https://github.com/symfony/event-dispatcher.git",
"reference": "63353a71073faf08f62caab4e6889b06a787f07b" "reference": "bd09ad265cd50b2b9d09d65ce6aba2d29bc81fe1"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/63353a71073faf08f62caab4e6889b06a787f07b", "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/bd09ad265cd50b2b9d09d65ce6aba2d29bc81fe1",
"reference": "63353a71073faf08f62caab4e6889b06a787f07b", "reference": "bd09ad265cd50b2b9d09d65ce6aba2d29bc81fe1",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": "^7.1.3" "php": "^7.1.3",
"symfony/contracts": "^1.0"
}, },
"conflict": { "conflict": {
"symfony/dependency-injection": "<3.4" "symfony/dependency-injection": "<3.4"
...@@ -1910,7 +2036,7 @@ ...@@ -1910,7 +2036,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "4.0-dev" "dev-master": "4.2-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -1937,20 +2063,20 @@ ...@@ -1937,20 +2063,20 @@
], ],
"description": "Symfony EventDispatcher Component", "description": "Symfony EventDispatcher Component",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"time": "2018-04-06T07:35:43+00:00" "time": "2019-01-16T20:35:37+00:00"
}, },
{ {
"name": "symfony/finder", "name": "symfony/finder",
"version": "v4.0.8", "version": "v4.2.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/finder.git", "url": "https://github.com/symfony/finder.git",
"reference": "ca27c02b7a3fef4828c998c2ff9ba7aae1641c49" "reference": "ef71816cbb264988bb57fe6a73f610888b9aa70c"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/finder/zipball/ca27c02b7a3fef4828c998c2ff9ba7aae1641c49", "url": "https://api.github.com/repos/symfony/finder/zipball/ef71816cbb264988bb57fe6a73f610888b9aa70c",
"reference": "ca27c02b7a3fef4828c998c2ff9ba7aae1641c49", "reference": "ef71816cbb264988bb57fe6a73f610888b9aa70c",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -1959,7 +2085,7 @@ ...@@ -1959,7 +2085,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "4.0-dev" "dev-master": "4.2-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -1986,20 +2112,20 @@ ...@@ -1986,20 +2112,20 @@
], ],
"description": "Symfony Finder Component", "description": "Symfony Finder Component",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"time": "2018-04-04T05:10:37+00:00" "time": "2019-01-16T20:35:37+00:00"
}, },
{ {
"name": "symfony/http-foundation", "name": "symfony/http-foundation",
"version": "v4.0.8", "version": "v4.2.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/http-foundation.git", "url": "https://github.com/symfony/http-foundation.git",
"reference": "d0864a82e5891ab61d31eecbaa48bed5a09b8e6c" "reference": "8d2318b73e0a1bc75baa699d00ebe2ae8b595a39"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/http-foundation/zipball/d0864a82e5891ab61d31eecbaa48bed5a09b8e6c", "url": "https://api.github.com/repos/symfony/http-foundation/zipball/8d2318b73e0a1bc75baa699d00ebe2ae8b595a39",
"reference": "d0864a82e5891ab61d31eecbaa48bed5a09b8e6c", "reference": "8d2318b73e0a1bc75baa699d00ebe2ae8b595a39",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -2007,12 +2133,13 @@ ...@@ -2007,12 +2133,13 @@
"symfony/polyfill-mbstring": "~1.1" "symfony/polyfill-mbstring": "~1.1"
}, },
"require-dev": { "require-dev": {
"predis/predis": "~1.0",
"symfony/expression-language": "~3.4|~4.0" "symfony/expression-language": "~3.4|~4.0"
}, },
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "4.0-dev" "dev-master": "4.2-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -2039,33 +2166,36 @@ ...@@ -2039,33 +2166,36 @@
], ],
"description": "Symfony HttpFoundation Component", "description": "Symfony HttpFoundation Component",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"time": "2018-04-03T05:24:00+00:00" "time": "2019-01-29T09:49:29+00:00"
}, },
{ {
"name": "symfony/http-kernel", "name": "symfony/http-kernel",
"version": "v4.0.8", "version": "v4.2.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/http-kernel.git", "url": "https://github.com/symfony/http-kernel.git",
"reference": "6dd620d96d64456075536ffe3c6c4658dd689021" "reference": "d56b1706abaa771eb6acd894c6787cb88f1dc97d"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/http-kernel/zipball/6dd620d96d64456075536ffe3c6c4658dd689021", "url": "https://api.github.com/repos/symfony/http-kernel/zipball/d56b1706abaa771eb6acd894c6787cb88f1dc97d",
"reference": "6dd620d96d64456075536ffe3c6c4658dd689021", "reference": "d56b1706abaa771eb6acd894c6787cb88f1dc97d",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": "^7.1.3", "php": "^7.1.3",
"psr/log": "~1.0", "psr/log": "~1.0",
"symfony/contracts": "^1.0.2",
"symfony/debug": "~3.4|~4.0", "symfony/debug": "~3.4|~4.0",
"symfony/event-dispatcher": "~3.4|~4.0", "symfony/event-dispatcher": "~4.1",
"symfony/http-foundation": "~3.4.4|~4.0.4" "symfony/http-foundation": "^4.1.1",
"symfony/polyfill-ctype": "~1.8"
}, },
"conflict": { "conflict": {
"symfony/config": "<3.4", "symfony/config": "<3.4",
"symfony/dependency-injection": "<3.4.5|<4.0.5,>=4", "symfony/dependency-injection": "<4.2",
"symfony/var-dumper": "<3.4", "symfony/translation": "<4.2",
"symfony/var-dumper": "<4.1.1",
"twig/twig": "<1.34|<2.4,>=2" "twig/twig": "<1.34|<2.4,>=2"
}, },
"provide": { "provide": {
...@@ -2077,7 +2207,7 @@ ...@@ -2077,7 +2207,7 @@
"symfony/config": "~3.4|~4.0", "symfony/config": "~3.4|~4.0",
"symfony/console": "~3.4|~4.0", "symfony/console": "~3.4|~4.0",
"symfony/css-selector": "~3.4|~4.0", "symfony/css-selector": "~3.4|~4.0",
"symfony/dependency-injection": "^3.4.5|^4.0.5", "symfony/dependency-injection": "^4.2",
"symfony/dom-crawler": "~3.4|~4.0", "symfony/dom-crawler": "~3.4|~4.0",
"symfony/expression-language": "~3.4|~4.0", "symfony/expression-language": "~3.4|~4.0",
"symfony/finder": "~3.4|~4.0", "symfony/finder": "~3.4|~4.0",
...@@ -2085,8 +2215,8 @@ ...@@ -2085,8 +2215,8 @@
"symfony/routing": "~3.4|~4.0", "symfony/routing": "~3.4|~4.0",
"symfony/stopwatch": "~3.4|~4.0", "symfony/stopwatch": "~3.4|~4.0",
"symfony/templating": "~3.4|~4.0", "symfony/templating": "~3.4|~4.0",
"symfony/translation": "~3.4|~4.0", "symfony/translation": "~4.2",
"symfony/var-dumper": "~3.4|~4.0" "symfony/var-dumper": "^4.1.1"
}, },
"suggest": { "suggest": {
"symfony/browser-kit": "", "symfony/browser-kit": "",
...@@ -2098,7 +2228,7 @@ ...@@ -2098,7 +2228,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "4.0-dev" "dev-master": "4.2-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -2125,20 +2255,78 @@ ...@@ -2125,20 +2255,78 @@
], ],
"description": "Symfony HttpKernel Component", "description": "Symfony HttpKernel Component",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"time": "2018-04-06T16:25:03+00:00" "time": "2019-02-03T12:47:33+00:00"
},
{
"name": "symfony/polyfill-ctype",
"version": "v1.10.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-ctype.git",
"reference": "e3d826245268269cd66f8326bd8bc066687b4a19"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19",
"reference": "e3d826245268269cd66f8326bd8bc066687b4a19",
"shasum": ""
},
"require": {
"php": ">=5.3.3"
},
"suggest": {
"ext-ctype": "For best performance"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.9-dev"
}
},
"autoload": {
"psr-4": {
"Symfony\\Polyfill\\Ctype\\": ""
},
"files": [
"bootstrap.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
},
{
"name": "Gert de Pagter",
"email": "BackEndTea@gmail.com"
}
],
"description": "Symfony polyfill for ctype functions",
"homepage": "https://symfony.com",
"keywords": [
"compatibility",
"ctype",
"polyfill",
"portable"
],
"time": "2018-08-06T14:22:27+00:00"
}, },
{ {
"name": "symfony/polyfill-mbstring", "name": "symfony/polyfill-mbstring",
"version": "v1.7.0", "version": "v1.10.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/polyfill-mbstring.git", "url": "https://github.com/symfony/polyfill-mbstring.git",
"reference": "78be803ce01e55d3491c1397cf1c64beb9c1b63b" "reference": "c79c051f5b3a46be09205c73b80b346e4153e494"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/78be803ce01e55d3491c1397cf1c64beb9c1b63b", "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/c79c051f5b3a46be09205c73b80b346e4153e494",
"reference": "78be803ce01e55d3491c1397cf1c64beb9c1b63b", "reference": "c79c051f5b3a46be09205c73b80b346e4153e494",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -2150,7 +2338,7 @@ ...@@ -2150,7 +2338,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "1.7-dev" "dev-master": "1.9-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -2184,20 +2372,20 @@ ...@@ -2184,20 +2372,20 @@
"portable", "portable",
"shim" "shim"
], ],
"time": "2018-01-30T19:27:44+00:00" "time": "2018-09-21T13:07:52+00:00"
}, },
{ {
"name": "symfony/polyfill-php56", "name": "symfony/polyfill-php56",
"version": "v1.7.0", "version": "v1.10.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/polyfill-php56.git", "url": "https://github.com/symfony/polyfill-php56.git",
"reference": "ebc999ce5f14204c5150b9bd15f8f04e621409d8" "reference": "ff208829fe1aa48ab9af356992bb7199fed551af"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/ebc999ce5f14204c5150b9bd15f8f04e621409d8", "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/ff208829fe1aa48ab9af356992bb7199fed551af",
"reference": "ebc999ce5f14204c5150b9bd15f8f04e621409d8", "reference": "ff208829fe1aa48ab9af356992bb7199fed551af",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -2207,7 +2395,7 @@ ...@@ -2207,7 +2395,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "1.7-dev" "dev-master": "1.9-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -2240,20 +2428,20 @@ ...@@ -2240,20 +2428,20 @@
"portable", "portable",
"shim" "shim"
], ],
"time": "2018-01-30T19:27:44+00:00" "time": "2018-09-21T06:26:08+00:00"
}, },
{ {
"name": "symfony/polyfill-php72", "name": "symfony/polyfill-php72",
"version": "v1.7.0", "version": "v1.10.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/polyfill-php72.git", "url": "https://github.com/symfony/polyfill-php72.git",
"reference": "8eca20c8a369e069d4f4c2ac9895144112867422" "reference": "9050816e2ca34a8e916c3a0ae8b9c2fccf68b631"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/8eca20c8a369e069d4f4c2ac9895144112867422", "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9050816e2ca34a8e916c3a0ae8b9c2fccf68b631",
"reference": "8eca20c8a369e069d4f4c2ac9895144112867422", "reference": "9050816e2ca34a8e916c3a0ae8b9c2fccf68b631",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -2262,7 +2450,7 @@ ...@@ -2262,7 +2450,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "1.7-dev" "dev-master": "1.9-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -2295,20 +2483,20 @@ ...@@ -2295,20 +2483,20 @@
"portable", "portable",
"shim" "shim"
], ],
"time": "2018-01-31T17:43:24+00:00" "time": "2018-09-21T13:07:52+00:00"
}, },
{ {
"name": "symfony/polyfill-util", "name": "symfony/polyfill-util",
"version": "v1.7.0", "version": "v1.10.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/polyfill-util.git", "url": "https://github.com/symfony/polyfill-util.git",
"reference": "e17c808ec4228026d4f5a8832afa19be85979563" "reference": "3b58903eae668d348a7126f999b0da0f2f93611c"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-util/zipball/e17c808ec4228026d4f5a8832afa19be85979563", "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/3b58903eae668d348a7126f999b0da0f2f93611c",
"reference": "e17c808ec4228026d4f5a8832afa19be85979563", "reference": "3b58903eae668d348a7126f999b0da0f2f93611c",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -2317,7 +2505,7 @@ ...@@ -2317,7 +2505,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "1.7-dev" "dev-master": "1.9-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -2347,20 +2535,20 @@ ...@@ -2347,20 +2535,20 @@
"polyfill", "polyfill",
"shim" "shim"
], ],
"time": "2018-01-31T18:08:44+00:00" "time": "2018-09-30T16:36:12+00:00"
}, },
{ {
"name": "symfony/process", "name": "symfony/process",
"version": "v4.0.8", "version": "v4.2.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/process.git", "url": "https://github.com/symfony/process.git",
"reference": "d7dc1ee5dfe9f732cb1bba7310f5b99f2b7a6d25" "reference": "6c05edb11fbeff9e2b324b4270ecb17911a8b7ad"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/process/zipball/d7dc1ee5dfe9f732cb1bba7310f5b99f2b7a6d25", "url": "https://api.github.com/repos/symfony/process/zipball/6c05edb11fbeff9e2b324b4270ecb17911a8b7ad",
"reference": "d7dc1ee5dfe9f732cb1bba7310f5b99f2b7a6d25", "reference": "6c05edb11fbeff9e2b324b4270ecb17911a8b7ad",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -2369,7 +2557,7 @@ ...@@ -2369,7 +2557,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "4.0-dev" "dev-master": "4.2-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -2396,35 +2584,34 @@ ...@@ -2396,35 +2584,34 @@
], ],
"description": "Symfony Process Component", "description": "Symfony Process Component",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"time": "2018-04-03T05:24:00+00:00" "time": "2019-01-24T22:05:03+00:00"
}, },
{ {
"name": "symfony/routing", "name": "symfony/routing",
"version": "v4.0.8", "version": "v4.2.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/routing.git", "url": "https://github.com/symfony/routing.git",
"reference": "0663036dd57dbfd4e9ff29f75bbd5dd3253ebe71" "reference": "7f8e44fc498972466f0841c3e48dc555f23bdf53"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/routing/zipball/0663036dd57dbfd4e9ff29f75bbd5dd3253ebe71", "url": "https://api.github.com/repos/symfony/routing/zipball/7f8e44fc498972466f0841c3e48dc555f23bdf53",
"reference": "0663036dd57dbfd4e9ff29f75bbd5dd3253ebe71", "reference": "7f8e44fc498972466f0841c3e48dc555f23bdf53",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": "^7.1.3" "php": "^7.1.3"
}, },
"conflict": { "conflict": {
"symfony/config": "<3.4", "symfony/config": "<4.2",
"symfony/dependency-injection": "<3.4", "symfony/dependency-injection": "<3.4",
"symfony/yaml": "<3.4" "symfony/yaml": "<3.4"
}, },
"require-dev": { "require-dev": {
"doctrine/annotations": "~1.0", "doctrine/annotations": "~1.0",
"doctrine/common": "~2.2",
"psr/log": "~1.0", "psr/log": "~1.0",
"symfony/config": "~3.4|~4.0", "symfony/config": "~4.2",
"symfony/dependency-injection": "~3.4|~4.0", "symfony/dependency-injection": "~3.4|~4.0",
"symfony/expression-language": "~3.4|~4.0", "symfony/expression-language": "~3.4|~4.0",
"symfony/http-foundation": "~3.4|~4.0", "symfony/http-foundation": "~3.4|~4.0",
...@@ -2441,7 +2628,7 @@ ...@@ -2441,7 +2628,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "4.0-dev" "dev-master": "4.2-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -2474,24 +2661,25 @@ ...@@ -2474,24 +2661,25 @@
"uri", "uri",
"url" "url"
], ],
"time": "2018-04-04T13:50:32+00:00" "time": "2019-01-29T09:49:29+00:00"
}, },
{ {
"name": "symfony/translation", "name": "symfony/translation",
"version": "v4.0.8", "version": "v4.2.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/translation.git", "url": "https://github.com/symfony/translation.git",
"reference": "e20a9b7f9f62cb33a11638b345c248e7d510c938" "reference": "23fd7aac70d99a17a8e6473a41fec8fab3331050"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/translation/zipball/e20a9b7f9f62cb33a11638b345c248e7d510c938", "url": "https://api.github.com/repos/symfony/translation/zipball/23fd7aac70d99a17a8e6473a41fec8fab3331050",
"reference": "e20a9b7f9f62cb33a11638b345c248e7d510c938", "reference": "23fd7aac70d99a17a8e6473a41fec8fab3331050",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": "^7.1.3", "php": "^7.1.3",
"symfony/contracts": "^1.0.2",
"symfony/polyfill-mbstring": "~1.0" "symfony/polyfill-mbstring": "~1.0"
}, },
"conflict": { "conflict": {
...@@ -2499,23 +2687,27 @@ ...@@ -2499,23 +2687,27 @@
"symfony/dependency-injection": "<3.4", "symfony/dependency-injection": "<3.4",
"symfony/yaml": "<3.4" "symfony/yaml": "<3.4"
}, },
"provide": {
"symfony/translation-contracts-implementation": "1.0"
},
"require-dev": { "require-dev": {
"psr/log": "~1.0", "psr/log": "~1.0",
"symfony/config": "~3.4|~4.0", "symfony/config": "~3.4|~4.0",
"symfony/console": "~3.4|~4.0",
"symfony/dependency-injection": "~3.4|~4.0", "symfony/dependency-injection": "~3.4|~4.0",
"symfony/finder": "~2.8|~3.0|~4.0", "symfony/finder": "~2.8|~3.0|~4.0",
"symfony/intl": "~3.4|~4.0", "symfony/intl": "~3.4|~4.0",
"symfony/yaml": "~3.4|~4.0" "symfony/yaml": "~3.4|~4.0"
}, },
"suggest": { "suggest": {
"psr/log": "To use logging capability in translator", "psr/log-implementation": "To use logging capability in translator",
"symfony/config": "", "symfony/config": "",
"symfony/yaml": "" "symfony/yaml": ""
}, },
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "4.0-dev" "dev-master": "4.2-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -2542,20 +2734,20 @@ ...@@ -2542,20 +2734,20 @@
], ],
"description": "Symfony Translation Component", "description": "Symfony Translation Component",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"time": "2018-02-22T10:50:29+00:00" "time": "2019-01-27T23:11:39+00:00"
}, },
{ {
"name": "symfony/var-dumper", "name": "symfony/var-dumper",
"version": "v4.0.8", "version": "v4.2.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/var-dumper.git", "url": "https://github.com/symfony/var-dumper.git",
"reference": "e1b4d008100f4d203cc38b0d793ad6252d8d8af0" "reference": "223bda89f9be41cf7033eeaf11bc61a280489c17"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/e1b4d008100f4d203cc38b0d793ad6252d8d8af0", "url": "https://api.github.com/repos/symfony/var-dumper/zipball/223bda89f9be41cf7033eeaf11bc61a280489c17",
"reference": "e1b4d008100f4d203cc38b0d793ad6252d8d8af0", "reference": "223bda89f9be41cf7033eeaf11bc61a280489c17",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -2564,20 +2756,27 @@ ...@@ -2564,20 +2756,27 @@
"symfony/polyfill-php72": "~1.5" "symfony/polyfill-php72": "~1.5"
}, },
"conflict": { "conflict": {
"phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0" "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
"symfony/console": "<3.4"
}, },
"require-dev": { "require-dev": {
"ext-iconv": "*", "ext-iconv": "*",
"symfony/console": "~3.4|~4.0",
"symfony/process": "~3.4|~4.0",
"twig/twig": "~1.34|~2.4" "twig/twig": "~1.34|~2.4"
}, },
"suggest": { "suggest": {
"ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).", "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
"ext-intl": "To show region name in time zone dump" "ext-intl": "To show region name in time zone dump",
"symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
}, },
"bin": [
"Resources/bin/var-dump-server"
],
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "4.0-dev" "dev-master": "4.2-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -2611,7 +2810,7 @@ ...@@ -2611,7 +2810,7 @@
"debug", "debug",
"dump" "dump"
], ],
"time": "2018-04-04T05:10:37+00:00" "time": "2019-01-30T11:44:30+00:00"
}, },
{ {
"name": "tijsverkoyen/css-to-inline-styles", "name": "tijsverkoyen/css-to-inline-styles",
...@@ -2662,28 +2861,29 @@ ...@@ -2662,28 +2861,29 @@
}, },
{ {
"name": "vlucas/phpdotenv", "name": "vlucas/phpdotenv",
"version": "v2.4.0", "version": "v2.6.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/vlucas/phpdotenv.git", "url": "https://github.com/vlucas/phpdotenv.git",
"reference": "3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c" "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c", "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
"reference": "3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c", "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": ">=5.3.9" "php": ">=5.3.9",
"symfony/polyfill-ctype": "^1.9"
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "^4.8 || ^5.0" "phpunit/phpunit": "^4.8.35 || ^5.0"
}, },
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "2.4-dev" "dev-master": "2.6-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -2693,7 +2893,7 @@ ...@@ -2693,7 +2893,7 @@
}, },
"notification-url": "https://packagist.org/downloads/", "notification-url": "https://packagist.org/downloads/",
"license": [ "license": [
"BSD-3-Clause-Attribution" "BSD-3-Clause"
], ],
"authors": [ "authors": [
{ {
...@@ -2708,90 +2908,22 @@ ...@@ -2708,90 +2908,22 @@
"env", "env",
"environment" "environment"
], ],
"time": "2016-09-01T10:05:43+00:00" "time": "2019-01-29T11:11:52+00:00"
} }
], ],
"packages-dev": [ "packages-dev": [
{
"name": "doctrine/annotations",
"version": "v1.6.0",
"source": {
"type": "git",
"url": "https://github.com/doctrine/annotations.git",
"reference": "c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/doctrine/annotations/zipball/c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5",
"reference": "c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5",
"shasum": ""
},
"require": {
"doctrine/lexer": "1.*",
"php": "^7.1"
},
"require-dev": {
"doctrine/cache": "1.*",
"phpunit/phpunit": "^6.4"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.6.x-dev"
}
},
"autoload": {
"psr-4": {
"Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Roman Borschel",
"email": "roman@code-factory.org"
},
{
"name": "Benjamin Eberlei",
"email": "kontakt@beberlei.de"
},
{
"name": "Guilherme Blanco",
"email": "guilhermeblanco@gmail.com"
},
{
"name": "Jonathan Wage",
"email": "jonwage@gmail.com"
},
{
"name": "Johannes Schmitt",
"email": "schmittjoh@gmail.com"
}
],
"description": "Docblock Annotations Parser",
"homepage": "http://www.doctrine-project.org",
"keywords": [
"annotations",
"docblock",
"parser"
],
"time": "2017-12-06T07:11:42+00:00"
},
{ {
"name": "doctrine/cache", "name": "doctrine/cache",
"version": "v1.7.1", "version": "v1.8.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/doctrine/cache.git", "url": "https://github.com/doctrine/cache.git",
"reference": "b3217d58609e9c8e661cd41357a54d926c4a2a1a" "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/doctrine/cache/zipball/b3217d58609e9c8e661cd41357a54d926c4a2a1a", "url": "https://api.github.com/repos/doctrine/cache/zipball/d768d58baee9a4862ca783840eca1b9add7a7f57",
"reference": "b3217d58609e9c8e661cd41357a54d926c4a2a1a", "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -2802,8 +2934,9 @@ ...@@ -2802,8 +2934,9 @@
}, },
"require-dev": { "require-dev": {
"alcaeus/mongo-php-adapter": "^1.1", "alcaeus/mongo-php-adapter": "^1.1",
"doctrine/coding-standard": "^4.0",
"mongodb/mongodb": "^1.1", "mongodb/mongodb": "^1.1",
"phpunit/phpunit": "^5.7", "phpunit/phpunit": "^7.0",
"predis/predis": "~1.0" "predis/predis": "~1.0"
}, },
"suggest": { "suggest": {
...@@ -2812,7 +2945,7 @@ ...@@ -2812,7 +2945,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "1.7.x-dev" "dev-master": "1.8.x-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -2847,43 +2980,57 @@ ...@@ -2847,43 +2980,57 @@
} }
], ],
"description": "Caching library offering an object-oriented API for many cache backends", "description": "Caching library offering an object-oriented API for many cache backends",
"homepage": "http://www.doctrine-project.org", "homepage": "https://www.doctrine-project.org",
"keywords": [ "keywords": [
"cache", "cache",
"caching" "caching"
], ],
"time": "2017-08-25T07:02:50+00:00" "time": "2018-08-21T18:01:43+00:00"
}, },
{ {
"name": "doctrine/collections", "name": "doctrine/dbal",
"version": "v1.5.0", "version": "v2.9.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/doctrine/collections.git", "url": "https://github.com/doctrine/dbal.git",
"reference": "a01ee38fcd999f34d9bfbcee59dbda5105449cbf" "reference": "22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/doctrine/collections/zipball/a01ee38fcd999f34d9bfbcee59dbda5105449cbf", "url": "https://api.github.com/repos/doctrine/dbal/zipball/22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9",
"reference": "a01ee38fcd999f34d9bfbcee59dbda5105449cbf", "reference": "22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"doctrine/cache": "^1.0",
"doctrine/event-manager": "^1.0",
"ext-pdo": "*",
"php": "^7.1" "php": "^7.1"
}, },
"require-dev": { "require-dev": {
"doctrine/coding-standard": "~0.1@dev", "doctrine/coding-standard": "^5.0",
"phpunit/phpunit": "^5.7" "jetbrains/phpstorm-stubs": "^2018.1.2",
"phpstan/phpstan": "^0.10.1",
"phpunit/phpunit": "^7.4",
"symfony/console": "^2.0.5|^3.0|^4.0",
"symfony/phpunit-bridge": "^3.4.5|^4.0.5"
}, },
"suggest": {
"symfony/console": "For helpful console commands such as SQL execution and import of files."
},
"bin": [
"bin/doctrine-dbal"
],
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "1.3.x-dev" "dev-master": "2.9.x-dev",
"dev-develop": "3.0.x-dev"
} }
}, },
"autoload": { "autoload": {
"psr-0": { "psr-4": {
"Doctrine\\Common\\Collections\\": "lib/" "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
} }
}, },
"notification-url": "https://packagist.org/downloads/", "notification-url": "https://packagist.org/downloads/",
...@@ -2906,50 +3053,50 @@ ...@@ -2906,50 +3053,50 @@
{ {
"name": "Jonathan Wage", "name": "Jonathan Wage",
"email": "jonwage@gmail.com" "email": "jonwage@gmail.com"
},
{
"name": "Johannes Schmitt",
"email": "schmittjoh@gmail.com"
} }
], ],
"description": "Collections Abstraction library", "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
"homepage": "http://www.doctrine-project.org", "homepage": "https://www.doctrine-project.org/projects/dbal.html",
"keywords": [ "keywords": [
"array", "abstraction",
"collections", "database",
"iterator" "dbal",
"mysql",
"persistence",
"pgsql",
"php",
"queryobject"
], ],
"time": "2017-07-22T10:37:32+00:00" "time": "2018-12-31T03:27:51+00:00"
}, },
{ {
"name": "doctrine/common", "name": "doctrine/event-manager",
"version": "v2.8.1", "version": "v1.0.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/doctrine/common.git", "url": "https://github.com/doctrine/event-manager.git",
"reference": "f68c297ce6455e8fd794aa8ffaf9fa458f6ade66" "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/doctrine/common/zipball/f68c297ce6455e8fd794aa8ffaf9fa458f6ade66", "url": "https://api.github.com/repos/doctrine/event-manager/zipball/a520bc093a0170feeb6b14e9d83f3a14452e64b3",
"reference": "f68c297ce6455e8fd794aa8ffaf9fa458f6ade66", "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"doctrine/annotations": "1.*", "php": "^7.1"
"doctrine/cache": "1.*", },
"doctrine/collections": "1.*", "conflict": {
"doctrine/inflector": "1.*", "doctrine/common": "<2.9@dev"
"doctrine/lexer": "1.*",
"php": "~7.1"
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "^5.7" "doctrine/coding-standard": "^4.0",
"phpunit/phpunit": "^7.0"
}, },
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "2.8.x-dev" "dev-master": "1.0.x-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -2981,93 +3128,20 @@ ...@@ -2981,93 +3128,20 @@
{ {
"name": "Johannes Schmitt", "name": "Johannes Schmitt",
"email": "schmittjoh@gmail.com" "email": "schmittjoh@gmail.com"
}
],
"description": "Common Library for Doctrine projects",
"homepage": "http://www.doctrine-project.org",
"keywords": [
"annotations",
"collections",
"eventmanager",
"persistence",
"spl"
],
"time": "2017-08-31T08:43:38+00:00"
},
{
"name": "doctrine/dbal",
"version": "v2.7.1",
"source": {
"type": "git",
"url": "https://github.com/doctrine/dbal.git",
"reference": "11037b4352c008373561dc6fc836834eed80c3b5"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/doctrine/dbal/zipball/11037b4352c008373561dc6fc836834eed80c3b5",
"reference": "11037b4352c008373561dc6fc836834eed80c3b5",
"shasum": ""
},
"require": {
"doctrine/common": "^2.7.1",
"ext-pdo": "*",
"php": "^7.1"
},
"require-dev": {
"doctrine/coding-standard": "^4.0",
"phpunit/phpunit": "^7.0",
"phpunit/phpunit-mock-objects": "!=3.2.4,!=3.2.5",
"symfony/console": "^2.0.5||^3.0",
"symfony/phpunit-bridge": "^3.4.5|^4.0.5"
},
"suggest": {
"symfony/console": "For helpful console commands such as SQL execution and import of files."
},
"bin": [
"bin/doctrine-dbal"
],
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "2.7.x-dev"
}
},
"autoload": {
"psr-0": {
"Doctrine\\DBAL\\": "lib/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Roman Borschel",
"email": "roman@code-factory.org"
},
{
"name": "Benjamin Eberlei",
"email": "kontakt@beberlei.de"
}, },
{ {
"name": "Guilherme Blanco", "name": "Marco Pivetta",
"email": "guilhermeblanco@gmail.com" "email": "ocramius@gmail.com"
},
{
"name": "Jonathan Wage",
"email": "jonwage@gmail.com"
} }
], ],
"description": "Database Abstraction Layer", "description": "Doctrine Event Manager component",
"homepage": "http://www.doctrine-project.org", "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
"keywords": [ "keywords": [
"database", "event",
"dbal", "eventdispatcher",
"persistence", "eventmanager"
"queryobject"
], ],
"time": "2018-04-07T18:44:18+00:00" "time": "2018-06-11T11:59:03+00:00"
}, },
{ {
"name": "doctrine/instantiator", "name": "doctrine/instantiator",
...@@ -3125,16 +3199,16 @@ ...@@ -3125,16 +3199,16 @@
}, },
{ {
"name": "filp/whoops", "name": "filp/whoops",
"version": "2.1.14", "version": "2.3.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/filp/whoops.git", "url": "https://github.com/filp/whoops.git",
"reference": "c6081b8838686aa04f1e83ba7e91f78b7b2a23e6" "reference": "bc0fd11bc455cc20ee4b5edabc63ebbf859324c7"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/filp/whoops/zipball/c6081b8838686aa04f1e83ba7e91f78b7b2a23e6", "url": "https://api.github.com/repos/filp/whoops/zipball/bc0fd11bc455cc20ee4b5edabc63ebbf859324c7",
"reference": "c6081b8838686aa04f1e83ba7e91f78b7b2a23e6", "reference": "bc0fd11bc455cc20ee4b5edabc63ebbf859324c7",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -3142,9 +3216,9 @@ ...@@ -3142,9 +3216,9 @@
"psr/log": "^1.0.1" "psr/log": "^1.0.1"
}, },
"require-dev": { "require-dev": {
"mockery/mockery": "0.9.*", "mockery/mockery": "^0.9 || ^1.0",
"phpunit/phpunit": "^4.8.35 || ^5.7", "phpunit/phpunit": "^4.8.35 || ^5.7",
"symfony/var-dumper": "^2.6 || ^3.0" "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0"
}, },
"suggest": { "suggest": {
"symfony/var-dumper": "Pretty print complex values better with var-dumper available", "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
...@@ -3153,7 +3227,7 @@ ...@@ -3153,7 +3227,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "2.0-dev" "dev-master": "2.2-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -3182,20 +3256,20 @@ ...@@ -3182,20 +3256,20 @@
"throwable", "throwable",
"whoops" "whoops"
], ],
"time": "2017-11-23T18:22:44+00:00" "time": "2018-10-23T09:00:00+00:00"
}, },
{ {
"name": "fzaninotto/faker", "name": "fzaninotto/faker",
"version": "v1.7.1", "version": "v1.8.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/fzaninotto/Faker.git", "url": "https://github.com/fzaninotto/Faker.git",
"reference": "d3ed4cc37051c1ca52d22d76b437d14809fc7e0d" "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/fzaninotto/Faker/zipball/d3ed4cc37051c1ca52d22d76b437d14809fc7e0d", "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/f72816b43e74063c8b10357394b6bba8cb1c10de",
"reference": "d3ed4cc37051c1ca52d22d76b437d14809fc7e0d", "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -3203,7 +3277,7 @@ ...@@ -3203,7 +3277,7 @@
}, },
"require-dev": { "require-dev": {
"ext-intl": "*", "ext-intl": "*",
"phpunit/phpunit": "^4.0 || ^5.0", "phpunit/phpunit": "^4.8.35 || ^5.7",
"squizlabs/php_codesniffer": "^1.5" "squizlabs/php_codesniffer": "^1.5"
}, },
"type": "library", "type": "library",
...@@ -3232,7 +3306,7 @@ ...@@ -3232,7 +3306,7 @@
"faker", "faker",
"fixtures" "fixtures"
], ],
"time": "2017-08-15T16:48:10+00:00" "time": "2018-07-12T10:23:15+00:00"
}, },
{ {
"name": "hamcrest/hamcrest-php", "name": "hamcrest/hamcrest-php",
...@@ -3311,24 +3385,32 @@ ...@@ -3311,24 +3385,32 @@
}, },
{ {
"name": "krlove/eloquent-model-generator", "name": "krlove/eloquent-model-generator",
"version": "1.2.6", "version": "1.3.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/krlove/eloquent-model-generator.git", "url": "https://github.com/krlove/eloquent-model-generator.git",
"reference": "257724b1b7b620288f2ee78508d3cdb7e72eb097" "reference": "9bc5aca900ca6d68980a2abc1e708aa162b5c29a"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/krlove/eloquent-model-generator/zipball/257724b1b7b620288f2ee78508d3cdb7e72eb097", "url": "https://api.github.com/repos/krlove/eloquent-model-generator/zipball/9bc5aca900ca6d68980a2abc1e708aa162b5c29a",
"reference": "257724b1b7b620288f2ee78508d3cdb7e72eb097", "reference": "9bc5aca900ca6d68980a2abc1e708aa162b5c29a",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"doctrine/dbal": "^2.5", "doctrine/dbal": "^2.5",
"krlove/code-generator": "^1.0", "illuminate/database": "^5.0",
"laravel/framework": "^5.0" "illuminate/support": "^5.0",
"krlove/code-generator": "^1.0"
}, },
"type": "library", "type": "library",
"extra": {
"laravel": {
"providers": [
"Krlove\\EloquentModelGenerator\\Provider\\GeneratorServiceProvider"
]
}
},
"autoload": { "autoload": {
"psr-4": { "psr-4": {
"Krlove\\EloquentModelGenerator\\": "src/" "Krlove\\EloquentModelGenerator\\": "src/"
...@@ -3339,20 +3421,20 @@ ...@@ -3339,20 +3421,20 @@
"MIT" "MIT"
], ],
"description": "Eloquent Model Generator", "description": "Eloquent Model Generator",
"time": "2017-10-08T17:12:40+00:00" "time": "2018-07-28T10:35:03+00:00"
}, },
{ {
"name": "mockery/mockery", "name": "mockery/mockery",
"version": "1.0", "version": "1.2.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/mockery/mockery.git", "url": "https://github.com/mockery/mockery.git",
"reference": "1bac8c362b12f522fdd1f1fa3556284c91affa38" "reference": "dc4f10b6b1148744facb784015e4b339d7feec23"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/mockery/mockery/zipball/1bac8c362b12f522fdd1f1fa3556284c91affa38", "url": "https://api.github.com/repos/mockery/mockery/zipball/dc4f10b6b1148744facb784015e4b339d7feec23",
"reference": "1bac8c362b12f522fdd1f1fa3556284c91affa38", "reference": "dc4f10b6b1148744facb784015e4b339d7feec23",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -3361,7 +3443,7 @@ ...@@ -3361,7 +3443,7 @@
"php": ">=5.6.0" "php": ">=5.6.0"
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "~5.7|~6.1" "phpunit/phpunit": "~5.7.10|~6.5|~7.0|~8.0"
}, },
"type": "library", "type": "library",
"extra": { "extra": {
...@@ -3390,8 +3472,8 @@ ...@@ -3390,8 +3472,8 @@
"homepage": "http://davedevelopment.co.uk" "homepage": "http://davedevelopment.co.uk"
} }
], ],
"description": "Mockery is a simple yet flexible PHP mock object framework for use in unit testing with PHPUnit, PHPSpec or any other testing framework. Its core goal is to offer a test double framework with a succinct API capable of clearly defining all possible object operations and interactions using a human readable Domain Specific Language (DSL). Designed as a drop in alternative to PHPUnit's phpunit-mock-objects library, Mockery is easy to integrate with PHPUnit and can operate alongside phpunit-mock-objects without the World ending.", "description": "Mockery is a simple yet flexible PHP mock object framework",
"homepage": "http://github.com/mockery/mockery", "homepage": "https://github.com/mockery/mockery",
"keywords": [ "keywords": [
"BDD", "BDD",
"TDD", "TDD",
...@@ -3404,29 +3486,32 @@ ...@@ -3404,29 +3486,32 @@
"test double", "test double",
"testing" "testing"
], ],
"time": "2017-10-06T16:20:43+00:00" "time": "2019-02-08T14:43:54+00:00"
}, },
{ {
"name": "myclabs/deep-copy", "name": "myclabs/deep-copy",
"version": "1.7.0", "version": "1.8.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/myclabs/DeepCopy.git", "url": "https://github.com/myclabs/DeepCopy.git",
"reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e" "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e", "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
"reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e", "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": "^5.6 || ^7.0" "php": "^7.1"
},
"replace": {
"myclabs/deep-copy": "self.version"
}, },
"require-dev": { "require-dev": {
"doctrine/collections": "^1.0", "doctrine/collections": "^1.0",
"doctrine/common": "^2.6", "doctrine/common": "^2.6",
"phpunit/phpunit": "^4.1" "phpunit/phpunit": "^7.1"
}, },
"type": "library", "type": "library",
"autoload": { "autoload": {
...@@ -3449,31 +3534,33 @@ ...@@ -3449,31 +3534,33 @@
"object", "object",
"object graph" "object graph"
], ],
"time": "2017-10-19T19:58:43+00:00" "time": "2018-06-11T23:09:50+00:00"
}, },
{ {
"name": "nunomaduro/collision", "name": "nunomaduro/collision",
"version": "v2.0.2", "version": "v2.1.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/nunomaduro/collision.git", "url": "https://github.com/nunomaduro/collision.git",
"reference": "245958b02c6a9edf24627380f368333ac5413a51" "reference": "b5feb0c0d92978ec7169232ce5d70d6da6b29f63"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/nunomaduro/collision/zipball/245958b02c6a9edf24627380f368333ac5413a51", "url": "https://api.github.com/repos/nunomaduro/collision/zipball/b5feb0c0d92978ec7169232ce5d70d6da6b29f63",
"reference": "245958b02c6a9edf24627380f368333ac5413a51", "reference": "b5feb0c0d92978ec7169232ce5d70d6da6b29f63",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"filp/whoops": "^2.1.4", "filp/whoops": "^2.1.4",
"jakub-onderka/php-console-highlighter": "0.3.*", "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
"php": "^7.1", "php": "^7.1",
"symfony/console": "~2.8|~3.3|~4.0" "symfony/console": "~2.8|~3.3|~4.0"
}, },
"require-dev": { "require-dev": {
"laravel/framework": "5.6.*", "laravel/framework": "5.7.*",
"phpunit/phpunit": "~7.0" "nunomaduro/larastan": "^0.3.0",
"phpstan/phpstan": "^0.10",
"phpunit/phpunit": "~7.3"
}, },
"type": "library", "type": "library",
"extra": { "extra": {
...@@ -3511,26 +3598,26 @@ ...@@ -3511,26 +3598,26 @@
"php", "php",
"symfony" "symfony"
], ],
"time": "2018-03-21T20:11:24+00:00" "time": "2018-11-21T21:40:54+00:00"
}, },
{ {
"name": "phar-io/manifest", "name": "phar-io/manifest",
"version": "1.0.1", "version": "1.0.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/phar-io/manifest.git", "url": "https://github.com/phar-io/manifest.git",
"reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0" "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0", "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
"reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0", "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"ext-dom": "*", "ext-dom": "*",
"ext-phar": "*", "ext-phar": "*",
"phar-io/version": "^1.0.1", "phar-io/version": "^2.0",
"php": "^5.6 || ^7.0" "php": "^5.6 || ^7.0"
}, },
"type": "library", "type": "library",
...@@ -3566,20 +3653,20 @@ ...@@ -3566,20 +3653,20 @@
} }
], ],
"description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
"time": "2017-03-05T18:14:27+00:00" "time": "2018-07-08T19:23:20+00:00"
}, },
{ {
"name": "phar-io/version", "name": "phar-io/version",
"version": "1.0.1", "version": "2.0.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/phar-io/version.git", "url": "https://github.com/phar-io/version.git",
"reference": "a70c0ced4be299a63d32fa96d9281d03e94041df" "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df", "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
"reference": "a70c0ced4be299a63d32fa96d9281d03e94041df", "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -3613,7 +3700,7 @@ ...@@ -3613,7 +3700,7 @@
} }
], ],
"description": "Library for handling version information and constraints", "description": "Library for handling version information and constraints",
"time": "2017-03-05T17:38:23+00:00" "time": "2018-07-08T19:19:57+00:00"
}, },
{ {
"name": "phpdocumentor/reflection-common", "name": "phpdocumentor/reflection-common",
...@@ -3769,16 +3856,16 @@ ...@@ -3769,16 +3856,16 @@
}, },
{ {
"name": "phpspec/prophecy", "name": "phpspec/prophecy",
"version": "1.7.6", "version": "1.8.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/phpspec/prophecy.git", "url": "https://github.com/phpspec/prophecy.git",
"reference": "33a7e3c4fda54e912ff6338c48823bd5c0f0b712" "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/phpspec/prophecy/zipball/33a7e3c4fda54e912ff6338c48823bd5c0f0b712", "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
"reference": "33a7e3c4fda54e912ff6338c48823bd5c0f0b712", "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -3790,12 +3877,12 @@ ...@@ -3790,12 +3877,12 @@
}, },
"require-dev": { "require-dev": {
"phpspec/phpspec": "^2.5|^3.2", "phpspec/phpspec": "^2.5|^3.2",
"phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5" "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
}, },
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "1.7.x-dev" "dev-master": "1.8.x-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -3828,31 +3915,31 @@ ...@@ -3828,31 +3915,31 @@
"spy", "spy",
"stub" "stub"
], ],
"time": "2018-04-18T13:57:24+00:00" "time": "2018-08-05T17:53:17+00:00"
}, },
{ {
"name": "phpunit/php-code-coverage", "name": "phpunit/php-code-coverage",
"version": "6.0.3", "version": "6.1.4",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/sebastianbergmann/php-code-coverage.git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
"reference": "774a82c0c5da4c1c7701790c262035d235ab7856" "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/774a82c0c5da4c1c7701790c262035d235ab7856", "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
"reference": "774a82c0c5da4c1c7701790c262035d235ab7856", "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"ext-dom": "*", "ext-dom": "*",
"ext-xmlwriter": "*", "ext-xmlwriter": "*",
"php": "^7.1", "php": "^7.1",
"phpunit/php-file-iterator": "^1.4.2", "phpunit/php-file-iterator": "^2.0",
"phpunit/php-text-template": "^1.2.1", "phpunit/php-text-template": "^1.2.1",
"phpunit/php-token-stream": "^3.0", "phpunit/php-token-stream": "^3.0",
"sebastian/code-unit-reverse-lookup": "^1.0.1", "sebastian/code-unit-reverse-lookup": "^1.0.1",
"sebastian/environment": "^3.1", "sebastian/environment": "^3.1 || ^4.0",
"sebastian/version": "^2.0.1", "sebastian/version": "^2.0.1",
"theseer/tokenizer": "^1.1" "theseer/tokenizer": "^1.1"
}, },
...@@ -3865,7 +3952,7 @@ ...@@ -3865,7 +3952,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "6.0-dev" "dev-master": "6.1-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -3891,29 +3978,32 @@ ...@@ -3891,29 +3978,32 @@
"testing", "testing",
"xunit" "xunit"
], ],
"time": "2018-04-06T15:39:20+00:00" "time": "2018-10-31T16:06:48+00:00"
}, },
{ {
"name": "phpunit/php-file-iterator", "name": "phpunit/php-file-iterator",
"version": "1.4.5", "version": "2.0.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/sebastianbergmann/php-file-iterator.git", "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
"reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4" "reference": "050bedf145a257b1ff02746c31894800e5122946"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4", "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
"reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4", "reference": "050bedf145a257b1ff02746c31894800e5122946",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": ">=5.3.3" "php": "^7.1"
},
"require-dev": {
"phpunit/phpunit": "^7.1"
}, },
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "1.4.x-dev" "dev-master": "2.0.x-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -3928,7 +4018,7 @@ ...@@ -3928,7 +4018,7 @@
"authors": [ "authors": [
{ {
"name": "Sebastian Bergmann", "name": "Sebastian Bergmann",
"email": "sb@sebastian-bergmann.de", "email": "sebastian@phpunit.de",
"role": "lead" "role": "lead"
} }
], ],
...@@ -3938,7 +4028,7 @@ ...@@ -3938,7 +4028,7 @@
"filesystem", "filesystem",
"iterator" "iterator"
], ],
"time": "2017-11-27T13:52:08+00:00" "time": "2018-09-13T20:33:42+00:00"
}, },
{ {
"name": "phpunit/php-text-template", "name": "phpunit/php-text-template",
...@@ -4032,16 +4122,16 @@ ...@@ -4032,16 +4122,16 @@
}, },
{ {
"name": "phpunit/php-token-stream", "name": "phpunit/php-token-stream",
"version": "3.0.0", "version": "3.0.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/sebastianbergmann/php-token-stream.git", "url": "https://github.com/sebastianbergmann/php-token-stream.git",
"reference": "21ad88bbba7c3d93530d93994e0a33cd45f02ace" "reference": "c99e3be9d3e85f60646f152f9002d46ed7770d18"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/21ad88bbba7c3d93530d93994e0a33cd45f02ace", "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/c99e3be9d3e85f60646f152f9002d46ed7770d18",
"reference": "21ad88bbba7c3d93530d93994e0a33cd45f02ace", "reference": "c99e3be9d3e85f60646f152f9002d46ed7770d18",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -4077,51 +4167,55 @@ ...@@ -4077,51 +4167,55 @@
"keywords": [ "keywords": [
"tokenizer" "tokenizer"
], ],
"time": "2018-02-01T13:16:43+00:00" "time": "2018-10-30T05:52:18+00:00"
}, },
{ {
"name": "phpunit/phpunit", "name": "phpunit/phpunit",
"version": "7.1.4", "version": "7.5.4",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/sebastianbergmann/phpunit.git", "url": "https://github.com/sebastianbergmann/phpunit.git",
"reference": "6d51299e307dc510149e0b7cd1931dd11770e1cb" "reference": "2896657da5fb237bc316bdfc18c2650efeee0dc0"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/6d51299e307dc510149e0b7cd1931dd11770e1cb", "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/2896657da5fb237bc316bdfc18c2650efeee0dc0",
"reference": "6d51299e307dc510149e0b7cd1931dd11770e1cb", "reference": "2896657da5fb237bc316bdfc18c2650efeee0dc0",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"doctrine/instantiator": "^1.1",
"ext-dom": "*", "ext-dom": "*",
"ext-json": "*", "ext-json": "*",
"ext-libxml": "*", "ext-libxml": "*",
"ext-mbstring": "*", "ext-mbstring": "*",
"ext-xml": "*", "ext-xml": "*",
"myclabs/deep-copy": "^1.6.1", "myclabs/deep-copy": "^1.7",
"phar-io/manifest": "^1.0.1", "phar-io/manifest": "^1.0.2",
"phar-io/version": "^1.0", "phar-io/version": "^2.0",
"php": "^7.1", "php": "^7.1",
"phpspec/prophecy": "^1.7", "phpspec/prophecy": "^1.7",
"phpunit/php-code-coverage": "^6.0.1", "phpunit/php-code-coverage": "^6.0.7",
"phpunit/php-file-iterator": "^1.4.3", "phpunit/php-file-iterator": "^2.0.1",
"phpunit/php-text-template": "^1.2.1", "phpunit/php-text-template": "^1.2.1",
"phpunit/php-timer": "^2.0", "phpunit/php-timer": "^2.0",
"phpunit/phpunit-mock-objects": "^6.1.1", "sebastian/comparator": "^3.0",
"sebastian/comparator": "^2.1 || ^3.0",
"sebastian/diff": "^3.0", "sebastian/diff": "^3.0",
"sebastian/environment": "^3.1", "sebastian/environment": "^4.0",
"sebastian/exporter": "^3.1", "sebastian/exporter": "^3.1",
"sebastian/global-state": "^2.0", "sebastian/global-state": "^2.0",
"sebastian/object-enumerator": "^3.0.3", "sebastian/object-enumerator": "^3.0.3",
"sebastian/resource-operations": "^1.0", "sebastian/resource-operations": "^2.0",
"sebastian/version": "^2.0.1" "sebastian/version": "^2.0.1"
}, },
"conflict": {
"phpunit/phpunit-mock-objects": "*"
},
"require-dev": { "require-dev": {
"ext-pdo": "*" "ext-pdo": "*"
}, },
"suggest": { "suggest": {
"ext-soap": "*",
"ext-xdebug": "*", "ext-xdebug": "*",
"phpunit/php-invoker": "^2.0" "phpunit/php-invoker": "^2.0"
}, },
...@@ -4131,7 +4225,7 @@ ...@@ -4131,7 +4225,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "7.1-dev" "dev-master": "7.5-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -4157,63 +4251,7 @@ ...@@ -4157,63 +4251,7 @@
"testing", "testing",
"xunit" "xunit"
], ],
"time": "2018-04-18T13:41:53+00:00" "time": "2019-02-07T14:15:04+00:00"
},
{
"name": "phpunit/phpunit-mock-objects",
"version": "6.1.1",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
"reference": "70c740bde8fd9ea9ea295be1cd875dd7b267e157"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/70c740bde8fd9ea9ea295be1cd875dd7b267e157",
"reference": "70c740bde8fd9ea9ea295be1cd875dd7b267e157",
"shasum": ""
},
"require": {
"doctrine/instantiator": "^1.0.5",
"php": "^7.1",
"phpunit/php-text-template": "^1.2.1",
"sebastian/exporter": "^3.1"
},
"require-dev": {
"phpunit/phpunit": "^7.0"
},
"suggest": {
"ext-soap": "*"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "6.1-dev"
}
},
"autoload": {
"classmap": [
"src/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Sebastian Bergmann",
"email": "sebastian@phpunit.de",
"role": "lead"
}
],
"description": "Mock Object library for PHPUnit",
"homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
"keywords": [
"mock",
"xunit"
],
"time": "2018-04-11T04:50:36+00:00"
}, },
{ {
"name": "sebastian/code-unit-reverse-lookup", "name": "sebastian/code-unit-reverse-lookup",
...@@ -4262,16 +4300,16 @@ ...@@ -4262,16 +4300,16 @@
}, },
{ {
"name": "sebastian/comparator", "name": "sebastian/comparator",
"version": "3.0.0", "version": "3.0.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/sebastianbergmann/comparator.git", "url": "https://github.com/sebastianbergmann/comparator.git",
"reference": "ed5fd2281113729f1ebcc64d101ad66028aeb3d5" "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/ed5fd2281113729f1ebcc64d101ad66028aeb3d5", "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
"reference": "ed5fd2281113729f1ebcc64d101ad66028aeb3d5", "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -4322,27 +4360,27 @@ ...@@ -4322,27 +4360,27 @@
"compare", "compare",
"equality" "equality"
], ],
"time": "2018-04-18T13:33:00+00:00" "time": "2018-07-12T15:12:46+00:00"
}, },
{ {
"name": "sebastian/diff", "name": "sebastian/diff",
"version": "3.0.0", "version": "3.0.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/sebastianbergmann/diff.git", "url": "https://github.com/sebastianbergmann/diff.git",
"reference": "e09160918c66281713f1c324c1f4c4c3037ba1e8" "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/e09160918c66281713f1c324c1f4c4c3037ba1e8", "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
"reference": "e09160918c66281713f1c324c1f4c4c3037ba1e8", "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": "^7.1" "php": "^7.1"
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "^7.0", "phpunit/phpunit": "^7.5 || ^8.0",
"symfony/process": "^2 || ^3.3 || ^4" "symfony/process": "^2 || ^3.3 || ^4"
}, },
"type": "library", "type": "library",
...@@ -4378,32 +4416,35 @@ ...@@ -4378,32 +4416,35 @@
"unidiff", "unidiff",
"unified diff" "unified diff"
], ],
"time": "2018-02-01T13:45:15+00:00" "time": "2019-02-04T06:01:07+00:00"
}, },
{ {
"name": "sebastian/environment", "name": "sebastian/environment",
"version": "3.1.0", "version": "4.1.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/sebastianbergmann/environment.git", "url": "https://github.com/sebastianbergmann/environment.git",
"reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5" "reference": "6fda8ce1974b62b14935adc02a9ed38252eca656"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5", "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/6fda8ce1974b62b14935adc02a9ed38252eca656",
"reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5", "reference": "6fda8ce1974b62b14935adc02a9ed38252eca656",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": "^7.0" "php": "^7.1"
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "^6.1" "phpunit/phpunit": "^7.5"
},
"suggest": {
"ext-posix": "*"
}, },
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "3.1.x-dev" "dev-master": "4.1-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -4428,7 +4469,7 @@ ...@@ -4428,7 +4469,7 @@
"environment", "environment",
"hhvm" "hhvm"
], ],
"time": "2017-07-01T08:51:00+00:00" "time": "2019-02-01T05:27:49+00:00"
}, },
{ {
"name": "sebastian/exporter", "name": "sebastian/exporter",
...@@ -4695,25 +4736,25 @@ ...@@ -4695,25 +4736,25 @@
}, },
{ {
"name": "sebastian/resource-operations", "name": "sebastian/resource-operations",
"version": "1.0.0", "version": "2.0.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/sebastianbergmann/resource-operations.git", "url": "https://github.com/sebastianbergmann/resource-operations.git",
"reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52" "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52", "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
"reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52", "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": ">=5.6.0" "php": "^7.1"
}, },
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "1.0.x-dev" "dev-master": "2.0-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -4733,7 +4774,7 @@ ...@@ -4733,7 +4774,7 @@
], ],
"description": "Provides a list of PHP built-in functions that operate on resources", "description": "Provides a list of PHP built-in functions that operate on resources",
"homepage": "https://www.github.com/sebastianbergmann/resource-operations", "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
"time": "2015-07-28T20:34:47+00:00" "time": "2018-10-04T04:07:39+00:00"
}, },
{ {
"name": "sebastian/version", "name": "sebastian/version",
...@@ -4820,20 +4861,21 @@ ...@@ -4820,20 +4861,21 @@
}, },
{ {
"name": "webmozart/assert", "name": "webmozart/assert",
"version": "1.3.0", "version": "1.4.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/webmozart/assert.git", "url": "https://github.com/webmozart/assert.git",
"reference": "0df1908962e7a3071564e857d86874dad1ef204a" "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a", "url": "https://api.github.com/repos/webmozart/assert/zipball/83e253c8e0be5b0257b881e1827274667c5c17a9",
"reference": "0df1908962e7a3071564e857d86874dad1ef204a", "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": "^5.3.3 || ^7.0" "php": "^5.3.3 || ^7.0",
"symfony/polyfill-ctype": "^1.8"
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "^4.6", "phpunit/phpunit": "^4.6",
...@@ -4866,7 +4908,7 @@ ...@@ -4866,7 +4908,7 @@
"check", "check",
"validate" "validate"
], ],
"time": "2018-01-29T19:49:41+00:00" "time": "2018-12-25T11:19:39+00:00"
} }
], ],
"aliases": [], "aliases": [],
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -12323,7 +12323,7 @@ a.text-dark:focus { ...@@ -12323,7 +12323,7 @@ a.text-dark:focus {
} }
.navbar-laravel { .navbar-laravel {
background-color: #fff; background-color: #003366;
-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04); -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04); box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
} }
......
...@@ -66861,7 +66861,7 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true }); ...@@ -66861,7 +66861,7 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
   
this.disableTambahDataButton = payload.name === "dataPegawai"; this.disableTambahDataButton = payload.name === "dataPegawai";
this.disableUploadDataButton = payload.name === "dataPegawai" || payload.name === "dataTraining"; this.disableUploadDataButton = payload.name === "dataPegawai" || payload.name === "dataTraining";
this.disableDownloadDataButton = payload.name === "dataTraining"; this.disableDownloadDataButton = payload.name === "dataPegawai" || payload.name === "dataTraining";
}, },
saveData: function saveData(payload) { saveData: function saveData(payload) {
var _this = this; var _this = this;
...@@ -67281,7 +67281,7 @@ var render = function() { ...@@ -67281,7 +67281,7 @@ var render = function() {
var _c = _vm._self._c || _h var _c = _vm._self._c || _h
return _c( return _c(
"nav", "nav",
{ staticClass: "navbar navbar-expand-md bg-primary navbar-dark" }, { staticClass: "navbar navbar-expand-md navbar-dark navbar-laravel" },
[ [
_c( _c(
"a", "a",
...@@ -67375,7 +67375,7 @@ var staticRenderFns = [ ...@@ -67375,7 +67375,7 @@ var staticRenderFns = [
_c( _c(
"a", "a",
{ {
staticClass: "btn navbar-btn btn-primary ml-2 text-white", staticClass: "btn navbar-btn btn-secondary ml-2 text-white",
attrs: { href: "/pages" } attrs: { href: "/pages" }
}, },
[_vm._v("\n Kembali\n ")] [_vm._v("\n Kembali\n ")]
...@@ -67925,7 +67925,7 @@ var render = function() { ...@@ -67925,7 +67925,7 @@ var render = function() {
? _c( ? _c(
"button", "button",
{ {
staticClass: "btn btn-secondary m-1", staticClass: "btn btn-primary m-1",
attrs: { attrs: {
type: "button", type: "button",
"data-toggle": "modal", "data-toggle": "modal",
...@@ -67950,7 +67950,7 @@ var render = function() { ...@@ -67950,7 +67950,7 @@ var render = function() {
? _c( ? _c(
"button", "button",
{ {
staticClass: "btn btn-primary float-md-right m-1", staticClass: "btn btn-success float-md-right m-1",
attrs: { type: "button" }, attrs: { type: "button" },
on: { click: _vm.downloadData } on: { click: _vm.downloadData }
}, },
...@@ -67966,7 +67966,7 @@ var render = function() { ...@@ -67966,7 +67966,7 @@ var render = function() {
? _c( ? _c(
"button", "button",
{ {
staticClass: "btn btn-secondary float-md-right m-1", staticClass: "btn btn-primary float-md-right m-1",
attrs: { attrs: {
type: "button", type: "button",
"data-toggle": "modal", "data-toggle": "modal",
...@@ -68570,7 +68570,7 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true }); ...@@ -68570,7 +68570,7 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
/* 237 */ /* 237 */
/***/ (function(module, exports) { /***/ (function(module, exports) {
   
module.exports = [{"label":"Nama Lengkap","field":"name"},{"label":"Email","field":"email"}] module.exports = [{"label":"NIP","field":"nip"},{"label":"Nama Lengkap","field":"name"},{"label":"Email","field":"email"},{"label":"Pendidikan","field":"pendidikan_terakhir"}]
   
/***/ }), /***/ }),
/* 238 */ /* 238 */
...@@ -68703,7 +68703,7 @@ var render = function() { ...@@ -68703,7 +68703,7 @@ var render = function() {
var _c = _vm._self._c || _h var _c = _vm._self._c || _h
return _c( return _c(
"nav", "nav",
{ staticClass: "navbar navbar-expand-md bg-primary navbar-dark" }, { staticClass: "navbar navbar-expand-md navbar-dark navbar-laravel" },
[ [
_c( _c(
"a", "a",
...@@ -68723,7 +68723,7 @@ var render = function() { ...@@ -68723,7 +68723,7 @@ var render = function() {
[ [
_c( _c(
"a", "a",
{ staticClass: "btn navbar-btn btn-primary ml-2 text-white" }, { staticClass: "btn navbar-btn btn-secondary ml-2 text-black-50" },
[ [
_c("span", { _c("span", {
staticClass: "oi oi-person", staticClass: "oi oi-person",
...@@ -68788,7 +68788,7 @@ var render = function() { ...@@ -68788,7 +68788,7 @@ var render = function() {
_c( _c(
"button", "button",
{ {
staticClass: "btn btn-primary m-1", staticClass: "btn btn-success m-1",
attrs: { type: "button" }, attrs: { type: "button" },
on: { click: _vm.redirectAddUser } on: { click: _vm.redirectAddUser }
}, },
...@@ -13832,10 +13832,8 @@ Vue.use(__WEBPACK_IMPORTED_MODULE_0_axios___default.a); ...@@ -13832,10 +13832,8 @@ Vue.use(__WEBPACK_IMPORTED_MODULE_0_axios___default.a);
new Vue({ new Vue({
el: '#profile-page', el: '#profile-page',
components: { components: {
'profil-pegawai': __webpack_require__(248), 'profil-pegawai': __webpack_require__(248)
'profil-pegawai-specific': __webpack_require__(253)
} }
}); });
   
/***/ }), /***/ }),
...@@ -13927,7 +13925,7 @@ exports = module.exports = __webpack_require__(4)(false); ...@@ -13927,7 +13925,7 @@ exports = module.exports = __webpack_require__(4)(false);
   
   
// module // module
exports.push([module.i, "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n", ""]); exports.push([module.i, "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n", ""]);
   
// exports // exports
   
...@@ -14790,11 +14788,9 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope ...@@ -14790,11 +14788,9 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
// //
// //
// //
//
//
   
/* harmony default export */ __webpack_exports__["default"] = ({ /* harmony default export */ __webpack_exports__["default"] = ({
props: ['id', 'unit-kerja', 'posisi', 'kelompok-kompetensi', 'data-kinerja-temp', 'rekomendasi-training-temp', 'training-list', 'rekomendasi-posisi-temp'], props: ['id_pmo', 'id', 'unit-kerja', 'posisi', 'kelompok-kompetensi', 'data-kinerja-temp', 'rekomendasi-training-temp', 'training-list', 'rekomendasi-posisi-temp'],
   
data: function data() { data: function data() {
var _ref; var _ref;
...@@ -14819,6 +14815,7 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope ...@@ -14819,6 +14815,7 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
riwayatPekerjaan: [], riwayatPekerjaan: [],
sertifikat: [], sertifikat: [],
   
isGeneral: false,
isShowAllDataKinerja: false, isShowAllDataKinerja: false,
disableEdit: false, disableEdit: false,
isEditProfile: false, isEditProfile: false,
...@@ -14861,6 +14858,9 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope ...@@ -14861,6 +14858,9 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
created: function created() { created: function created() {
var _this = this; var _this = this;
   
this.isGeneral = this.id_pmo === "null" ? true : false;
console.log("ID-PMO: " + this.id_pmo + ": " + this.isGeneral);
//dataKinerja //dataKinerja
this.dataKinerja = this.dataKinerjaTemp; this.dataKinerja = this.dataKinerjaTemp;
   
...@@ -14883,7 +14883,7 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope ...@@ -14883,7 +14883,7 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
_this.pegawai.tanggalLahir = responsePegawai["pegawai"]["tanggal_lahir"]; _this.pegawai.tanggalLahir = responsePegawai["pegawai"]["tanggal_lahir"];
_this.pegawai.email = responsePegawai["user"]["email"]; _this.pegawai.email = responsePegawai["user"]["email"];
_this.pegawai.nopeg = responsePegawai["pegawai"]["nip"]; _this.pegawai.nopeg = responsePegawai["pegawai"]["nip"];
_this.pegawai.imageProfileUrl = 'pimage/' + responsePegawai["pegawai"]["nip"] + '.' + responsePegawai["pegawai"]["ekstensi_foto"]; _this.pegawai.imageProfileUrl = 'http://localhost:8000/pages/pimage/' + responsePegawai["pegawai"]["nip"] + '.' + responsePegawai["pegawai"]["ekstensi_foto"];
_this.pegawai.kompetensi.id = responsePegawai["pegawai"]["id_kelompok_kompetensi"]; _this.pegawai.kompetensi.id = responsePegawai["pegawai"]["id_kelompok_kompetensi"];
_this.updateProfilPegawai(); _this.updateProfilPegawai();
   
...@@ -15021,7 +15021,7 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope ...@@ -15021,7 +15021,7 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
}, },
updateSertifikat: function updateSertifikat() { updateSertifikat: function updateSertifikat() {
for (var i = 0; i < this.sertifikat.length; i++) { for (var i = 0; i < this.sertifikat.length; i++) {
this.sertifikat[i].nama_file = 'simage/' + this.sertifikat[i].nama_file; this.sertifikat[i].nama_file = 'http://localhost:8000/pages/simage/' + this.sertifikat[i].nama_file;
} }
}, },
disableEditButton: function disableEditButton() { disableEditButton: function disableEditButton() {
...@@ -15367,18 +15367,17 @@ var render = function() { ...@@ -15367,18 +15367,17 @@ var render = function() {
_c("div", { staticClass: "card", attrs: { id: "profil-pegawai" } }, [ _c("div", { staticClass: "card", attrs: { id: "profil-pegawai" } }, [
_c("div", { staticClass: "card-header" }, [ _c("div", { staticClass: "card-header" }, [
_vm._v("\n Profil Pegawai\n "), _vm._v("\n Profil Pegawai\n "),
_c( _vm.isGeneral
"button", ? _c(
{ "button",
staticClass: "btn btn-primary float-sm-right", {
attrs: { disabled: _vm.disableEdit }, staticClass: "btn btn-primary float-sm-right",
on: { click: _vm.editProfilPegawai } attrs: { disabled: _vm.disableEdit },
}, on: { click: _vm.editProfilPegawai }
[ },
_vm._v("\n Edit "), [_vm._v(" Edit "), _c("i", { staticClass: "fas fa-edit" })]
_c("i", { staticClass: "fas fa-edit" }) )
] : _vm._e()
)
]), ]),
_vm._v(" "), _vm._v(" "),
_c("div", { staticClass: "card-body" }, [ _c("div", { staticClass: "card-body" }, [
...@@ -16046,18 +16045,20 @@ var render = function() { ...@@ -16046,18 +16045,20 @@ var render = function() {
_c("div", { staticClass: "card", attrs: { id: "data-kepegawaian" } }, [ _c("div", { staticClass: "card", attrs: { id: "data-kepegawaian" } }, [
_c("div", { staticClass: "card-header" }, [ _c("div", { staticClass: "card-header" }, [
_vm._v("\n Data Kepegawaian\n "), _vm._v("\n Data Kepegawaian\n "),
_c( _vm.isGeneral
"button", ? _c(
{ "button",
staticClass: "btn btn-primary float-sm-right", {
attrs: { disabled: _vm.disableEdit }, staticClass: "btn btn-primary float-sm-right",
on: { click: _vm.editDataKepegawaian } attrs: { disabled: _vm.disableEdit },
}, on: { click: _vm.editDataKepegawaian }
[ },
_vm._v("\n Edit "), [
_c("i", { staticClass: "fas fa-edit" }) _vm._v("\n Edit "),
] _c("i", { staticClass: "fas fa-edit" })
) ]
)
: _vm._e()
]), ]),
_vm._v(" "), _vm._v(" "),
_c("div", { staticClass: "card-body" }, [ _c("div", { staticClass: "card-body" }, [
...@@ -16428,18 +16429,20 @@ var render = function() { ...@@ -16428,18 +16429,20 @@ var render = function() {
_c("div", { staticClass: "card", attrs: { id: "riwayat-pegawai" } }, [ _c("div", { staticClass: "card", attrs: { id: "riwayat-pegawai" } }, [
_c("div", { staticClass: "card-header" }, [ _c("div", { staticClass: "card-header" }, [
_vm._v("\n Riwayat Pendidikan dan Pekerjaan"), _vm._v("\n Riwayat Pendidikan dan Pekerjaan"),
_c( _vm.isGeneral
"button", ? _c(
{ "button",
staticClass: "btn btn-primary float-sm-right", {
attrs: { disabled: _vm.disableEdit }, staticClass: "btn btn-primary float-sm-right",
on: { click: _vm.editRiwayatPegawai } attrs: { disabled: _vm.disableEdit },
}, on: { click: _vm.editRiwayatPegawai }
[ },
_vm._v("\n Edit "), [
_c("i", { staticClass: "fas fa-edit" }) _vm._v("\n Edit "),
] _c("i", { staticClass: "fas fa-edit" })
) ]
)
: _vm._e()
]), ]),
_vm._v(" "), _vm._v(" "),
_c("div", { staticClass: "card-body" }, [ _c("div", { staticClass: "card-body" }, [
...@@ -17781,7 +17784,7 @@ var render = function() { ...@@ -17781,7 +17784,7 @@ var render = function() {
_c( _c(
"button", "button",
{ {
staticClass: "btn btn-primary float-sm-left", staticClass: "btn btn-success float-sm-left",
attrs: { disabled: _vm.disableEdit }, attrs: { disabled: _vm.disableEdit },
on: { click: _vm.downloadKompetensi } on: { click: _vm.downloadKompetensi }
}, },
...@@ -18349,4536 +18352,6 @@ if (false) { ...@@ -18349,4536 +18352,6 @@ if (false) {
   
/***/ }), /***/ }),
   
/***/ 253:
/***/ (function(module, exports, __webpack_require__) {
var disposed = false
function injectStyle (ssrContext) {
if (disposed) return
__webpack_require__(254)
}
var normalizeComponent = __webpack_require__(5)
/* script */
var __vue_script__ = __webpack_require__(256)
/* template */
var __vue_template__ = __webpack_require__(257)
/* template functional */
var __vue_template_functional__ = false
/* styles */
var __vue_styles__ = injectStyle
/* scopeId */
var __vue_scopeId__ = null
/* moduleIdentifier (server only) */
var __vue_module_identifier__ = null
var Component = normalizeComponent(
__vue_script__,
__vue_template__,
__vue_template_functional__,
__vue_styles__,
__vue_scopeId__,
__vue_module_identifier__
)
Component.options.__file = "resources/assets/js/components/ProfilPegawaiSpecific.vue"
/* hot reload */
if (false) {(function () {
var hotAPI = require("vue-hot-reload-api")
hotAPI.install(require("vue"), false)
if (!hotAPI.compatible) return
module.hot.accept()
if (!module.hot.data) {
hotAPI.createRecord("data-v-47f115bf", Component.options)
} else {
hotAPI.reload("data-v-47f115bf", Component.options)
}
module.hot.dispose(function (data) {
disposed = true
})
})()}
module.exports = Component.exports
/***/ }),
/***/ 254:
/***/ (function(module, exports, __webpack_require__) {
// style-loader: Adds some css to the DOM by adding a <style> tag
// load the styles
var content = __webpack_require__(255);
if(typeof content === 'string') content = [[module.i, content, '']];
if(content.locals) module.exports = content.locals;
// add the styles to the DOM
var update = __webpack_require__(9)("45cdb34d", content, false, {});
// Hot Module Replacement
if(false) {
// When the styles change, update the <style> tags
if(!content.locals) {
module.hot.accept("!!../../../../node_modules/css-loader/index.js!../../../../node_modules/vue-loader/lib/style-compiler/index.js?{\"vue\":true,\"id\":\"data-v-47f115bf\",\"scoped\":false,\"hasInlineConfig\":true}!../../../../node_modules/vue-loader/lib/selector.js?type=styles&index=0!./ProfilPegawaiSpecific.vue", function() {
var newContent = require("!!../../../../node_modules/css-loader/index.js!../../../../node_modules/vue-loader/lib/style-compiler/index.js?{\"vue\":true,\"id\":\"data-v-47f115bf\",\"scoped\":false,\"hasInlineConfig\":true}!../../../../node_modules/vue-loader/lib/selector.js?type=styles&index=0!./ProfilPegawaiSpecific.vue");
if(typeof newContent === 'string') newContent = [[module.id, newContent, '']];
update(newContent);
});
}
// When the module is disposed, remove the <style> tags
module.hot.dispose(function() { update(); });
}
/***/ }),
/***/ 255:
/***/ (function(module, exports, __webpack_require__) {
exports = module.exports = __webpack_require__(4)(false);
// imports
// module
exports.push([module.i, "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n", ""]);
// exports
/***/ }),
/***/ 256:
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
/* harmony default export */ __webpack_exports__["default"] = ({
props: ['id-pmo', 'id', 'unit-kerja', 'posisi', 'kelompok-kompetensi', 'data-kinerja-temp', 'rekomendasi-training-temp', 'training-list', 'rekomendasi-posisi-temp'],
data: function data() {
var _ref;
return _ref = {
pegawai: {
imageProfileUrl: "",
nama: "",
tempatLahir: "",
tanggalLahir: "",
email: "",
nopeg: "",
unitKerja: "",
posisi: "",
kompetensi: "",
tahunMasuk: ""
},
dataKepegawaian: [],
dataKepegawaianPrev: null,
riwayatPendidikan: [],
riwayatPekerjaan: [],
sertifikat: [],
isShowAllDataKinerja: false,
disableEdit: false,
isEditProfile: false,
isEditKepegawaian: false,
isEditRiwayat: false,
isEditSertifikat: false,
isEditDataKinerja: false,
isEditRekomendasi: false,
cachedPegawai: null,
cachedDataKepegawaian: null,
cachedRiwayatPendidikan: null,
cachedRiwayatPekerjaan: null,
cachedSertifikat: null,
cachedDataKinerja: null,
cachedRekomendasiTraining: null,
cachedRekomendasiPosisi: null
}, _defineProperty(_ref, 'pegawai', {
imageProfileUrl: null,
nama: null,
tempatLahir: null,
tanggalLahir: null,
email: null,
nopeg: null,
unitKerja: {
id: null,
text: null
},
posisi: {
id: null,
text: null
},
kompetensi: {
id: null,
text: null
},
tahunMasuk: null
}), _defineProperty(_ref, 'dataKepegawaian', []), _defineProperty(_ref, 'riwayatPendidikan', []), _defineProperty(_ref, 'riwayatPekerjaan', []), _defineProperty(_ref, 'dataKinerja', []), _defineProperty(_ref, 'dataKinerjaShow', []), _defineProperty(_ref, 'rekomendasiTraining', []), _defineProperty(_ref, 'rekomendasiPosisi', []), _ref;
},
mounted: function mounted() {},
created: function created() {
var _this = this;
//dataKinerja
this.dataKinerja = this.dataKinerjaTemp;
axios.get('/api/pegawai/' + this.id).then(function (response) {
//get data from api response
var responsePegawai = response.data["data"];
_this.dataKepegawaian = responsePegawai["kepegawaian"];
_this.riwayatPendidikan = responsePegawai["pendidikan"];
_this.riwayatPekerjaan = responsePegawai["pekerjaan"];
_this.updateDataKepegawaian();
_this.dataKepegawaianPrev = _this.dataKepegawaian[_this.dataKepegawaian.length - 1];
_this.sertifikat = responsePegawai["sertifikat"];
_this.updateSertifikat();
_this.pegawai.nama = responsePegawai["user"]["name"];
_this.pegawai.tempatLahir = responsePegawai["pegawai"]["tempat_lahir"];
_this.pegawai.tanggalLahir = responsePegawai["pegawai"]["tanggal_lahir"];
_this.pegawai.email = responsePegawai["user"]["email"];
_this.pegawai.nopeg = responsePegawai["pegawai"]["nip"];
_this.pegawai.imageProfileUrl = 'http://localhost:8000/pages/pimage/' + responsePegawai["pegawai"]["nip"] + '.' + responsePegawai["pegawai"]["ekstensi_foto"];
_this.pegawai.kompetensi.id = responsePegawai["pegawai"]["id_kelompok_kompetensi"];
_this.updateProfilPegawai();
//chacing
_this.cachedPegawai = JSON.parse(JSON.stringify(_this.pegawai));
_this.cachedDataKepegawaian = JSON.parse(JSON.stringify(_this.dataKepegawaian));
_this.cachedRiwayatPendidikan = JSON.parse(JSON.stringify(_this.riwayatPendidikan));
_this.cachedRiwayatPekerjaan = JSON.parse(JSON.stringify(_this.riwayatPekerjaan));
_this.cachedSertifikat = JSON.parse(JSON.stringify(_this.sertifikat));
_this.cachedDataKinerja = JSON.parse(JSON.stringify(_this.dataKinerja));
console.log(_this);
}).catch(function (error) {
console.log(error);
alert('Gagal mengambil data');
});
//caching others
this.cachedDataKinerja = JSON.parse(JSON.stringify(this.dataKinerja));
// init dataKinerjaShow
if (this.dataKinerja.length > 6) {
this.dataKinerjaShow = this.dataKinerja.slice(this.dataKinerja.length - 6);
} else {
this.dataKinerjaShow = this.dataKinerja;
}
//init rekomendasiTraining
this.rekomendasiTraining = this.rekomendasiTrainingTemp;
this.cachedRekomendasiTraining = JSON.parse(JSON.stringify(this.rekomendasiTraining));
//init rekomendasiPosisi
this.rekomendasiPosisi = this.rekomendasiPosisiTemp;
this.cachedRekomendasiPosisi = JSON.parse(JSON.stringify(this.rekomendasiPosisi));
},
methods: {
downloadKompetensi: function downloadKompetensi() {
window.open('/api/kompetensi/report/' + this.id);
},
editKommpetensi: function editKommpetensi() {
window.open('/pages/pmo?nip=' + this.pegawai.nopeg + '&tab=dataKompetensi');
},
showAllDataKinerja: function showAllDataKinerja() {
this.isShowAllDataKinerja = true;
this.dataKinerjaShow = this.dataKinerja;
},
hideDataKinerja: function hideDataKinerja() {
this.isShowAllDataKinerja = false;
if (this.dataKinerja.length > 6) {
this.dataKinerjaShow = this.dataKinerja.slice(this.dataKinerja.length - 6);
}
},
updateProfilPegawai: function updateProfilPegawai() {
var _this2 = this;
if (this.pegawai.unitKerja.id != null) {
this.pegawai.unitKerja.text = this.unitKerja.find(function (x) {
return x.id_unit_kerja == _this2.pegawai.unitKerja.id;
}).nama_unit_kerja;
} else {
this.pegawai.unitKerja.text = null;
}
if (this.pegawai.kompetensi.id != null) {
this.pegawai.kompetensi.text = this.kelompokKompetensi.find(function (x) {
return x.id_kelompok_kompetensi == _this2.pegawai.kompetensi.id;
}).nama_kelompok_kompetensi;
} else {
this.pegawai.kompetensi.text = null;
}
if (this.pegawai.posisi.id != null) {
this.pegawai.posisi.text = this.posisi.find(function (x) {
return x.id_posisi == _this2.pegawai.posisi.id;
}).nama_posisi;
} else {
this.pegawai.posisi.text = null;
}
},
updateDataKepegawaian: function updateDataKepegawaian() {
//update relevan
if (this.dataKepegawaian.length == 0) {
this.pegawai.unitKerja.id = null;
this.pegawai.posisi.id = null;
// this.pegawai.kompetensi.id = null;
this.pegawai.tahunMasuk = null;
} else {
//sort
this.dataKepegawaian.sort(function (a, b) {
var keyA = a.tahun_masuk,
keyB = b.tahun_masuk;
// Compare the 2 dates
if (keyA < keyB) return -1;
if (keyA > keyB) return 1;
return 0;
});
var lastDataPegawai = this.dataKepegawaian[this.dataKepegawaian.length - 1];
this.pegawai.unitKerja.id = lastDataPegawai["id_unit_kerja"];
this.pegawai.posisi.id = lastDataPegawai["id_posisi"];
// this.pegawai.kompetensi.id = lastDataPegawai["id_kelompok_kompetensi"];
this.pegawai.tahunMasuk = lastDataPegawai["tahun_masuk"];
}
},
updateDataKepegawaianAfterEditProfile: function updateDataKepegawaianAfterEditProfile() {
//update relevan
if (this.dataKepegawaian.length == 0) {
var newData = {
id_data_kepegawaian: null,
id_pegawai: null,
id_unit_kerja: this.pegawai.unitKerja.id,
id_posisi: this.pegawai.posisi.id,
// id_kelompok_kompetensi : this.pegawai.kompetensi.id,
tahun_masuk: this.pegawai.tahunMasuk,
tahun_keluar: null
};
this.dataKepegawaian.push(newData);
} else {
//sort
this.dataKepegawaian.sort(function (a, b) {
var keyA = a.tahun_masuk,
keyB = b.tahun_masuk;
// Compare the 2 dates
if (keyA < keyB) return -1;
if (keyA > keyB) return 1;
return 0;
});
var lastDataPegawai = this.dataKepegawaian[this.dataKepegawaian.length - 1];
lastDataPegawai["id_unit_kerja"] = this.pegawai.unitKerja.id;
lastDataPegawai["id_posisi"] = this.pegawai.posisi.id;
// lastDataPegawai["id_kelompok_kompetensi"] = this.pegawai.kompetensi.id;
lastDataPegawai["tahun_masuk"] = this.pegawai.tahunMasuk;
}
},
updateSertifikat: function updateSertifikat() {
for (var i = 0; i < this.sertifikat.length; i++) {
this.sertifikat[i].nama_file = 'http://localhost:8000/pages/simage/' + this.sertifikat[i].nama_file;
}
},
disableEditButton: function disableEditButton() {
this.disableEdit = true;
},
enableEditButton: function enableEditButton() {
this.disableEdit = false;
},
editProfilPegawai: function editProfilPegawai() {
this.isEditProfile = true;
this.disableEditButton();
},
editDataKepegawaian: function editDataKepegawaian() {
this.isEditKepegawaian = true;
this.disableEditButton();
},
editRiwayatPegawai: function editRiwayatPegawai() {
this.isEditRiwayat = true;
this.disableEditButton();
},
editSertifikat: function editSertifikat() {
this.isEditSertifikat = true;
this.disableEditButton();
},
editDataKinerja: function editDataKinerja() {
this.isEditDataKinerja = true;
this.disableEditButton();
},
editDataKompetensi: function editDataKompetensi() {},
editRekomendasi: function editRekomendasi() {
this.isEditRekomendasi = true;
this.disableEditButton();
},
addDataKepegawaian: function addDataKepegawaian() {
var newData = {
id_data_kepegawaian: null,
id_pegawai: null,
id_unit_kerja: null,
id_posisi: null,
// id_kelompok_kompetensi : null,
tahun_masuk: null,
tahun_keluar: null
};
this.dataKepegawaian.push(newData);
},
addRiwayatPendidikan: function addRiwayatPendidikan() {
var newData = {
id_riwayat_pendidikan: null,
id_pegawai: null,
nama_institusi: null,
strata: null,
jurusan: null,
tahun_masuk: null,
tahun_keluar: null
};
this.riwayatPendidikan.push(newData);
},
addRiwayatPekerjaan: function addRiwayatPekerjaan() {
var newData = {
id_riwayat_pekerjaan: null,
id_pegawai: null,
nama_institusi: null,
posisi: null,
tahun_masuk: null,
tahun_keluar: null
};
this.riwayatPekerjaan.push(newData);
},
addSertifikat: function addSertifikat() {
var newData = {
id_sertifikat: null,
id_pegawai: null,
judul: null,
lembaga: null,
tahun_diterbitkan: null,
catatan: null,
nama_file: null
};
this.sertifikat.push(newData);
},
addDataKinerja: function addDataKinerja() {
var newData = {
id_kinerja: null,
id_pegawai: null,
tahun: null,
semester: null,
nilai: null,
catatan: null
};
this.dataKinerja.push(newData);
},
addRekomendasiTraining: function addRekomendasiTraining() {
var newData = {
id_rekomendasi_training: null,
id_pegawai: null,
id_training: null
};
this.rekomendasiTraining.push(newData);
},
addRekomendasiPosisi: function addRekomendasiPosisi() {
var newData = {
id_rekomendasi_training: null,
id_pegawai: null,
id_unit_kerja: null,
id_posisi: null
};
this.rekomendasiPosisi.push(newData);
},
delDataKepegawaian: function delDataKepegawaian(event) {
var targetIndex = event.currentTarget.id;
this.dataKepegawaian.splice(targetIndex, 1);
},
delRiwayatPendidikan: function delRiwayatPendidikan(event) {
var targetIndex = event.currentTarget.id;
this.riwayatPendidikan.splice(targetIndex, 1);
},
delRiwayatPekerjaan: function delRiwayatPekerjaan(event) {
var targetIndex = event.currentTarget.id;
this.riwayatPekerjaan.splice(targetIndex, 1);
},
delSertifikat: function delSertifikat(event) {
var targetIndex = event.currentTarget.id;
this.sertifikat.splice(targetIndex, 1);
},
delDataKinerja: function delDataKinerja(event) {
var targetIndex = event.currentTarget.id;
this.dataKinerja.splice(targetIndex, 1);
},
delRekomendasiTraining: function delRekomendasiTraining(event) {
var targetIndex = event.currentTarget.id;
this.rekomendasiTraining.splice(targetIndex, 1);
},
delRekomendasiPosisi: function delRekomendasiPosisi(event) {
var targetIndex = event.currentTarget.id;
this.rekomendasiPosisi.splice(targetIndex, 1);
},
saveProfilPegawai: function saveProfilPegawai() {
this.enableEditButton();
this.updateProfilPegawai();
this.updateDataKepegawaianAfterEditProfile();
this.cachedPegawai = JSON.parse(JSON.stringify(this.pegawai));
this.isEditProfile = false;
axios.post('/api/pegawai/' + this.id, {
pegawai: this.pegawai,
data_kepegawaian: this.dataKepegawaian,
data_kepegawaian_prev: this.dataKepegawaianPrev,
_method: "put"
}).then(function (response) {
console.log(response);
window.location.href = '/pages/profile/' + this.id;
}).catch(function (error) {
console.log(error);
alert('Semua kolom harus terisi');
});
console.log(this.dataKepegawaian);
},
saveDataKepegawaian: function saveDataKepegawaian() {
this.updateDataKepegawaian();
this.updateProfilPegawai();
this.enableEditButton();
this.cachedDataKepegawaian = JSON.parse(JSON.stringify(this.dataKepegawaian));
this.isEditKepegawaian = false;
console.log(this.dataKepegawaian);
axios.post('/api/kepegawaian/' + this.id, {
kepegawaian: this.dataKepegawaian,
_method: 'put'
}).then(function (response) {
console.log(response);
window.location.href = "/pages/profile/" + this.id;
}).catch(function (error) {
console.log(error);
alert('Semua kolom harus terisi');
});
},
saveRiwayatPegawai: function saveRiwayatPegawai() {
//sort
this.riwayatPendidikan.sort(function (a, b) {
var keyA = a.tahun_masuk,
keyB = b.tahun_masuk;
// Compare the 2 dates
if (keyA < keyB) return -1;
if (keyA > keyB) return 1;
return 0;
});
//sort
this.riwayatPekerjaan.sort(function (a, b) {
var keyA = a.tahun_masuk,
keyB = b.tahun_masuk;
// Compare the 2 dates
if (keyA < keyB) return -1;
if (keyA > keyB) return 1;
return 0;
});
this.enableEditButton();
this.cachedRiwayatPendidikan = JSON.parse(JSON.stringify(this.riwayatPendidikan));
this.cachedRiwayatPekerjaan = JSON.parse(JSON.stringify(this.riwayatPekerjaan));
this.isEditRiwayat = false;
console.log(this.riwayatPendidikan);
console.log(this.riwayatPekerjaan);
axios.post('/api/riwayat/' + this.id, {
pendidikan: this.riwayatPendidikan,
pekerjaan: this.riwayatPekerjaan,
_method: 'put'
}).then(function (response) {
console.log(response);
window.location.href = "/pages/profile/" + this.id;
}).catch(function (error) {
console.log(error);
alert('Semua kolom harus terisi');
});
},
saveSertifikat: function saveSertifikat() {
this.enableEditButton();
this.cachedSertifikat = JSON.parse(JSON.stringify(this.sertifikat));
this.isEditSertifikat = false;
console.log(this.sertifikat);
axios.post('/api/sertifikat/' + this.id, {
sertifikat: this.sertifikat,
_method: 'put'
}).then(function (response) {
console.log(response);
window.location.href = "/pages/profile/" + response.data.data;
}).catch(function (error) {
console.log(error);
alert('Semua kolom harus terisi');
});
},
saveDataKinerja: function saveDataKinerja() {
//sort
this.dataKinerja.sort(function (a, b) {
var keyA = a.tahun,
keyB = b.tahun;
// Compare the 2 dates
if (keyA < keyB) return -1;
if (keyA > keyB) return 1;
if (keyA == keyB) {
if (a.semester < b.semester) return -1;else return 1;
}
});
this.enableEditButton();
this.cachedDataKinerja = JSON.parse(JSON.stringify(this.dataKinerja));
this.isEditDataKinerja = false;
if (this.isShowAllDataKinerja) {
this.showAllDataKinerja();
} else {
this.hideDataKinerja();
}
},
saveRekomendasi: function saveRekomendasi() {
this.enableEditButton();
this.cachedRekomendasiTraining = JSON.parse(JSON.stringify(this.rekomendasiTraining));
this.cachedRekomendasiPosisi = JSON.parse(JSON.stringify(this.rekomendasiPosisi));
this.isEditRekomendasi = false;
},
cancelProfilPegawai: function cancelProfilPegawai() {
this.enableEditButton();
this.pegawai = JSON.parse(JSON.stringify(this.cachedPegawai));
this.isEditProfile = false;
},
cancelDataKepegawaian: function cancelDataKepegawaian() {
this.enableEditButton();
this.dataKepegawaian = JSON.parse(JSON.stringify(this.cachedDataKepegawaian));
this.isEditKepegawaian = false;
},
cancelRiwayatPegawai: function cancelRiwayatPegawai() {
this.enableEditButton();
this.riwayatPendidikan = JSON.parse(JSON.stringify(this.cachedRiwayatPendidikan));
this.riwayatPekerjaan = JSON.parse(JSON.stringify(this.cachedRiwayatPekerjaan));
this.isEditRiwayat = false;
},
cancelSertifikat: function cancelSertifikat() {
this.enableEditButton();
this.sertifikat = JSON.parse(JSON.stringify(this.cachedSertifikat));
this.isEditSertifikat = false;
},
cancelDataKinerja: function cancelDataKinerja() {
this.enableEditButton();
this.dataKinerja = JSON.parse(JSON.stringify(this.cachedDataKinerja));
this.isEditDataKinerja = false;
if (this.isShowAllDataKinerja) {
this.showAllDataKinerja();
} else {
this.hideDataKinerja();
}
},
cancelRekomendasi: function cancelRekomendasi() {
this.enableEditButton();
this.rekomendasiTraining = JSON.parse(JSON.stringify(this.cachedRekomendasiTraining));
this.rekomendasiPosisi = JSON.parse(JSON.stringify(this.cachedRekomendasiPosisi));
this.isEditRekomendasi = false;
},
FileChangeProfile: function FileChangeProfile(e) {
var files = e.target.files || e.dataTransfer.files;
if (!files.length) return;
var reader = new FileReader();
var vm = this;
reader.onload = function (e) {
vm.pegawai.imageProfileUrl = e.target.result;
};
reader.readAsDataURL(files[0]);
},
FileChangeSertifikat: function FileChangeSertifikat(e) {
var files = e.target.files || e.dataTransfer.files;
if (!files.length) return;
var idx = e.currentTarget.id;
var reader = new FileReader();
var vm = this;
reader.onload = function (e) {
vm.sertifikat[idx].nama_file = e.target.result;
};
reader.readAsDataURL(files[0]);
}
}
});
/***/ }),
/***/ 257:
/***/ (function(module, exports, __webpack_require__) {
var render = function() {
var _vm = this
var _h = _vm.$createElement
var _c = _vm._self._c || _h
return _c("div", [
_c(
"div",
{ staticClass: "card", attrs: { id: "profil-pegawai-specific" } },
[
_c("div", { staticClass: "card-header" }, [
_vm._v("\n Profil Pegawai\n ")
]),
_vm._v(" "),
_c("div", { staticClass: "card-body" }, [
_c("div", { staticClass: "card-container" }, [
_c("div", { staticClass: "row" }, [
_c("div", { staticClass: "col-sm-3 img-responsive" }, [
_c("img", {
staticClass: "img-thumbnail",
attrs: { id: "img-profile", src: _vm.pegawai.imageProfileUrl }
}),
_vm._v(" "),
_c("br"),
_c("br"),
_vm._v(" "),
_vm.isEditProfile
? _c("input", {
staticClass: "form-control",
attrs: { type: "file" },
on: { change: _vm.FileChangeProfile }
})
: _vm._e()
]),
_vm._v(" "),
_c("div", { staticClass: "col-sm-1" }),
_vm._v(" "),
_c("div", { staticClass: "col-sm-7" }, [
_c("div", { staticClass: "row" }, [
_c("div", { staticClass: "col-sm-3 text-right" }, [
_vm._v(
"\n Nama\n "
)
]),
_vm._v(" "),
_c("div", { staticClass: "col-sm-9" }, [
!_vm.isEditProfile
? _c("b", {
domProps: { textContent: _vm._s(_vm.pegawai.nama) }
})
: _vm._e(),
_vm._v(" "),
_vm.isEditProfile
? _c(
"div",
{
staticClass: "form-group",
attrs: { id: "edit-nama" }
},
[
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: _vm.pegawai.nama,
expression: "pegawai.nama"
}
],
staticClass: "form-control",
attrs: { type: "text" },
domProps: { value: _vm.pegawai.nama },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
_vm.pegawai,
"nama",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c(
"small",
{ staticClass: "form-text text-muted" },
[_vm._v("*Wajib diisi")]
)
]
)
: _vm._e()
])
]),
_vm._v(" "),
_c("hr"),
_vm._v(" "),
_c("div", { staticClass: "row" }, [
_c("div", { staticClass: "col-sm-3 text-right" }, [
_vm._v(
"\n Tempat, Tanggal Lahir\n "
)
]),
_vm._v(" "),
_c("div", { staticClass: "col-sm-9" }, [
!_vm.isEditProfile
? _c("b", [
_c("span", {
domProps: {
textContent: _vm._s(_vm.pegawai.tempatLahir)
}
}),
_vm._v(", "),
_c("span", {
domProps: {
textContent: _vm._s(_vm.pegawai.tanggalLahir)
}
})
])
: _vm._e(),
_vm._v(" "),
_vm.isEditProfile
? _c("div", { staticClass: "form-row" }, [
_c(
"div",
{
staticClass: "form-group",
attrs: { id: "edit-tempat-lahir" }
},
[
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: _vm.pegawai.tempatLahir,
expression: "pegawai.tempatLahir"
}
],
staticClass: "form-control",
attrs: { type: "text" },
domProps: { value: _vm.pegawai.tempatLahir },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
_vm.pegawai,
"tempatLahir",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c(
"small",
{ staticClass: "form-text text-muted" },
[_vm._v("*Tempat lahir. Wajib diisi")]
)
]
),
_vm._v(" "),
_c(
"div",
{
staticClass: "form-group",
attrs: { id: "edit-tanggal-lahir" }
},
[
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: _vm.pegawai.tanggalLahir,
expression: "pegawai.tanggalLahir"
}
],
staticClass: "form-control",
attrs: { type: "date" },
domProps: { value: _vm.pegawai.tanggalLahir },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
_vm.pegawai,
"tanggalLahir",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c(
"small",
{ staticClass: "form-text text-muted" },
[_vm._v("*Tanggal lahir. Wajib diisi")]
)
]
)
])
: _vm._e()
])
]),
_vm._v(" "),
_c("hr"),
_vm._v(" "),
_c("div", { staticClass: "row" }, [
_c("div", { staticClass: "col-sm-3 text-right" }, [
_vm._v(
"\n Email\n "
)
]),
_vm._v(" "),
_c("div", { staticClass: "col-sm-9" }, [
!_vm.isEditProfile
? _c("b", {
domProps: { textContent: _vm._s(_vm.pegawai.email) }
})
: _vm._e(),
_vm._v(" "),
_vm.isEditProfile
? _c(
"div",
{
staticClass: "form-group",
attrs: { id: "edit-email" }
},
[
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: _vm.pegawai.email,
expression: "pegawai.email"
}
],
staticClass: "form-control",
attrs: { type: "email" },
domProps: { value: _vm.pegawai.email },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
_vm.pegawai,
"email",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c(
"small",
{ staticClass: "form-text text-muted" },
[_vm._v("*Wajib diisi")]
)
]
)
: _vm._e()
])
]),
_vm._v(" "),
_c("hr"),
_vm._v(" "),
_c("div", { staticClass: "row" }, [
_c("div", { staticClass: "col-sm-3 text-right" }, [
_vm._v(
"\n No. Pegawai\n "
)
]),
_vm._v(" "),
_c("div", { staticClass: "col-sm-9" }, [
!_vm.isEditProfile
? _c("b", {
domProps: { textContent: _vm._s(_vm.pegawai.nopeg) }
})
: _vm._e(),
_vm._v(" "),
_vm.isEditProfile
? _c(
"div",
{
staticClass: "form-group",
attrs: { id: "edit-nopeg" }
},
[
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: _vm.pegawai.nopeg,
expression: "pegawai.nopeg"
}
],
staticClass: "form-control",
attrs: { type: "text" },
domProps: { value: _vm.pegawai.nopeg },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
_vm.pegawai,
"nopeg",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c(
"small",
{ staticClass: "form-text text-muted" },
[_vm._v("*Wajib diisi")]
)
]
)
: _vm._e()
])
]),
_vm._v(" "),
_c("hr"),
_vm._v(" "),
_c("div", { staticClass: "row" }, [
_c("div", { staticClass: "col-sm-3 text-right" }, [
_vm._v(
"\n Unit Kerja\n "
)
]),
_vm._v(" "),
_c("div", { staticClass: "col-sm-9" }, [
!_vm.isEditProfile
? _c("b", {
domProps: {
textContent: _vm._s(_vm.pegawai.unitKerja.text)
}
})
: _vm._e(),
_vm._v(" "),
_vm.isEditProfile
? _c(
"div",
{
staticClass: "form-group",
attrs: { id: "edit-unit-kerja" }
},
[
_c(
"select",
{
directives: [
{
name: "model",
rawName: "v-model",
value: _vm.pegawai.unitKerja.id,
expression: "pegawai.unitKerja.id"
}
],
staticClass: "form-control",
on: {
change: function($event) {
var $$selectedVal = Array.prototype.filter
.call($event.target.options, function(o) {
return o.selected
})
.map(function(o) {
var val =
"_value" in o ? o._value : o.value
return val
})
_vm.$set(
_vm.pegawai.unitKerja,
"id",
$event.target.multiple
? $$selectedVal
: $$selectedVal[0]
)
}
}
},
_vm._l(_vm.unitKerja, function(uk) {
return _c(
"option",
{ domProps: { value: uk.id_unit_kerja } },
[
_vm._v(
"\n " +
_vm._s(uk.nama_unit_kerja) +
"\n "
)
]
)
})
),
_vm._v(" "),
_c(
"small",
{ staticClass: "form-text text-muted" },
[_vm._v("*Wajib diisi")]
)
]
)
: _vm._e()
])
]),
_vm._v(" "),
_c("hr"),
_vm._v(" "),
_c("div", { staticClass: "row" }, [
_c("div", { staticClass: "col-sm-3 text-right" }, [
_vm._v(
"\n Jabatan\n "
)
]),
_vm._v(" "),
_c("div", { staticClass: "col-sm-9" }, [
!_vm.isEditProfile
? _c("b", {
domProps: {
textContent: _vm._s(_vm.pegawai.posisi.text)
}
})
: _vm._e(),
_vm._v(" "),
_vm.isEditProfile
? _c(
"div",
{
staticClass: "form-group",
attrs: { id: "edit-posisi" }
},
[
_c(
"select",
{
directives: [
{
name: "model",
rawName: "v-model",
value: _vm.pegawai.posisi.id,
expression: "pegawai.posisi.id"
}
],
staticClass: "form-control",
on: {
change: function($event) {
var $$selectedVal = Array.prototype.filter
.call($event.target.options, function(o) {
return o.selected
})
.map(function(o) {
var val =
"_value" in o ? o._value : o.value
return val
})
_vm.$set(
_vm.pegawai.posisi,
"id",
$event.target.multiple
? $$selectedVal
: $$selectedVal[0]
)
}
}
},
_vm._l(_vm.posisi, function(pos) {
return _c(
"option",
{ domProps: { value: pos.id_posisi } },
[
_vm._v(
"\n " +
_vm._s(pos.nama_posisi) +
"\n "
)
]
)
})
),
_vm._v(" "),
_c(
"small",
{ staticClass: "form-text text-muted" },
[_vm._v("*Wajib diisi")]
)
]
)
: _vm._e()
])
]),
_vm._v(" "),
_c("hr"),
_vm._v(" "),
_c("div", { staticClass: "row" }, [
_c("div", { staticClass: "col-sm-3 text-right" }, [
_vm._v(
"\n Kompetensi\n "
)
]),
_vm._v(" "),
_c("div", { staticClass: "col-sm-9" }, [
!_vm.isEditProfile
? _c("b", {
domProps: {
textContent: _vm._s(_vm.pegawai.kompetensi.text)
}
})
: _vm._e(),
_vm._v(" "),
_vm.isEditProfile
? _c(
"div",
{
staticClass: "form-group",
attrs: { id: "edit-kompetensi" }
},
[
_c(
"select",
{
directives: [
{
name: "model",
rawName: "v-model",
value: _vm.pegawai.kompetensi.id,
expression: "pegawai.kompetensi.id"
}
],
staticClass: "form-control",
on: {
change: function($event) {
var $$selectedVal = Array.prototype.filter
.call($event.target.options, function(o) {
return o.selected
})
.map(function(o) {
var val =
"_value" in o ? o._value : o.value
return val
})
_vm.$set(
_vm.pegawai.kompetensi,
"id",
$event.target.multiple
? $$selectedVal
: $$selectedVal[0]
)
}
}
},
_vm._l(_vm.kelompokKompetensi, function(kk) {
return _c(
"option",
{
domProps: {
value: kk.id_kelompok_kompetensi
}
},
[
_vm._v(
"\n " +
_vm._s(kk.nama_kelompok_kompetensi) +
"\n "
)
]
)
})
),
_vm._v(" "),
_c(
"small",
{ staticClass: "form-text text-muted" },
[_vm._v("*Wajib diisi")]
)
]
)
: _vm._e()
])
]),
_vm._v(" "),
_c("hr"),
_vm._v(" "),
_c("div", { staticClass: "row" }, [
_c("div", { staticClass: "col-sm-3 text-right" }, [
_vm._v(
"\n Tahun Mulai Jabatan Saat Ini\n "
)
]),
_vm._v(" "),
_c("div", { staticClass: "col-sm-9" }, [
!_vm.isEditProfile
? _c("b", {
domProps: {
textContent: _vm._s(_vm.pegawai.tahunMasuk)
}
})
: _vm._e(),
_vm._v(" "),
_vm.isEditProfile
? _c(
"div",
{
staticClass: "form-group",
attrs: { id: "edit-tahun-masuk" }
},
[
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: _vm.pegawai.tahunMasuk,
expression: "pegawai.tahunMasuk"
}
],
staticClass: "form-control",
attrs: { type: "text" },
domProps: { value: _vm.pegawai.tahunMasuk },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
_vm.pegawai,
"tahunMasuk",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c(
"small",
{ staticClass: "form-text text-muted" },
[_vm._v("*Edit pada data kepegawaian di bawah")]
)
]
)
: _vm._e()
])
])
])
])
])
]),
_vm._v(" "),
_vm.isEditProfile
? _c("div", { staticClass: "card-footer text-muted" }, [
_c(
"a",
{
staticClass: "btn btn-success float-sm-right btn-simpan",
attrs: { href: "#profil-pegawai-specific" },
on: { click: _vm.saveProfilPegawai }
},
[
_vm._v("\n Simpan "),
_c("i", { staticClass: "fas fa-check" })
]
),
_vm._v(" "),
_c(
"a",
{
staticClass: "btn btn-danger float-sm-right",
attrs: { href: "#profil-pegawai-specific" },
on: { click: _vm.cancelProfilPegawai }
},
[
_vm._v("\n Batal "),
_c("i", { staticClass: "fas fa-times" })
]
)
])
: _vm._e()
]
),
_vm._v(" "),
_c("br"),
_vm._v(" "),
_c("div", { staticClass: "card", attrs: { id: "data-kepegawaian" } }, [
_c("div", { staticClass: "card-header" }, [
_vm._v("\n Data Kepegawaian\n ")
]),
_vm._v(" "),
_c("div", { staticClass: "card-body" }, [
_c("div", { staticClass: "container" }, [
_vm.dataKepegawaian.length === 0
? _c("div", { staticClass: "no-data-kepegawaian" }, [
!_vm.isEditKepegawaian
? _c("div", [
_vm._v(
"\n Belum ditambahkan.\n "
),
_c("br")
])
: _vm._e(),
_vm._v(" "),
_vm.isEditKepegawaian
? _c(
"button",
{
staticClass: "btn btn-primary float-sm-left",
on: { click: _vm.addDataKepegawaian }
},
[
_vm._v("\n Tambah "),
_c("i", { staticClass: "fas fa-plus" })
]
)
: _vm._e()
])
: _vm._e(),
_vm._v(" "),
_vm.dataKepegawaian.length !== 0
? _c("div", { staticClass: "data-kepegawaian" }, [
_c(
"table",
{ staticClass: "table" },
[
_vm._m(0),
_vm._v(" "),
_vm._l(_vm.dataKepegawaian, function(dk) {
return _c("tbody", [
!_vm.isEditKepegawaian
? _c("tr", [
_c("td", {
domProps: {
textContent: _vm._s(
_vm.unitKerja.find(function(x) {
return x.id_unit_kerja == dk.id_unit_kerja
}).nama_unit_kerja
)
}
}),
_vm._v(" "),
_c("td", {
domProps: {
textContent: _vm._s(
_vm.posisi.find(function(x) {
return x.id_posisi == dk.id_posisi
}).nama_posisi
)
}
}),
_vm._v(" "),
_c("td", {
domProps: {
textContent: _vm._s(dk.tahun_masuk)
}
}),
_vm._v(" "),
_c("td", {
domProps: {
textContent: _vm._s(dk.tahun_keluar)
}
})
])
: _vm._e(),
_vm._v(" "),
_vm.isEditKepegawaian
? _c("tr", [
_c("td", [
_c("div", { staticClass: "form-group" }, [
_c(
"select",
{
directives: [
{
name: "model",
rawName: "v-model",
value: dk.id_unit_kerja,
expression: "dk.id_unit_kerja"
}
],
staticClass: "form-control",
on: {
change: function($event) {
var $$selectedVal = Array.prototype.filter
.call(
$event.target.options,
function(o) {
return o.selected
}
)
.map(function(o) {
var val =
"_value" in o
? o._value
: o.value
return val
})
_vm.$set(
dk,
"id_unit_kerja",
$event.target.multiple
? $$selectedVal
: $$selectedVal[0]
)
}
}
},
_vm._l(_vm.unitKerja, function(uk) {
return _c(
"option",
{
domProps: { value: uk.id_unit_kerja }
},
[
_vm._v(
"\n " +
_vm._s(uk.nama_unit_kerja) +
"\n "
)
]
)
})
),
_vm._v(" "),
_c(
"small",
{ staticClass: "form-text text-muted" },
[_vm._v("*Wajib diisi")]
)
])
]),
_vm._v(" "),
_c("td", [
_c("div", { staticClass: "form-group" }, [
_c(
"select",
{
directives: [
{
name: "model",
rawName: "v-model",
value: dk.id_posisi,
expression: "dk.id_posisi"
}
],
staticClass: "form-control",
on: {
change: function($event) {
var $$selectedVal = Array.prototype.filter
.call(
$event.target.options,
function(o) {
return o.selected
}
)
.map(function(o) {
var val =
"_value" in o
? o._value
: o.value
return val
})
_vm.$set(
dk,
"id_posisi",
$event.target.multiple
? $$selectedVal
: $$selectedVal[0]
)
}
}
},
_vm._l(_vm.posisi, function(pos) {
return _c(
"option",
{ domProps: { value: pos.id_posisi } },
[
_vm._v(
"\n " +
_vm._s(pos.nama_posisi) +
"\n "
)
]
)
})
),
_vm._v(" "),
_c(
"small",
{ staticClass: "form-text text-muted" },
[_vm._v("*Wajib diisi")]
)
])
]),
_vm._v(" "),
_c("td", [
_c("div", { staticClass: "form-group" }, [
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: dk.tahun_masuk,
expression: "dk.tahun_masuk"
}
],
staticClass: "form-control text-center",
attrs: { type: "text" },
domProps: { value: dk.tahun_masuk },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
dk,
"tahun_masuk",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c(
"small",
{ staticClass: "form-text text-muted" },
[_vm._v("*Wajib diisi")]
)
])
]),
_vm._v(" "),
_c("td", [
_c("div", { staticClass: "form-group" }, [
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: dk.tahun_keluar,
expression: "dk.tahun_keluar"
}
],
staticClass: "form-control text-center",
attrs: { type: "text" },
domProps: { value: dk.tahun_keluar },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
dk,
"tahun_keluar",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c(
"small",
{ staticClass: "form-text text-muted" },
[
_vm._v(
'*Isi dengan "-" jika belum selesai'
)
]
)
])
]),
_vm._v(" "),
_c("td", [
_c(
"button",
{
staticClass: "btn btn-danger",
attrs: {
id: _vm.dataKepegawaian.indexOf(dk),
type: "button"
},
on: {
click: function($event) {
_vm.delDataKepegawaian($event)
}
}
},
[
_vm._v(
"\n Hapus "
),
_c("i", { staticClass: "fas fa-trash-alt" })
]
)
])
])
: _vm._e()
])
}),
_vm._v(" "),
_vm.isEditKepegawaian
? _c(
"button",
{
staticClass: "btn btn-primary float-sm-left",
on: { click: _vm.addDataKepegawaian }
},
[
_vm._v("\n Tambah "),
_c("i", { staticClass: "fas fa-plus" })
]
)
: _vm._e()
],
2
)
])
: _vm._e(),
_vm._v(" "),
_c("br")
])
]),
_vm._v(" "),
_vm.isEditKepegawaian
? _c("div", { staticClass: "card-footer text-muted" }, [
_c(
"a",
{
staticClass: "btn btn-success float-sm-right btn-simpan",
attrs: { href: "#data-kepegawaian" },
on: { click: _vm.saveDataKepegawaian }
},
[
_vm._v("\n Simpan "),
_c("i", { staticClass: "fas fa-check" })
]
),
_vm._v(" "),
_c(
"a",
{
staticClass: "btn btn-danger float-sm-right",
attrs: { href: "#data-kepegawaian" },
on: { click: _vm.cancelDataKepegawaian }
},
[
_vm._v("\n Batal "),
_c("i", { staticClass: "fas fa-times" })
]
)
])
: _vm._e()
]),
_vm._v(" "),
_c("br"),
_vm._v(" "),
_c("div", { staticClass: "card", attrs: { id: "riwayat-pegawai" } }, [
_c("div", { staticClass: "card-header" }, [
_vm._v("\n Riwayat Pendidikan dan Pekerjaan\n ")
]),
_vm._v(" "),
_c("div", { staticClass: "card-body" }, [
_c("div", { staticClass: "container" }, [
_c("h5", [_vm._v("Riwayat Pendidikan")]),
_vm._v(" "),
_vm.riwayatPendidikan.length === 0
? _c("div", { staticClass: "no-riwayat-pendidikan" }, [
!_vm.isEditRiwayat
? _c("div", [
_c("hr"),
_vm._v(
"\n Belum ditambahkan.\n "
),
_c("br")
])
: _vm._e(),
_vm._v(" "),
_vm.isEditRiwayat
? _c(
"button",
{
staticClass: "btn btn-primary float-sm-left",
on: { click: _vm.addRiwayatPendidikan }
},
[
_vm._v("\n Tambah "),
_c("i", { staticClass: "fas fa-plus" })
]
)
: _vm._e()
])
: _vm._e(),
_vm._v(" "),
_vm.riwayatPendidikan.length !== 0
? _c("div", { staticClass: "riwayat-pendidikan" }, [
_c(
"table",
{ staticClass: "table" },
[
_vm._m(1),
_vm._v(" "),
_vm._l(_vm.riwayatPendidikan, function(rp) {
return _c("tbody", [
!_vm.isEditRiwayat
? _c("tr", [
_c("td", {
domProps: { textContent: _vm._s(rp.strata) }
}),
_vm._v(" "),
_c("td", {
domProps: {
textContent: _vm._s(rp.nama_institusi)
}
}),
_vm._v(" "),
_c("td", {
domProps: { textContent: _vm._s(rp.jurusan) }
}),
_vm._v(" "),
_c("td", {
domProps: {
textContent: _vm._s(rp.tahun_masuk)
}
}),
_vm._v(" "),
_c("td", {
domProps: {
textContent: _vm._s(rp.tahun_keluar)
}
})
])
: _vm._e(),
_vm._v(" "),
_vm.isEditRiwayat
? _c("tr", [
_c("td", [
_c("div", { staticClass: "form-group" }, [
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: rp.strata,
expression: "rp.strata"
}
],
staticClass: "form-control text-center",
attrs: { type: "text" },
domProps: { value: rp.strata },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
rp,
"strata",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c(
"small",
{ staticClass: "form-text text-muted" },
[_vm._v("*Wajib diisi")]
)
])
]),
_vm._v(" "),
_c("td", [
_c("div", { staticClass: "form-group" }, [
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: rp.nama_institusi,
expression: "rp.nama_institusi"
}
],
staticClass: "form-control text-center",
attrs: { type: "text" },
domProps: { value: rp.nama_institusi },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
rp,
"nama_institusi",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c(
"small",
{ staticClass: "form-text text-muted" },
[_vm._v("*Wajib diisi")]
)
])
]),
_vm._v(" "),
_c("td", [
_c("div", { staticClass: "form-group" }, [
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: rp.jurusan,
expression: "rp.jurusan"
}
],
staticClass: "form-control text-center",
attrs: { type: "text" },
domProps: { value: rp.jurusan },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
rp,
"jurusan",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c(
"small",
{ staticClass: "form-text text-muted" },
[_vm._v("*Wajib diisi")]
)
])
]),
_vm._v(" "),
_c("td", [
_c("div", { staticClass: "form-group" }, [
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: rp.tahun_masuk,
expression: "rp.tahun_masuk"
}
],
staticClass: "form-control text-center",
attrs: { type: "text" },
domProps: { value: rp.tahun_masuk },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
rp,
"tahun_masuk",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c(
"small",
{ staticClass: "form-text text-muted" },
[_vm._v("*Wajib diisi")]
)
])
]),
_vm._v(" "),
_c("td", [
_c("div", { staticClass: "form-group" }, [
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: rp.tahun_keluar,
expression: "rp.tahun_keluar"
}
],
staticClass: "form-control text-center",
attrs: { type: "text" },
domProps: { value: rp.tahun_keluar },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
rp,
"tahun_keluar",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c(
"small",
{ staticClass: "form-text text-muted" },
[
_vm._v(
'*Isi dengan "-" jika belum selesai'
)
]
)
])
]),
_vm._v(" "),
_c("td", [
_c(
"button",
{
staticClass: "btn btn-danger",
attrs: {
id: _vm.riwayatPendidikan.indexOf(rp),
type: "button"
},
on: {
click: function($event) {
_vm.delRiwayatPendidikan($event)
}
}
},
[
_vm._v(
"\n Hapus "
),
_c("i", { staticClass: "fas fa-trash-alt" })
]
)
])
])
: _vm._e()
])
}),
_vm._v(" "),
_vm.isEditRiwayat
? _c(
"button",
{
staticClass: "btn btn-primary float-sm-left",
on: { click: _vm.addRiwayatPendidikan }
},
[
_vm._v("\n Tambah "),
_c("i", { staticClass: "fas fa-plus" })
]
)
: _vm._e()
],
2
)
])
: _vm._e(),
_vm._v(" "),
_c("br"),
_c("br"),
_vm._v(" "),
_c("h5", [_vm._v("Riwayat Pekerjaan (di luar ITB)")]),
_vm._v(" "),
_vm.riwayatPekerjaan.length === 0
? _c("div", { staticClass: "no-riwayat-pekerjaan" }, [
!_vm.isEditRiwayat
? _c("div", [
_c("hr"),
_vm._v(
"\n Belum ditambahkan.\n "
),
_c("br")
])
: _vm._e(),
_vm._v(" "),
_vm.isEditRiwayat
? _c(
"button",
{
staticClass: "btn btn-primary float-sm-left",
on: { click: _vm.addRiwayatPekerjaan }
},
[
_vm._v("\n Tambah "),
_c("i", { staticClass: "fas fa-plus" })
]
)
: _vm._e()
])
: _vm._e(),
_vm._v(" "),
_vm.riwayatPekerjaan.length !== 0
? _c("div", { staticClass: "riwayat-pekerjaan" }, [
_c(
"table",
{ staticClass: "table" },
[
_vm._m(2),
_vm._v(" "),
_vm._l(_vm.riwayatPekerjaan, function(rp) {
return _c("tbody", [
!_vm.isEditRiwayat
? _c("tr", [
_c("td", {
domProps: {
textContent: _vm._s(rp.nama_institusi)
}
}),
_vm._v(" "),
_c("td", {
domProps: { textContent: _vm._s(rp.posisi) }
}),
_vm._v(" "),
_c("td", {
domProps: {
textContent: _vm._s(rp.tahun_masuk)
}
}),
_vm._v(" "),
_c("td", {
domProps: {
textContent: _vm._s(rp.tahun_keluar)
}
})
])
: _vm._e(),
_vm._v(" "),
_vm.isEditRiwayat
? _c("tr", [
_c("td", [
_c("div", { staticClass: "form-group" }, [
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: rp.nama_institusi,
expression: "rp.nama_institusi"
}
],
staticClass: "form-control text-center",
attrs: { type: "text" },
domProps: { value: rp.nama_institusi },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
rp,
"nama_institusi",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c(
"small",
{ staticClass: "form-text text-muted" },
[_vm._v("*Wajib diisi")]
)
])
]),
_vm._v(" "),
_c("td", [
_c("div", { staticClass: "form-group" }, [
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: rp.posisi,
expression: "rp.posisi"
}
],
staticClass: "form-control text-center",
attrs: { type: "text" },
domProps: { value: rp.posisi },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
rp,
"posisi",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c(
"small",
{ staticClass: "form-text text-muted" },
[_vm._v("*Wajib diisi")]
)
])
]),
_vm._v(" "),
_c("td", [
_c("div", { staticClass: "form-group" }, [
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: rp.tahun_masuk,
expression: "rp.tahun_masuk"
}
],
staticClass: "form-control text-center",
attrs: { type: "text" },
domProps: { value: rp.tahun_masuk },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
rp,
"tahun_masuk",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c(
"small",
{ staticClass: "form-text text-muted" },
[_vm._v("*Wajib diisi")]
)
])
]),
_vm._v(" "),
_c("td", [
_c("div", { staticClass: "form-group" }, [
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: rp.tahun_keluar,
expression: "rp.tahun_keluar"
}
],
staticClass: "form-control text-center",
attrs: { type: "text" },
domProps: { value: rp.tahun_keluar },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
rp,
"tahun_keluar",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c(
"small",
{ staticClass: "form-text text-muted" },
[
_vm._v(
'*Isi dengan "-" jika belum selesai'
)
]
)
])
]),
_vm._v(" "),
_c("td", [
_c(
"button",
{
staticClass: "btn btn-danger",
attrs: {
id: _vm.riwayatPekerjaan.indexOf(rp),
type: "button"
},
on: {
click: function($event) {
_vm.delRiwayatPekerjaan($event)
}
}
},
[
_vm._v(
"\n Hapus "
),
_c("i", { staticClass: "fas fa-trash-alt" })
]
)
])
])
: _vm._e()
])
}),
_vm._v(" "),
_vm.isEditRiwayat
? _c(
"button",
{
staticClass: "btn btn-primary float-sm-left",
on: { click: _vm.addRiwayatPekerjaan }
},
[
_vm._v("\n Tambah "),
_c("i", { staticClass: "fas fa-plus" })
]
)
: _vm._e()
],
2
)
])
: _vm._e()
])
]),
_vm._v(" "),
_vm.isEditRiwayat
? _c("div", { staticClass: "card-footer text-muted" }, [
_c(
"a",
{
staticClass: "btn btn-success float-sm-right btn-simpan",
attrs: { href: "#riwayat-pegawai" },
on: { click: _vm.saveRiwayatPegawai }
},
[
_vm._v("\n Simpan "),
_c("i", { staticClass: "fas fa-check" })
]
),
_vm._v(" "),
_c(
"a",
{
staticClass: "btn btn-danger float-sm-right",
attrs: { href: "#riwayat-pegawai" },
on: { click: _vm.cancelRiwayatPegawai }
},
[
_vm._v("\n Batal "),
_c("i", { staticClass: "fas fa-times" })
]
)
])
: _vm._e()
]),
_vm._v(" "),
_c("br"),
_vm._v(" "),
_c("div", { staticClass: "card", attrs: { id: "sertificate" } }, [
_c("div", { staticClass: "card-header" }, [
_vm._v("\n Sertifikat"),
_c(
"button",
{
staticClass: "btn btn-primary float-sm-right",
attrs: { disabled: _vm.disableEdit },
on: { click: _vm.editSertifikat }
},
[
_vm._v("\n Edit "),
_c("i", { staticClass: "fas fa-edit" })
]
)
]),
_vm._v(" "),
_c("div", { staticClass: "card-body" }, [
_c("div", { staticClass: "container" }, [
_vm.sertifikat.length === 0
? _c("div", { staticClass: "no-sertificate" }, [
!_vm.isEditSertifikat
? _c("div", [
_vm._v(
"\n Belum ditambahkan.\n "
),
_c("br")
])
: _vm._e(),
_vm._v(" "),
_vm.isEditSertifikat
? _c(
"button",
{
staticClass: "btn btn-primary float-sm-left",
on: { click: _vm.addSertifikat }
},
[
_vm._v("\n Tambah "),
_c("i", { staticClass: "fas fa-plus" })
]
)
: _vm._e()
])
: _vm._e(),
_vm._v(" "),
_vm.sertifikat.length !== 0
? _c("div", { staticClass: "sertificate" }, [
_c(
"table",
{
staticClass: "table",
staticStyle: { width: "100%" },
attrs: { align: "left" }
},
[
_vm._l(_vm.sertifikat, function(dk) {
return _c("tbody", [
!_vm.isEditSertifikat
? _c("div", [
_vm._m(3, true),
_vm._v(" "),
_c("tr", [
_c("td", { attrs: { rowspan: "4" } }, [
_c("img", {
staticClass: "img-thumbnail",
attrs: {
id: "img-sertifikat-1",
src: dk.nama_file,
width: "200"
}
})
]),
_vm._v(" "),
_c("th", { attrs: { scope: "col" } }, [
_vm._v("Judul")
]),
_vm._v(" "),
_c("td", {
domProps: { textContent: _vm._s(dk.judul) }
})
]),
_vm._v(" "),
_c("tr", [
_c("th", { attrs: { scope: "col" } }, [
_vm._v("Lembaga")
]),
_vm._v(" "),
_c("td", {
domProps: { textContent: _vm._s(dk.lembaga) }
})
]),
_vm._v(" "),
_c("tr", [
_c("th", { attrs: { scope: "col" } }, [
_vm._v("Tahun Diterbitkan")
]),
_vm._v(" "),
_c("td", {
domProps: {
textContent: _vm._s(dk.tahun_diterbitkan)
}
})
]),
_vm._v(" "),
_c("tr", [
_c("th", { attrs: { scope: "col" } }, [
_vm._v("Catatan")
]),
_vm._v(" "),
_c("td", {
domProps: { textContent: _vm._s(dk.catatan) }
})
])
])
: _vm._e(),
_vm._v(" "),
_vm.isEditSertifikat
? _c("div", [
_c("tr", [
_c("td", { attrs: { rowspan: "4" } }, [
_c("div", [
_c(
"button",
{
staticClass: "btn btn-danger",
attrs: {
id: _vm.sertifikat.indexOf(dk),
type: "button"
},
on: {
click: function($event) {
_vm.delSertifikat($event)
}
}
},
[
_vm._v(
"\n Hapus "
),
_c("i", {
staticClass: "fas fa-trash-alt"
})
]
)
])
]),
_vm._v(" "),
_c("td", { attrs: { rowspan: "4" } }, [
_c("img", {
staticClass: "img-thumbnail",
attrs: {
id: "img-sertifikat-1",
src: dk.nama_file,
width: "200"
}
}),
_vm._v(" "),
_c("br"),
_c("br"),
_vm._v(" "),
_c("input", {
staticClass: "form-control",
attrs: {
type: "file",
id: _vm.sertifikat.indexOf(dk)
},
on: { change: _vm.FileChangeSertifikat }
})
]),
_vm._v(" "),
_c("th", { attrs: { scope: "col" } }, [
_vm._v("Judul")
]),
_vm._v(" "),
_c("td", [
_c("div", { staticClass: "form-group" }, [
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: dk.judul,
expression: "dk.judul"
}
],
staticClass: "form-control",
attrs: { type: "text" },
domProps: { value: dk.judul },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
dk,
"judul",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c(
"small",
{ staticClass: "form-text text-muted" },
[_vm._v("*Wajib diisi")]
)
])
])
]),
_vm._v(" "),
_c("tr", [
_c("th", { attrs: { scope: "col" } }, [
_vm._v("Lembaga")
]),
_vm._v(" "),
_c("td", [
_c("div", { staticClass: "form-group" }, [
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: dk.lembaga,
expression: "dk.lembaga"
}
],
staticClass: "form-control",
attrs: { type: "text" },
domProps: { value: dk.lembaga },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
dk,
"lembaga",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c(
"small",
{ staticClass: "form-text text-muted" },
[_vm._v("*Wajib diisi")]
)
])
])
]),
_vm._v(" "),
_c("tr", [
_c("th", { attrs: { scope: "col" } }, [
_vm._v("Tahun Diterbitkan")
]),
_vm._v(" "),
_c("td", [
_c("div", { staticClass: "form-group" }, [
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: dk.tahun_diterbitkan,
expression: "dk.tahun_diterbitkan"
}
],
staticClass: "form-control",
attrs: { type: "text" },
domProps: { value: dk.tahun_diterbitkan },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
dk,
"tahun_diterbitkan",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c(
"small",
{ staticClass: "form-text text-muted" },
[_vm._v("*Wajib diisi")]
)
])
])
]),
_vm._v(" "),
_c("tr", [
_c("th", { attrs: { scope: "col" } }, [
_vm._v("Catatan")
]),
_vm._v(" "),
_c("td", [
_c("div", { staticClass: "form-group" }, [
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: dk.catatan,
expression: "dk.catatan"
}
],
staticClass: "form-control",
attrs: { type: "text" },
domProps: { value: dk.catatan },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
dk,
"catatan",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c(
"small",
{ staticClass: "form-text text-muted" },
[_vm._v("*Wajib diisi")]
)
])
])
])
])
: _vm._e()
])
}),
_vm._v(" "),
_vm.isEditSertifikat
? _c(
"button",
{
staticClass: "btn btn-primary float-sm-left",
on: { click: _vm.addSertifikat }
},
[
_vm._v("\n Tambah "),
_c("i", { staticClass: "fas fa-plus" })
]
)
: _vm._e()
],
2
)
])
: _vm._e()
])
]),
_vm._v(" "),
_vm.isEditSertifikat
? _c("div", { staticClass: "card-footer text-muted" }, [
_c(
"a",
{
staticClass: "btn btn-success float-sm-right btn-simpan",
attrs: { href: "#sertificate" },
on: { click: _vm.saveSertifikat }
},
[
_vm._v("\n Simpan "),
_c("i", { staticClass: "fas fa-check" })
]
),
_vm._v(" "),
_c(
"a",
{
staticClass: "btn btn-danger float-sm-right",
attrs: { href: "#sertificate" },
on: { click: _vm.cancelSertifikat }
},
[
_vm._v("\n Batal "),
_c("i", { staticClass: "fas fa-times" })
]
)
])
: _vm._e()
]),
_vm._v(" "),
_c("br"),
_vm._v(" "),
_c("div", { staticClass: "card", attrs: { id: "data-kinerja" } }, [
_c("div", { staticClass: "card-header" }, [
_vm._v("\n Hasil Kinerja"),
_c(
"button",
{
staticClass: "btn btn-primary float-sm-right",
attrs: { disabled: _vm.disableEdit },
on: { click: _vm.editDataKinerja }
},
[
_vm._v("\n Edit "),
_c("i", { staticClass: "fas fa-edit" })
]
)
]),
_vm._v(" "),
_c("div", { staticClass: "card-body" }, [
_c("div", { staticClass: "container" }, [
_vm.dataKinerja.length === 0
? _c("div", { staticClass: "no-data-kinerja" }, [
!_vm.isEditDataKinerja
? _c("div", [
_vm._v(
"\n Belum ditambahkan.\n "
),
_c("br")
])
: _vm._e(),
_vm._v(" "),
_vm.isEditDataKinerja
? _c(
"button",
{
staticClass: "btn btn-primary float-sm-left",
on: { click: _vm.addDataKinerja }
},
[
_vm._v("\n Tambah "),
_c("i", { staticClass: "fas fa-plus" })
]
)
: _vm._e()
])
: _vm._e(),
_vm._v(" "),
_vm.dataKinerja.length !== 0
? _c("div", { staticClass: "data-kinerja" }, [
_c("table", { staticClass: "table" }, [
_vm._m(4),
_vm._v(" "),
_c(
"tbody",
[
_vm._l(_vm.dataKinerjaShow, function(dks) {
return !_vm.isEditDataKinerja
? _c("tr", [
_c("td", {
domProps: { textContent: _vm._s(dks.tahun) }
}),
_vm._v(" "),
_c("td", {
domProps: { textContent: _vm._s(dks.semester) }
}),
_vm._v(" "),
_c("td", {
domProps: { textContent: _vm._s(dks.nilai) }
}),
_vm._v(" "),
_c("td", {
domProps: { textContent: _vm._s(dks.catatan) }
})
])
: _vm._e()
}),
_vm._v(" "),
_vm._l(_vm.dataKinerja, function(dk) {
return _vm.isEditDataKinerja
? _c("tr", [
_c("td", [
_c("div", { staticClass: "form-group" }, [
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: dk.tahun,
expression: "dk.tahun"
}
],
staticClass: "form-control text-center",
attrs: { type: "text" },
domProps: { value: dk.tahun },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
dk,
"tahun",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c(
"small",
{ staticClass: "form-text text-muted" },
[_vm._v("*Wajib diisi")]
)
])
]),
_vm._v(" "),
_c("td", [
_c("div", { staticClass: "form-group" }, [
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: dk.semester,
expression: "dk.semester"
}
],
staticClass: "form-control text-center",
attrs: { type: "text" },
domProps: { value: dk.semester },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
dk,
"semester",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c(
"small",
{ staticClass: "form-text text-muted" },
[_vm._v("*Wajib diisi")]
)
])
]),
_vm._v(" "),
_c("td", [
_c("div", { staticClass: "form-group" }, [
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: dk.nilai,
expression: "dk.nilai"
}
],
staticClass: "form-control text-center",
attrs: { type: "text" },
domProps: { value: dk.nilai },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
dk,
"nilai",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c(
"small",
{ staticClass: "form-text text-muted" },
[_vm._v("*Wajib diisi")]
)
])
]),
_vm._v(" "),
_c("td", [
_c("div", { staticClass: "form-group" }, [
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: dk.catatan,
expression: "dk.catatan"
}
],
staticClass: "form-control text-center",
attrs: { type: "text" },
domProps: { value: dk.catatan },
on: {
input: function($event) {
if ($event.target.composing) {
return
}
_vm.$set(
dk,
"catatan",
$event.target.value
)
}
}
}),
_vm._v(" "),
_c(
"small",
{ staticClass: "form-text text-muted" },
[_vm._v("*Wajib diisi")]
)
])
]),
_vm._v(" "),
_c("td", [
_c(
"button",
{
staticClass: "btn btn-danger",
attrs: {
id: _vm.dataKinerja.indexOf(dk),
type: "button"
},
on: {
click: function($event) {
_vm.delDataKinerja($event)
}
}
},
[
_vm._v(
"\n Hapus "
),
_c("i", { staticClass: "fas fa-trash-alt" })
]
)
])
])
: _vm._e()
})
],
2
),
_vm._v(" "),
!_vm.isEditDataKinerja && !_vm.isShowAllDataKinerja
? _c(
"a",
{
staticClass: "btn btn-primary float-sm-left",
attrs: { href: "#data-kinerja" },
on: { click: _vm.showAllDataKinerja }
},
[
_vm._v(
"\n Tamplikan semua "
),
_c("i", { staticClass: "fas fa-eye" })
]
)
: _vm._e(),
_vm._v(" "),
!_vm.isEditDataKinerja && _vm.isShowAllDataKinerja
? _c(
"a",
{
staticClass: "btn btn-danger float-sm-left",
attrs: { href: "#data-kinerja" },
on: { click: _vm.hideDataKinerja }
},
[
_vm._v(
"\n Sembunyikan sebagian "
),
_c("i", { staticClass: "fas fa-eye-slash" })
]
)
: _vm._e(),
_vm._v(" "),
_vm.isEditDataKinerja
? _c(
"button",
{
staticClass: "btn btn-primary float-sm-left",
on: { click: _vm.addDataKinerja }
},
[
_vm._v("\n Tambah "),
_c("i", { staticClass: "fas fa-plus" })
]
)
: _vm._e()
])
])
: _vm._e()
])
]),
_vm._v(" "),
_vm.isEditDataKinerja
? _c("div", { staticClass: "card-footer text-muted" }, [
_c(
"a",
{
staticClass: "btn btn-success float-sm-right btn-simpan",
attrs: { href: "#data-kinerja" },
on: { click: _vm.saveDataKinerja }
},
[
_vm._v("\n Simpan "),
_c("i", { staticClass: "fas fa-check" })
]
),
_vm._v(" "),
_c(
"a",
{
staticClass: "btn btn-danger float-sm-right",
attrs: { href: "#data-kinerja" },
on: { click: _vm.cancelDataKinerja }
},
[
_vm._v("\n Batal "),
_c("i", { staticClass: "fas fa-times" })
]
)
])
: _vm._e()
]),
_vm._v(" "),
_c("br"),
_vm._v(" "),
_c("div", { staticClass: "card", attrs: { id: "data-kompetensi" } }, [
_c("div", { staticClass: "card-header" }, [
_vm._v("\n Hasil Kompetensi"),
_c(
"button",
{
staticClass: "btn btn-primary float-sm-right",
attrs: { disabled: _vm.disableEdit },
on: { click: _vm.editKommpetensi }
},
[
_vm._v("\n Edit "),
_c("i", { staticClass: "fas fa-edit" })
]
)
]),
_vm._v(" "),
_c("div", { staticClass: "card-body" }, [
_c("div", { staticClass: "container" }, [
_c(
"button",
{
staticClass: "btn btn-primary float-sm-left",
attrs: { disabled: _vm.disableEdit },
on: { click: _vm.downloadKompetensi }
},
[
_vm._v("\n Download "),
_c("i", { staticClass: "fas fa-download" })
]
)
])
])
]),
_vm._v(" "),
_c("br"),
_vm._v(" "),
_c("div", { staticClass: "card", attrs: { id: "rekomendasi" } }, [
_c("div", { staticClass: "card-header" }, [
_vm._v("\n Rekomendasi"),
_c(
"button",
{
staticClass: "btn btn-primary float-sm-right",
attrs: { disabled: _vm.disableEdit },
on: { click: _vm.editRekomendasi }
},
[
_vm._v("\n Edit "),
_c("i", { staticClass: "fas fa-edit" })
]
)
]),
_vm._v(" "),
_c("div", { staticClass: "card-body" }, [
_c(
"div",
{ staticClass: "container" },
[
_c("h5", [_vm._v("Rekomendasi Training")]),
_vm._v(" "),
_c("hr"),
_vm._v(" "),
_vm.rekomendasiTraining.length === 0
? _c("div", { staticClass: "no-rekomendasi-posisi" }, [
!_vm.isEditRekomendasi
? _c("div", [
_vm._v(
"\n Belum ditambahkan.\n "
),
_c("br")
])
: _vm._e(),
_vm._v(" "),
_vm.isEditRekomendasi
? _c(
"button",
{
staticClass: "btn btn-primary float-sm-left",
on: { click: _vm.addRekomendasiTraining }
},
[
_vm._v("\n Tambah "),
_c("i", { staticClass: "fas fa-plus" })
]
)
: _vm._e()
])
: _vm._e(),
_vm._v(" "),
_vm._l(_vm.rekomendasiTraining, function(rt) {
return _vm.rekomendasiTraining.length !== 0
? _c("div", { staticClass: "rekomendasi-training" }, [
!_vm.isEditRekomendasi
? _c("ul", [
_c("li", {
domProps: {
textContent: _vm._s(
_vm.trainingList.find(function(x) {
return x.id_training == rt.id_training
}).nama_training
)
}
})
])
: _vm._e(),
_vm._v(" "),
_vm.isEditRekomendasi
? _c("div", { staticClass: "form-group row" }, [
_c("div", { staticClass: "col-sm-10" }, [
_c(
"select",
{
directives: [
{
name: "model",
rawName: "v-model",
value: rt.id_training,
expression: "rt.id_training"
}
],
staticClass: "form-control",
on: {
change: function($event) {
var $$selectedVal = Array.prototype.filter
.call($event.target.options, function(o) {
return o.selected
})
.map(function(o) {
var val =
"_value" in o ? o._value : o.value
return val
})
_vm.$set(
rt,
"id_training",
$event.target.multiple
? $$selectedVal
: $$selectedVal[0]
)
}
}
},
_vm._l(_vm.trainingList, function(tl) {
return _c(
"option",
{ domProps: { value: tl.id_training } },
[
_vm._v(
"\n " +
_vm._s(tl.nama_training) +
"\n "
)
]
)
})
),
_vm._v(" "),
_c(
"small",
{ staticClass: "form-text text-muted" },
[_vm._v("*Wajib diisi")]
)
]),
_vm._v(" "),
_c("div", { staticClass: "col-sm-1" }, [
_c(
"button",
{
staticClass: "btn btn-danger",
attrs: {
id: _vm.rekomendasiTraining.indexOf(rt),
type: "button"
},
on: {
click: function($event) {
_vm.delRekomendasiTraining($event)
}
}
},
[
_vm._v(
"\n Hapus "
),
_c("i", { staticClass: "fas fa-trash-alt" })
]
)
])
])
: _vm._e()
])
: _vm._e()
}),
_vm._v(" "),
_vm.isEditRekomendasi && _vm.rekomendasiTraining.length !== 0
? _c(
"button",
{
staticClass: "btn btn-primary float-sm-left",
on: { click: _vm.addRekomendasiTraining }
},
[
_vm._v("\n Tambah "),
_c("i", { staticClass: "fas fa-plus" })
]
)
: _vm._e(),
_vm._v(" "),
_c("br"),
_c("br"),
_c("br"),
_vm._v(" "),
_c("h5", [_vm._v("Rekomendasi Lain-lain")]),
_vm._v(" "),
_vm.rekomendasiPosisi.length === 0
? _c("div", { staticClass: "no-rekomendasi-posisi" }, [
!_vm.isEditRekomendasi
? _c("div", [
_c("hr"),
_vm._v(
"\n Belum ditambahkan.\n "
),
_c("br")
])
: _vm._e(),
_vm._v(" "),
_vm.isEditRekomendasi
? _c(
"button",
{
staticClass: "btn btn-primary float-sm-left",
on: { click: _vm.addRekomendasiPosisi }
},
[
_vm._v("\n Tambah "),
_c("i", { staticClass: "fas fa-plus" })
]
)
: _vm._e()
])
: _vm._e(),
_vm._v(" "),
_vm.rekomendasiPosisi.length !== 0
? _c("div", { staticClass: "rekomendasi-posisi" }, [
_c(
"table",
{ staticClass: "table" },
[
_vm._m(5),
_vm._v(" "),
_vm._l(_vm.rekomendasiPosisi, function(rp) {
return _c("tbody", [
!_vm.isEditRekomendasi
? _c("tr", [
_c("td", {
domProps: {
textContent: _vm._s(
_vm.unitKerja.find(function(x) {
return (
x.id_unit_kerja == rp.id_unit_kerja
)
}).nama_unit_kerja
)
}
}),
_vm._v(" "),
_c("td", {
domProps: {
textContent: _vm._s(
_vm.posisi.find(function(x) {
return x.id_posisi == rp.id_posisi
}).nama_posisi
)
}
})
])
: _vm._e(),
_vm._v(" "),
_vm.isEditRekomendasi
? _c("tr", [
_c("td", [
_c("div", { staticClass: "form-group" }, [
_c(
"select",
{
directives: [
{
name: "model",
rawName: "v-model",
value: rp.id_unit_kerja,
expression: "rp.id_unit_kerja"
}
],
staticClass: "form-control",
on: {
change: function($event) {
var $$selectedVal = Array.prototype.filter
.call(
$event.target.options,
function(o) {
return o.selected
}
)
.map(function(o) {
var val =
"_value" in o
? o._value
: o.value
return val
})
_vm.$set(
rp,
"id_unit_kerja",
$event.target.multiple
? $$selectedVal
: $$selectedVal[0]
)
}
}
},
_vm._l(_vm.unitKerja, function(uk) {
return _c(
"option",
{
domProps: {
value: uk.id_unit_kerja
}
},
[
_vm._v(
"\n " +
_vm._s(uk.nama_unit_kerja) +
"\n "
)
]
)
})
),
_vm._v(" "),
_c(
"small",
{ staticClass: "form-text text-muted" },
[_vm._v("*Wajib diisi")]
)
])
]),
_vm._v(" "),
_c("td", [
_c("div", { staticClass: "form-group" }, [
_c(
"select",
{
directives: [
{
name: "model",
rawName: "v-model",
value: rp.id_posisi,
expression: "rp.id_posisi"
}
],
staticClass: "form-control",
on: {
change: function($event) {
var $$selectedVal = Array.prototype.filter
.call(
$event.target.options,
function(o) {
return o.selected
}
)
.map(function(o) {
var val =
"_value" in o
? o._value
: o.value
return val
})
_vm.$set(
rp,
"id_posisi",
$event.target.multiple
? $$selectedVal
: $$selectedVal[0]
)
}
}
},
_vm._l(_vm.posisi, function(pos) {
return _c(
"option",
{
domProps: { value: pos.id_posisi }
},
[
_vm._v(
"\n " +
_vm._s(pos.nama_posisi) +
"\n "
)
]
)
})
),
_vm._v(" "),
_c(
"small",
{ staticClass: "form-text text-muted" },
[_vm._v("*Wajib diisi")]
)
])
]),
_vm._v(" "),
_c("td", [
_c(
"button",
{
staticClass: "btn btn-danger",
attrs: {
id: _vm.rekomendasiPosisi.indexOf(rp),
type: "button"
},
on: {
click: function($event) {
_vm.delRekomendasiPosisi($event)
}
}
},
[
_vm._v(
"\n Hapus "
),
_c("i", {
staticClass: "fas fa-trash-alt"
})
]
)
])
])
: _vm._e()
])
}),
_vm._v(" "),
_vm.isEditRekomendasi
? _c(
"button",
{
staticClass: "btn btn-primary float-sm-left",
on: { click: _vm.addRekomendasiPosisi }
},
[
_vm._v("\n Tambah "),
_c("i", { staticClass: "fas fa-plus" })
]
)
: _vm._e()
],
2
)
])
: _vm._e(),
_vm._v(" "),
_c("br")
],
2
)
]),
_vm._v(" "),
_vm.isEditRekomendasi
? _c("div", { staticClass: "card-footer text-muted" }, [
_c(
"a",
{
staticClass: "btn btn-success float-sm-right btn-simpan",
attrs: { href: "#rekomendasi" },
on: { click: _vm.saveRekomendasi }
},
[
_vm._v("\n Simpan "),
_c("i", { staticClass: "fas fa-check" })
]
),
_vm._v(" "),
_c(
"a",
{
staticClass: "btn btn-danger float-sm-right",
attrs: { href: "#rekomendasi" },
on: { click: _vm.cancelRekomendasi }
},
[
_vm._v("\n Batal "),
_c("i", { staticClass: "fas fa-times" })
]
)
])
: _vm._e()
])
])
}
var staticRenderFns = [
function() {
var _vm = this
var _h = _vm.$createElement
var _c = _vm._self._c || _h
return _c("thead", [
_c("tr", [
_c("th", { attrs: { scope: "col" } }, [_vm._v("Unit Kerja")]),
_vm._v(" "),
_c("th", { attrs: { scope: "col" } }, [_vm._v("Jabatan")]),
_vm._v(" "),
_c("th", { attrs: { scope: "col" } }, [_vm._v("Tahun Mulai")]),
_vm._v(" "),
_c("th", { attrs: { scope: "col" } }, [_vm._v("Tahun Selesai")])
])
])
},
function() {
var _vm = this
var _h = _vm.$createElement
var _c = _vm._self._c || _h
return _c("thead", [
_c("tr", [
_c("th", { attrs: { scope: "col" } }, [_vm._v("Tingkat Pendidikan")]),
_vm._v(" "),
_c("th", { attrs: { scope: "col" } }, [_vm._v("Nama Institusi")]),
_vm._v(" "),
_c("th", { attrs: { scope: "col" } }, [_vm._v("Jurusan")]),
_vm._v(" "),
_c("th", { attrs: { scope: "col" } }, [_vm._v("Tahun Masuk")]),
_vm._v(" "),
_c("th", { attrs: { scope: "col" } }, [_vm._v("Tahun Keluar")])
])
])
},
function() {
var _vm = this
var _h = _vm.$createElement
var _c = _vm._self._c || _h
return _c("thead", [
_c("tr", [
_c("th", { attrs: { scope: "col" } }, [_vm._v("Nama Institusi")]),
_vm._v(" "),
_c("th", { attrs: { scope: "col" } }, [_vm._v("Jabatan")]),
_vm._v(" "),
_c("th", { attrs: { scope: "col" } }, [_vm._v("Tahun Masuk")]),
_vm._v(" "),
_c("th", { attrs: { scope: "col" } }, [_vm._v("Tahun Keluar")])
])
])
},
function() {
var _vm = this
var _h = _vm.$createElement
var _c = _vm._self._c || _h
return _c("colgroup", [
_c("col", { attrs: { width: "35%" } }),
_vm._v(" "),
_c("col", { attrs: { width: "15%" } }),
_vm._v(" "),
_c("col", { attrs: { width: "50%" } })
])
},
function() {
var _vm = this
var _h = _vm.$createElement
var _c = _vm._self._c || _h
return _c("thead", [
_c("tr", [
_c("th", { attrs: { scope: "col" } }, [_vm._v("Tahun")]),
_vm._v(" "),
_c("th", { attrs: { scope: "col" } }, [_vm._v("Semester")]),
_vm._v(" "),
_c("th", { attrs: { scope: "col" } }, [_vm._v("Nilai")]),
_vm._v(" "),
_c("th", { attrs: { scope: "col" } }, [_vm._v("Catatan")])
])
])
},
function() {
var _vm = this
var _h = _vm.$createElement
var _c = _vm._self._c || _h
return _c("thead", [
_c("tr", [
_c("th", { attrs: { scope: "col" } }, [_vm._v("Unit Kerja")]),
_vm._v(" "),
_c("th", { attrs: { scope: "col" } }, [_vm._v("Jabatan")])
])
])
}
]
render._withStripped = true
module.exports = { render: render, staticRenderFns: staticRenderFns }
if (false) {
module.hot.accept()
if (module.hot.data) {
require("vue-hot-reload-api") .rerender("data-v-47f115bf", module.exports)
}
}
/***/ }),
/***/ 30: /***/ 30:
/***/ (function(module, exports, __webpack_require__) { /***/ (function(module, exports, __webpack_require__) {
   
File added
File added
File added
<template> <template>
<nav class="navbar navbar-expand-md bg-primary navbar-dark"> <nav class="navbar navbar-expand-md navbar-dark navbar-laravel">
<a class="navbar-brand font-weight-bold" href="#">UPT PMO</a> <a class="navbar-brand font-weight-bold" href="#">UPT PMO</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation"> <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span> <span class="navbar-toggler-icon"></span>
</button> </button>
<div class="collapse navbar-collapse text-center justify-content-end" id="navbar2SupportedContent"> <div class="collapse navbar-collapse text-center justify-content-end" id="navbar2SupportedContent">
<a class="btn navbar-btn btn-primary ml-2 text-white"> <a class="btn navbar-btn btn-secondary ml-2 text-black-50">
<span class="oi oi-person" title="user icon" aria-hidden="true"></span> <span class="oi oi-person" title="user icon" aria-hidden="true"></span>
{{ username }} {{ username }}
</a> </a>
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<div class="row"> <div class="row">
<div class="col-md-3 p-2"> <div class="col-md-3 p-2">
<button type="button" <button type="button"
class="btn btn-primary m-1" class="btn btn-success m-1"
@click="redirectAddUser">Tambah User</button> @click="redirectAddUser">Tambah User</button>
</div> </div>
</div> </div>
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
<div class="row"> <div class="row">
<div class="col-md-3 p-2"> <div class="col-md-3 p-2">
<button type="button" <button type="button"
class="btn btn-secondary m-1" class="btn btn-primary m-1"
data-toggle="modal" data-toggle="modal"
data-target="#addDataModal" data-target="#addDataModal"
v-if="!disableTambahDataButton"> v-if="!disableTambahDataButton">
...@@ -20,13 +20,13 @@ ...@@ -20,13 +20,13 @@
<div class="col-md-3 p-2"></div> <div class="col-md-3 p-2"></div>
<div class="col-md-3 p-2"> <div class="col-md-3 p-2">
<button type="button" <button type="button"
class="btn btn-primary float-md-right m-1" class="btn btn-success float-md-right m-1"
v-if="!disableDownloadDataButton" v-if="!disableDownloadDataButton"
@click="downloadData"> @click="downloadData">
Download Data Download Data
</button> </button>
<button type="button" <button type="button"
class="btn btn-secondary float-md-right m-1" class="btn btn-primary float-md-right m-1"
data-toggle="modal" data-toggle="modal"
data-target="#uploadModal" data-target="#uploadModal"
v-if="!disableUploadDataButton"> v-if="!disableUploadDataButton">
...@@ -192,7 +192,7 @@ ...@@ -192,7 +192,7 @@
this.disableTambahDataButton = payload.name === "dataPegawai"; this.disableTambahDataButton = payload.name === "dataPegawai";
this.disableUploadDataButton = payload.name === "dataPegawai" || payload.name === "dataTraining"; this.disableUploadDataButton = payload.name === "dataPegawai" || payload.name === "dataTraining";
this.disableDownloadDataButton = payload.name === "dataTraining"; this.disableDownloadDataButton = payload.name === "dataPegawai" || payload.name === "dataTraining";
}, },
saveData: function (payload) { saveData: function (payload) {
console.log(payload); console.log(payload);
......
<template> <template>
<nav class="navbar navbar-expand-md bg-primary navbar-dark"> <nav class="navbar navbar-expand-md navbar-dark navbar-laravel">
<a class="navbar-brand font-weight-bold" href="#">UPT PMO</a> <a class="navbar-brand font-weight-bold" href="#">UPT PMO</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation"> <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span> <span class="navbar-toggler-icon"></span>
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
</li> </li>
</ul> </ul>
<div class="collapse navbar-collapse text-center justify-content-end" id="navbar2SupportedContent"> <div class="collapse navbar-collapse text-center justify-content-end" id="navbar2SupportedContent">
<a href="/pages" class="btn navbar-btn btn-primary ml-2 text-white"> <a href="/pages" class="btn navbar-btn btn-secondary ml-2 text-white">
Kembali Kembali
</a> </a>
</div> </div>
......
...@@ -3,8 +3,7 @@ ...@@ -3,8 +3,7 @@
<div class="card" id="profil-pegawai"> <div class="card" id="profil-pegawai">
<div class="card-header"> <div class="card-header">
Profil Pegawai Profil Pegawai
<button class="btn btn-primary float-sm-right" v-on:click="editProfilPegawai" v-bind:disabled="disableEdit"> <button class="btn btn-primary float-sm-right" v-if="isGeneral" v-on:click="editProfilPegawai" v-bind:disabled="disableEdit"> Edit <i class="fas fa-edit"></i>
Edit <i class="fas fa-edit"></i>
</button> </button>
</div> </div>
...@@ -52,8 +51,7 @@ ...@@ -52,8 +51,7 @@
<small class="form-text text-muted">*Tanggal lahir. Wajib diisi</small> <small class="form-text text-muted">*Tanggal lahir. Wajib diisi</small>
</div> </div>
</div> </div>
</div> </div>
</div> </div>
...@@ -186,7 +184,7 @@ ...@@ -186,7 +184,7 @@
<div class="card" id="data-kepegawaian"> <div class="card" id="data-kepegawaian">
<div class="card-header"> <div class="card-header">
Data Kepegawaian Data Kepegawaian
<button class="btn btn-primary float-sm-right" v-on:click="editDataKepegawaian" v-bind:disabled="disableEdit"> <button class="btn btn-primary float-sm-right" v-if="isGeneral" v-on:click="editDataKepegawaian" v-bind:disabled="disableEdit">
Edit <i class="fas fa-edit"></i> Edit <i class="fas fa-edit"></i>
</button> </button>
</div> </div>
...@@ -299,7 +297,7 @@ ...@@ -299,7 +297,7 @@
<div class="card" id="riwayat-pegawai"> <div class="card" id="riwayat-pegawai">
<div class="card-header"> <div class="card-header">
Riwayat Pendidikan dan Pekerjaan<button class="btn btn-primary float-sm-right" v-on:click="editRiwayatPegawai" v-bind:disabled="disableEdit"> Riwayat Pendidikan dan Pekerjaan<button class="btn btn-primary float-sm-right" v-if="isGeneral" v-on:click="editRiwayatPegawai" v-bind:disabled="disableEdit">
Edit <i class="fas fa-edit"></i> Edit <i class="fas fa-edit"></i>
</button> </button>
</div> </div>
...@@ -699,7 +697,7 @@ ...@@ -699,7 +697,7 @@
<div class="card-body"> <div class="card-body">
<div class="container"> <div class="container">
<button class="btn btn-primary float-sm-left" v-on:click="downloadKompetensi" v-bind:disabled="disableEdit"> <button class="btn btn-success float-sm-left" v-on:click="downloadKompetensi" v-bind:disabled="disableEdit">
Download <i class="fas fa-download"></i> Download <i class="fas fa-download"></i>
</button> </button>
...@@ -851,7 +849,7 @@ ...@@ -851,7 +849,7 @@
<script> <script>
export default { export default {
props: ['id', 'unit-kerja', 'posisi', 'kelompok-kompetensi', 'data-kinerja-temp', 'rekomendasi-training-temp', 'training-list', 'rekomendasi-posisi-temp'], props: ['id_pmo', 'id', 'unit-kerja', 'posisi', 'kelompok-kompetensi', 'data-kinerja-temp', 'rekomendasi-training-temp', 'training-list', 'rekomendasi-posisi-temp'],
data() { data() {
return { return {
...@@ -874,6 +872,7 @@ ...@@ -874,6 +872,7 @@
riwayatPekerjaan: [], riwayatPekerjaan: [],
sertifikat: [], sertifikat: [],
isGeneral: false,
isShowAllDataKinerja: false, isShowAllDataKinerja: false,
disableEdit: false, disableEdit: false,
isEditProfile: false, isEditProfile: false,
...@@ -927,6 +926,9 @@ ...@@ -927,6 +926,9 @@
}, },
created() { created() {
this.isGeneral = this.id_pmo === "null" ? true : false;
console.log("ID-PMO: " + this.id_pmo + ": " + this.isGeneral);
//dataKinerja //dataKinerja
this.dataKinerja = this.dataKinerjaTemp; this.dataKinerja = this.dataKinerjaTemp;
...@@ -950,7 +952,7 @@ ...@@ -950,7 +952,7 @@
this.pegawai.tanggalLahir = responsePegawai["pegawai"]["tanggal_lahir"]; this.pegawai.tanggalLahir = responsePegawai["pegawai"]["tanggal_lahir"];
this.pegawai.email = responsePegawai["user"]["email"]; this.pegawai.email = responsePegawai["user"]["email"];
this.pegawai.nopeg = responsePegawai["pegawai"]["nip"]; this.pegawai.nopeg = responsePegawai["pegawai"]["nip"];
this.pegawai.imageProfileUrl = 'pimage/' + responsePegawai["pegawai"]["nip"] + '.' + responsePegawai["pegawai"]["ekstensi_foto"]; this.pegawai.imageProfileUrl = 'http://localhost:8000/pages/pimage/' + responsePegawai["pegawai"]["nip"] + '.' + responsePegawai["pegawai"]["ekstensi_foto"];
this.pegawai.kompetensi.id = responsePegawai["pegawai"]["id_kelompok_kompetensi"]; this.pegawai.kompetensi.id = responsePegawai["pegawai"]["id_kelompok_kompetensi"];
this.updateProfilPegawai(); this.updateProfilPegawai();
...@@ -1086,7 +1088,7 @@ ...@@ -1086,7 +1088,7 @@
updateSertifikat(){ updateSertifikat(){
for(var i = 0; i < this.sertifikat.length; i++){ for(var i = 0; i < this.sertifikat.length; i++){
this.sertifikat[i].nama_file = 'simage/' + this.sertifikat[i].nama_file; this.sertifikat[i].nama_file = 'http://localhost:8000/pages/simage/' + this.sertifikat[i].nama_file;
} }
}, },
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<div class="card-header"> <div class="card-header">
Profil Pegawai Profil Pegawai
<!-- <button class="btn btn-primary float-sm-right" v-on:click="editProfilPegawai" v-bind:disabled="disableEdit"> <!-- <button class="btn btn-primary float-sm-right" v-on:click="editProfilPegawai" v-bind:disabled="disableEdit">
Edit <i class="fas fa-edit"></i> Sunting <i class="fas fa-edit"></i>
</button> --> </button> -->
</div> </div>
...@@ -161,7 +161,7 @@ ...@@ -161,7 +161,7 @@
<div v-if="isEditProfile" id="edit-tahun-masuk" class="form-group"> <div v-if="isEditProfile" id="edit-tahun-masuk" class="form-group">
<input v-model="pegawai.tahunMasuk" type="text" class="form-control"> <input v-model="pegawai.tahunMasuk" type="text" class="form-control">
<small class="form-text text-muted">*Edit pada data kepegawaian di bawah</small> <small class="form-text text-muted">*Sunting pada data kepegawaian di bawah</small>
</div> </div>
</div> </div>
</div> </div>
...@@ -187,7 +187,7 @@ ...@@ -187,7 +187,7 @@
<div class="card-header"> <div class="card-header">
Data Kepegawaian Data Kepegawaian
<!-- <button class="btn btn-primary float-sm-right" v-on:click="editDataKepegawaian" v-bind:disabled="disableEdit"> <!-- <button class="btn btn-primary float-sm-right" v-on:click="editDataKepegawaian" v-bind:disabled="disableEdit">
Edit <i class="fas fa-edit"></i> Sunting <i class="fas fa-edit"></i>
</button> --> </button> -->
</div> </div>
...@@ -301,7 +301,7 @@ ...@@ -301,7 +301,7 @@
<div class="card-header"> <div class="card-header">
Riwayat Pendidikan dan Pekerjaan Riwayat Pendidikan dan Pekerjaan
<!-- <button class="btn btn-primary float-sm-right" v-on:click="editRiwayatPegawai" v-bind:disabled="disableEdit"> <!-- <button class="btn btn-primary float-sm-right" v-on:click="editRiwayatPegawai" v-bind:disabled="disableEdit">
Edit <i class="fas fa-edit"></i> Sunting <i class="fas fa-edit"></i>
</button> --> </button> -->
</div> </div>
...@@ -476,7 +476,7 @@ ...@@ -476,7 +476,7 @@
<div class="card" id="sertificate"> <div class="card" id="sertificate">
<div class="card-header"> <div class="card-header">
Sertifikat<button class="btn btn-primary float-sm-right" v-on:click="editSertifikat" v-bind:disabled="disableEdit"> Sertifikat<button class="btn btn-primary float-sm-right" v-on:click="editSertifikat" v-bind:disabled="disableEdit">
Edit <i class="fas fa-edit"></i> Sunting <i class="fas fa-edit"></i>
</button> </button>
</div> </div>
...@@ -596,7 +596,7 @@ ...@@ -596,7 +596,7 @@
<div class="card" id="data-kinerja"> <div class="card" id="data-kinerja">
<div class="card-header"> <div class="card-header">
Hasil Kinerja<button class="btn btn-primary float-sm-right" v-on:click="editDataKinerja" v-bind:disabled="disableEdit"> Hasil Kinerja<button class="btn btn-primary float-sm-right" v-on:click="editDataKinerja" v-bind:disabled="disableEdit">
Edit <i class="fas fa-edit"></i> Sunting <i class="fas fa-edit"></i>
</button> </button>
</div> </div>
...@@ -691,15 +691,15 @@ ...@@ -691,15 +691,15 @@
<div class="card" id="data-kompetensi"> <div class="card" id="data-kompetensi">
<div class="card-header"> <div class="card-header">
Hasil Kompetensi<button class="btn btn-primary float-sm-right" v-on:click="editKommpetensi" v-bind:disabled="disableEdit"> Hasil Kompetensi<button class="btn btn-primary float-sm-right" v-on:click="editKommpetensi" v-bind:disabled="disableEdit">
Edit <i class="fas fa-edit"></i> Sunting <i class="fas fa-edit"></i>
</button> </button>
</div> </div>
<div class="card-body"> <div class="card-body">
<div class="container"> <div class="container">
<button class="btn btn-primary float-sm-left" v-on:click="downloadKompetensi" v-bind:disabled="disableEdit"> <button class="btn btn-success float-sm-left" v-on:click="downloadKompetensi" v-bind:disabled="disableEdit">
Download <i class="fas fa-download"></i> Unggah <i class="fas fa-download"></i>
</button> </button>
</div> </div>
...@@ -711,7 +711,7 @@ ...@@ -711,7 +711,7 @@
<div class="card" id="rekomendasi"> <div class="card" id="rekomendasi">
<div class="card-header"> <div class="card-header">
Rekomendasi<button class="btn btn-primary float-sm-right" v-on:click="editRekomendasi" v-bind:disabled="disableEdit"> Rekomendasi<button class="btn btn-primary float-sm-right" v-on:click="editRekomendasi" v-bind:disabled="disableEdit">
Edit <i class="fas fa-edit"></i> Sunting <i class="fas fa-edit"></i>
</button> </button>
</div> </div>
......
[ [
{
"label": "NIP",
"field": "nip"
},
{ {
"label": "Nama Lengkap", "label": "Nama Lengkap",
"field": "name" "field": "name"
...@@ -6,5 +10,9 @@ ...@@ -6,5 +10,9 @@
{ {
"label": "Email", "label": "Email",
"field": "email" "field": "email"
},
{
"label": "Pendidikan",
"field": "pendidikan_terakhir"
} }
] ]
\ No newline at end of file
...@@ -9,8 +9,6 @@ Vue.use(Axios); ...@@ -9,8 +9,6 @@ Vue.use(Axios);
new Vue({ new Vue({
el: '#profile-page', el: '#profile-page',
components: { components: {
'profil-pegawai': require('./components/ProfilPegawai.vue'), 'profil-pegawai': require('./components/ProfilPegawai.vue')
'profil-pegawai-specific': require('./components/ProfilPegawaiSpecific.vue'),
} }
}); });
\ No newline at end of file
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
@import '~pretty-checkbox/src/pretty-checkbox.scss'; @import '~pretty-checkbox/src/pretty-checkbox.scss';
.navbar-laravel { .navbar-laravel {
background-color: #fff; background-color: #003366;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04); box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
} }
......