191 changed files with 31530 additions and 110 deletions
@ -0,0 +1,724 @@
|
||||
<?php |
||||
namespace App\Controllers\Kewilayahan\IdentAktifitasHasil; |
||||
|
||||
use App\Libraries\AldLibrary; |
||||
use App\Libraries\KpdlLibrary; |
||||
|
||||
class PerubahanPerilaku extends \App\Controllers\Kewilayahan\Kytp |
||||
|
||||
{ |
||||
protected function dataPerilakuPembayaran($request) |
||||
{ |
||||
$Ald = new AldLibrary; |
||||
$username = session('nip'); |
||||
|
||||
$opsiWilZona = $Ald->decryptMe($request->getPost('opsiWilZona'), $username); |
||||
$adm4_pcode = []; |
||||
foreach ($request->getPost('adm4_pcode') ?? [] as $key => $value) { |
||||
$adm4_pcode[] = $Ald->decryptKpdl($value, $username); |
||||
} |
||||
|
||||
$id_poly_zona = []; |
||||
foreach ($request->getPost('id_poly_zona') ?? [] as $key => $value) { |
||||
$id_poly_zona[] = $Ald->decryptMe($value, $username); |
||||
} |
||||
|
||||
$nip_ar_perekam = []; |
||||
foreach ($request->getPost('nip_ar_perekam') ?? [] as $key => $value) { |
||||
$nip_ar_perekam[] = $Ald->decryptMe($value, $username); |
||||
} |
||||
|
||||
$nip_ar_pengampu = []; |
||||
foreach ($request->getPost('nip_ar_pengampu') ?? [] as $key => $value) { |
||||
$nip_ar_pengampu[] = $Ald->decryptMe($value, $username); |
||||
} |
||||
|
||||
$db = \Config\Database::connect(); |
||||
$KpdlLibrary = new KpdlLibrary; |
||||
$npwp = $db->table('KPDL_MV_LOKASI_SUBJEK A') |
||||
->select('COUNT(DISTINCT A.NPWP) as JML_WP') |
||||
->join('KPDL_MV_PEMBAYARAN_PERTAMA B', "A.NPWP = B.NPWP AND A.CREATION_DATE<= B.TGL_BYR", 'inner'); |
||||
|
||||
if ($opsiWilZona == 'wilayah') { |
||||
$npwp = $npwp->whereIn('ADM4_PCODE', $adm4_pcode); |
||||
} |
||||
|
||||
if ($opsiWilZona == 'zona') { |
||||
$npwp = $npwp->whereIn('ID_POLY_ZONA', $id_poly_zona); |
||||
} |
||||
if ($opsiWilZona == 'perekam') { |
||||
$npwp = $npwp->whereIn('NIP_PEREKAM', $nip_ar_perekam); |
||||
} |
||||
|
||||
if ($opsiWilZona == 'pengampu') { |
||||
$npwp = $npwp->whereIn('NIP_AR_PENGAMPU', $nip_ar_pengampu); |
||||
} |
||||
//pembatasan |
||||
if (!in_array(session('tpkantor'), ['KPDJP', 'Kanwil', 'KPP'])) { |
||||
return []; |
||||
} |
||||
|
||||
if (session('kppadm') != '000') { |
||||
$npwp->groupStart(); |
||||
if (session('tpkantor') == 'Kanwil') { // kanwil |
||||
$npwp->join('KPDL_ZP_NAS_DIFF B', 'ID_POLY_ZONA = B.OGC_FID'); |
||||
|
||||
$npwp->orGroupStart(); |
||||
$npwp->where('B.KD_KANWIL', session('kwladm')); |
||||
$npwp->groupEnd(); |
||||
} |
||||
if (session('tpkantor') == 'KPP') { //KPP |
||||
$npwp->join('KPDL_ZP_NAS_DIFF B', 'ID_POLY_ZONA = B.OGC_FID'); |
||||
|
||||
$currentPegawai = currentPegawai(); |
||||
if (in_array($currentPegawai->KD_JAB_STRUKTURAL, ['602'])) { //AR |
||||
//zona |
||||
$npwp->orGroupStart() |
||||
->where('B.KD_UNIT_OR', $currentPegawai->KD_UNIT_ORGANISASI) |
||||
->where('A.KPPADM_ZONA', session('kppadm')) |
||||
->where('A.NIP_AR_ZONA', session('nip')) |
||||
->groupEnd(); |
||||
|
||||
//perekam |
||||
$npwp->orGroupStart() |
||||
->where('A.KODE_PEG_PEREKAM', session('kppadm') . '-' . $currentPegawai->KD_UNIT_ORGANISASI . '-' . session('nip')) //direkam saat di seksi aktif saat ini |
||||
->groupEnd(); |
||||
|
||||
//pengampu |
||||
$npwp->orGroupStart() |
||||
->where('A.NIP_AR_PENGAMPU', session('nip')) |
||||
->where('A.KPPADM_PENGAMPU', session('kppadm')) |
||||
->groupEnd(); |
||||
} else if (in_array($currentPegawai->KD_JAB_STRUKTURAL, ['401'])) { //kasi |
||||
//zona |
||||
$npwp->orGroupStart() |
||||
->where('B.KD_UNIT_OR', $currentPegawai->KD_UNIT_ORGANISASI) |
||||
->where('A.KPPADM_ZONA', session('kppadm')) |
||||
->groupEnd(); |
||||
|
||||
//perekam |
||||
$npwp->orGroupStart() |
||||
->where('A.KODE_SEKSI_PEREKAM', session('kppadm') . '-' . $currentPegawai->KD_UNIT_ORGANISASI) |
||||
->groupEnd(); |
||||
|
||||
//pengampu |
||||
$npwp->join('PEGAWAI C', 'A.NIP_AR_PENGAMPU=C.NIP9', 'left'); |
||||
$npwp->orGroupStart() |
||||
->where('C.KD_UNIT_ORGANISASI', $currentPegawai->KD_UNIT_ORGANISASI) |
||||
->where('A.KPPADM_PENGAMPU', session('kppadm')) |
||||
->groupEnd(); |
||||
} else if (in_array($currentPegawai->KD_JAB_STRUKTURAL, ['304'])) { //Kepala Kantor |
||||
//zona |
||||
$npwp->orGroupStart() |
||||
->where('A.KPPADM_ZONA', session('kppadm')) |
||||
->groupEnd(); |
||||
|
||||
//perekam |
||||
$npwp->orGroupStart() |
||||
->where('A.KPP_ADM_PEREKAM', session('kppadm') . '-' . $currentPegawai->KD_UNIT_ORGANISASI) |
||||
->groupEnd(); |
||||
|
||||
//pengampu |
||||
$npwp->join('PEGAWAI C', 'A.NIP_AR_PENGAMPU=C.NIP9', 'left'); |
||||
$npwp->orGroupStart() |
||||
->where('A.KPPADM_PENGAMPU', session('kppadm')) |
||||
->groupEnd(); |
||||
|
||||
} else { |
||||
return []; |
||||
} |
||||
|
||||
} |
||||
$npwp->groupEnd(); |
||||
} |
||||
|
||||
$data = $npwp->get()->getRow()->JML_WP; |
||||
return $data; |
||||
} |
||||
|
||||
protected function dataPerilakuPembayaranRupiah($request) |
||||
{ |
||||
$Ald = new AldLibrary; |
||||
$username = session('nip'); |
||||
|
||||
$opsiWilZona = $Ald->decryptMe($request->getPost('opsiWilZona'), $username); |
||||
$adm4_pcode = []; |
||||
foreach ($request->getPost('adm4_pcode') ?? [] as $key => $value) { |
||||
$adm4_pcode[] = $Ald->decryptKpdl($value, $username); |
||||
} |
||||
|
||||
$id_poly_zona = []; |
||||
foreach ($request->getPost('id_poly_zona') ?? [] as $key => $value) { |
||||
$id_poly_zona[] = $Ald->decryptMe($value, $username); |
||||
} |
||||
|
||||
$nip_ar_perekam = []; |
||||
foreach ($request->getPost('nip_ar_perekam') ?? [] as $key => $value) { |
||||
$nip_ar_perekam[] = $Ald->decryptMe($value, $username); |
||||
} |
||||
|
||||
$nip_ar_pengampu = []; |
||||
foreach ($request->getPost('nip_ar_pengampu') ?? [] as $key => $value) { |
||||
$nip_ar_pengampu[] = $Ald->decryptMe($value, $username); |
||||
} |
||||
|
||||
$db = \Config\Database::connect(); |
||||
$KpdlLibrary = new KpdlLibrary; |
||||
$npwp = $db->table('KPDL_MV_LOKASI_SUBJEK A') |
||||
->select('A.NPWP, A.JUMLAH_PEMBAYARAN_THN_TERAKHIR')->distinct() |
||||
->join('KPDL_MV_PEMBAYARAN_PERTAMA B', "A.NPWP = B.NPWP AND A.CREATION_DATE<= B.TGL_BYR", 'inner'); |
||||
|
||||
if ($opsiWilZona == 'wilayah') { |
||||
$npwp = $npwp->whereIn('ADM4_PCODE', $adm4_pcode); |
||||
} |
||||
|
||||
if ($opsiWilZona == 'zona') { |
||||
$npwp = $npwp->whereIn('ID_POLY_ZONA', $id_poly_zona); |
||||
} |
||||
if ($opsiWilZona == 'perekam') { |
||||
$npwp = $npwp->whereIn('NIP_PEREKAM', $nip_ar_perekam); |
||||
} |
||||
|
||||
if ($opsiWilZona == 'pengampu') { |
||||
$npwp = $npwp->whereIn('NIP_AR_PENGAMPU', $nip_ar_pengampu); |
||||
} |
||||
//pembatasan |
||||
if (!in_array(session('tpkantor'), ['KPDJP', 'Kanwil', 'KPP'])) { |
||||
return []; |
||||
} |
||||
|
||||
if (session('kppadm') != '000') { |
||||
$npwp->groupStart(); |
||||
if (session('tpkantor') == 'Kanwil') { // kanwil |
||||
$npwp->join('KPDL_ZP_NAS_DIFF B', 'ID_POLY_ZONA = B.OGC_FID'); |
||||
|
||||
$npwp->orGroupStart(); |
||||
$npwp->where('B.KD_KANWIL', session('kwladm')); |
||||
$npwp->groupEnd(); |
||||
} |
||||
if (session('tpkantor') == 'KPP') { //KPP |
||||
$npwp->join('KPDL_ZP_NAS_DIFF B', 'ID_POLY_ZONA = B.OGC_FID'); |
||||
|
||||
$currentPegawai = currentPegawai(); |
||||
if (in_array($currentPegawai->KD_JAB_STRUKTURAL, ['602'])) { //AR |
||||
//zona |
||||
$npwp->orGroupStart() |
||||
->where('B.KD_UNIT_OR', $currentPegawai->KD_UNIT_ORGANISASI) |
||||
->where('A.KPPADM_ZONA', session('kppadm')) |
||||
->where('A.NIP_AR_ZONA', session('nip')) |
||||
->groupEnd(); |
||||
|
||||
//perekam |
||||
$npwp->orGroupStart() |
||||
->where('A.KODE_PEG_PEREKAM', session('kppadm') . '-' . $currentPegawai->KD_UNIT_ORGANISASI . '-' . session('nip')) //direkam saat di seksi aktif saat ini |
||||
->groupEnd(); |
||||
|
||||
//pengampu |
||||
$npwp->orGroupStart() |
||||
->where('A.NIP_AR_PENGAMPU', session('nip')) |
||||
->where('A.KPPADM_PENGAMPU', session('kppadm')) |
||||
->groupEnd(); |
||||
} else if (in_array($currentPegawai->KD_JAB_STRUKTURAL, ['401'])) { //kasi |
||||
//zona |
||||
$npwp->orGroupStart() |
||||
->where('B.KD_UNIT_OR', $currentPegawai->KD_UNIT_ORGANISASI) |
||||
->where('A.KPPADM_ZONA', session('kppadm')) |
||||
->groupEnd(); |
||||
|
||||
//perekam |
||||
$npwp->orGroupStart() |
||||
->where('A.KODE_SEKSI_PEREKAM', session('kppadm') . '-' . $currentPegawai->KD_UNIT_ORGANISASI) |
||||
->groupEnd(); |
||||
|
||||
//pengampu |
||||
$npwp->join('PEGAWAI C', 'A.NIP_AR_PENGAMPU=C.NIP9', 'left'); |
||||
$npwp->orGroupStart() |
||||
->where('C.KD_UNIT_ORGANISASI', $currentPegawai->KD_UNIT_ORGANISASI) |
||||
->where('A.KPPADM_PENGAMPU', session('kppadm')) |
||||
->groupEnd(); |
||||
} else if (in_array($currentPegawai->KD_JAB_STRUKTURAL, ['304'])) { //Kepala Kantor |
||||
//zona |
||||
$npwp->orGroupStart() |
||||
->where('A.KPPADM_ZONA', session('kppadm')) |
||||
->groupEnd(); |
||||
|
||||
//perekam |
||||
$npwp->orGroupStart() |
||||
->where('A.KPP_ADM_PEREKAM', session('kppadm') . '-' . $currentPegawai->KD_UNIT_ORGANISASI) |
||||
->groupEnd(); |
||||
|
||||
//pengampu |
||||
$npwp->join('PEGAWAI C', 'A.NIP_AR_PENGAMPU=C.NIP9', 'left'); |
||||
$npwp->orGroupStart() |
||||
->where('A.KPPADM_PENGAMPU', session('kppadm')) |
||||
->groupEnd(); |
||||
|
||||
} else { |
||||
return []; |
||||
} |
||||
|
||||
} |
||||
$npwp->groupEnd(); |
||||
} |
||||
// print_r($npwp->getCompiledSelect()); |
||||
// exit; |
||||
$data = $npwp->get()->getResultArray(); |
||||
$ret = array_sum(array_map(fn($item) => $item['JUMLAH_PEMBAYARAN_THN_TERAKHIR'], $data)); // 5 |
||||
return $ret; |
||||
} |
||||
|
||||
protected function dataPerilakuPelaporan($request) |
||||
{ |
||||
$Ald = new AldLibrary; |
||||
$username = session('nip'); |
||||
|
||||
$opsiWilZona = $Ald->decryptMe($request->getPost('opsiWilZona'), $username); |
||||
$adm4_pcode = []; |
||||
foreach ($request->getPost('adm4_pcode') ?? [] as $key => $value) { |
||||
$adm4_pcode[] = $Ald->decryptKpdl($value, $username); |
||||
} |
||||
|
||||
$id_poly_zona = []; |
||||
foreach ($request->getPost('id_poly_zona') ?? [] as $key => $value) { |
||||
$id_poly_zona[] = $Ald->decryptMe($value, $username); |
||||
} |
||||
|
||||
$nip_ar_perekam = []; |
||||
foreach ($request->getPost('nip_ar_perekam') ?? [] as $key => $value) { |
||||
$nip_ar_perekam[] = $Ald->decryptMe($value, $username); |
||||
} |
||||
|
||||
$nip_ar_pengampu = []; |
||||
foreach ($request->getPost('nip_ar_pengampu') ?? [] as $key => $value) { |
||||
$nip_ar_pengampu[] = $Ald->decryptMe($value, $username); |
||||
} |
||||
|
||||
$db = \Config\Database::connect(); |
||||
$KpdlLibrary = new KpdlLibrary; |
||||
$npwp = $db->table('KPDL_MV_LOKASI_SUBJEK A') |
||||
->select('COUNT(DISTINCT A.NPWP) as JML_WP') |
||||
->join('KPDL_MV_SPT_TAHUNAN_PERTAMA B', "A.NPWP = B.NPWP AND A.CREATION_DATE<= B.TGL_TERIMA", 'inner'); |
||||
|
||||
if ($opsiWilZona == 'wilayah') { |
||||
$npwp = $npwp->whereIn('ADM4_PCODE', $adm4_pcode); |
||||
} |
||||
|
||||
if ($opsiWilZona == 'zona') { |
||||
$npwp = $npwp->whereIn('ID_POLY_ZONA', $id_poly_zona); |
||||
} |
||||
if ($opsiWilZona == 'perekam') { |
||||
$npwp = $npwp->whereIn('NIP_PEREKAM', $nip_ar_perekam); |
||||
} |
||||
|
||||
if ($opsiWilZona == 'pengampu') { |
||||
$npwp = $npwp->whereIn('NIP_AR_PENGAMPU', $nip_ar_pengampu); |
||||
} |
||||
//pembatasan |
||||
if (!in_array(session('tpkantor'), ['KPDJP', 'Kanwil', 'KPP'])) { |
||||
return []; |
||||
} |
||||
|
||||
if (session('kppadm') != '000') { |
||||
$npwp->groupStart(); |
||||
if (session('tpkantor') == 'Kanwil') { // kanwil |
||||
$npwp->join('KPDL_ZP_NAS_DIFF B', 'ID_POLY_ZONA = B.OGC_FID'); |
||||
|
||||
$npwp->orGroupStart(); |
||||
$npwp->where('B.KD_KANWIL', session('kwladm')); |
||||
$npwp->groupEnd(); |
||||
} |
||||
if (session('tpkantor') == 'KPP') { //KPP |
||||
$npwp->join('KPDL_ZP_NAS_DIFF B', 'ID_POLY_ZONA = B.OGC_FID'); |
||||
|
||||
$currentPegawai = currentPegawai(); |
||||
if (in_array($currentPegawai->KD_JAB_STRUKTURAL, ['602'])) { //AR |
||||
//zona |
||||
$npwp->orGroupStart() |
||||
->where('B.KD_UNIT_OR', $currentPegawai->KD_UNIT_ORGANISASI) |
||||
->where('A.KPPADM_ZONA', session('kppadm')) |
||||
->where('A.NIP_AR_ZONA', session('nip')) |
||||
->groupEnd(); |
||||
|
||||
//perekam |
||||
$npwp->orGroupStart() |
||||
->where('A.KODE_PEG_PEREKAM', session('kppadm') . '-' . $currentPegawai->KD_UNIT_ORGANISASI . '-' . session('nip')) //direkam saat di seksi aktif saat ini |
||||
->groupEnd(); |
||||
|
||||
//pengampu |
||||
$npwp->orGroupStart() |
||||
->where('A.NIP_AR_PENGAMPU', session('nip')) |
||||
->where('A.KPPADM_PENGAMPU', session('kppadm')) |
||||
->groupEnd(); |
||||
} else if (in_array($currentPegawai->KD_JAB_STRUKTURAL, ['401'])) { //kasi |
||||
//zona |
||||
$npwp->orGroupStart() |
||||
->where('B.KD_UNIT_OR', $currentPegawai->KD_UNIT_ORGANISASI) |
||||
->where('A.KPPADM_ZONA', session('kppadm')) |
||||
->groupEnd(); |
||||
|
||||
//perekam |
||||
$npwp->orGroupStart() |
||||
->where('A.KODE_SEKSI_PEREKAM', session('kppadm') . '-' . $currentPegawai->KD_UNIT_ORGANISASI) |
||||
->groupEnd(); |
||||
|
||||
//pengampu |
||||
$npwp->join('PEGAWAI C', 'A.NIP_AR_PENGAMPU=C.NIP9', 'left'); |
||||
$npwp->orGroupStart() |
||||
->where('C.KD_UNIT_ORGANISASI', $currentPegawai->KD_UNIT_ORGANISASI) |
||||
->where('A.KPPADM_PENGAMPU', session('kppadm')) |
||||
->groupEnd(); |
||||
} else if (in_array($currentPegawai->KD_JAB_STRUKTURAL, ['304'])) { //Kepala Kantor |
||||
//zona |
||||
$npwp->orGroupStart() |
||||
->where('A.KPPADM_ZONA', session('kppadm')) |
||||
->groupEnd(); |
||||
|
||||
//perekam |
||||
$npwp->orGroupStart() |
||||
->where('A.KPP_ADM_PEREKAM', session('kppadm') . '-' . $currentPegawai->KD_UNIT_ORGANISASI) |
||||
->groupEnd(); |
||||
|
||||
//pengampu |
||||
$npwp->join('PEGAWAI C', 'A.NIP_AR_PENGAMPU=C.NIP9', 'left'); |
||||
$npwp->orGroupStart() |
||||
->where('A.KPPADM_PENGAMPU', session('kppadm')) |
||||
->groupEnd(); |
||||
|
||||
} else { |
||||
return []; |
||||
} |
||||
|
||||
} |
||||
$npwp->groupEnd(); |
||||
} |
||||
|
||||
$data = $npwp->get()->getRow()->JML_WP; |
||||
return $data; |
||||
} |
||||
|
||||
protected function dataPerilakuPendaftaran($request) |
||||
{ |
||||
$Ald = new AldLibrary; |
||||
$username = session('nip'); |
||||
|
||||
$opsiWilZona = $Ald->decryptMe($request->getPost('opsiWilZona'), $username); |
||||
$adm4_pcode = []; |
||||
foreach ($request->getPost('adm4_pcode') ?? [] as $key => $value) { |
||||
$adm4_pcode[] = $Ald->decryptKpdl($value, $username); |
||||
} |
||||
|
||||
$id_poly_zona = []; |
||||
foreach ($request->getPost('id_poly_zona') ?? [] as $key => $value) { |
||||
$id_poly_zona[] = $Ald->decryptMe($value, $username); |
||||
} |
||||
|
||||
$nip_ar_perekam = []; |
||||
foreach ($request->getPost('nip_ar_perekam') ?? [] as $key => $value) { |
||||
$nip_ar_perekam[] = $Ald->decryptMe($value, $username); |
||||
} |
||||
|
||||
$nip_ar_pengampu = []; |
||||
foreach ($request->getPost('nip_ar_pengampu') ?? [] as $key => $value) { |
||||
$nip_ar_pengampu[] = $Ald->decryptMe($value, $username); |
||||
} |
||||
|
||||
$db = \Config\Database::connect(); |
||||
$KpdlLibrary = new KpdlLibrary; |
||||
$npwp = $db->table('KPDL_MV_LOKASI_SUBJEK A') |
||||
->select('COUNT(A.NO_IDENTITAS) as JML_WP') |
||||
->join('KPDL_MV_PENDAFTARAN_NPWP_PERTAMA B', "A.NO_IDENTITAS = B.NO_IDENTITAS AND A.CREATION_DATE <= B.TGL_DAFTAR", 'inner'); |
||||
|
||||
if ($opsiWilZona == 'wilayah') { |
||||
$npwp = $npwp->whereIn('ADM4_PCODE', $adm4_pcode); |
||||
} |
||||
|
||||
if ($opsiWilZona == 'zona') { |
||||
$npwp = $npwp->whereIn('ID_POLY_ZONA', $id_poly_zona); |
||||
} |
||||
if ($opsiWilZona == 'perekam') { |
||||
$npwp = $npwp->whereIn('NIP_PEREKAM', $nip_ar_perekam); |
||||
} |
||||
|
||||
if ($opsiWilZona == 'pengampu') { |
||||
$npwp = $npwp->whereIn('NIP_AR_PENGAMPU', $nip_ar_pengampu); |
||||
} |
||||
//pembatasan |
||||
if (!in_array(session('tpkantor'), ['KPDJP', 'Kanwil', 'KPP'])) { |
||||
return []; |
||||
} |
||||
|
||||
if (session('kppadm') != '000') { |
||||
$npwp->groupStart(); |
||||
if (session('tpkantor') == 'Kanwil') { // kanwil |
||||
$npwp->join('KPDL_ZP_NAS_DIFF B', 'ID_POLY_ZONA = B.OGC_FID'); |
||||
|
||||
$npwp->orGroupStart(); |
||||
$npwp->where('B.KD_KANWIL', session('kwladm')); |
||||
$npwp->groupEnd(); |
||||
} |
||||
if (session('tpkantor') == 'KPP') { //KPP |
||||
$npwp->join('KPDL_ZP_NAS_DIFF B', 'ID_POLY_ZONA = B.OGC_FID'); |
||||
|
||||
$currentPegawai = currentPegawai(); |
||||
if (in_array($currentPegawai->KD_JAB_STRUKTURAL, ['602'])) { //AR |
||||
//zona |
||||
$npwp->orGroupStart() |
||||
->where('B.KD_UNIT_OR', $currentPegawai->KD_UNIT_ORGANISASI) |
||||
->where('A.KPPADM_ZONA', session('kppadm')) |
||||
->where('A.NIP_AR_ZONA', session('nip')) |
||||
->groupEnd(); |
||||
|
||||
//perekam |
||||
$npwp->orGroupStart() |
||||
->where('A.KODE_PEG_PEREKAM', session('kppadm') . '-' . $currentPegawai->KD_UNIT_ORGANISASI . '-' . session('nip')) //direkam saat di seksi aktif saat ini |
||||
->groupEnd(); |
||||
|
||||
//pengampu |
||||
$npwp->orGroupStart() |
||||
->where('A.NIP_AR_PENGAMPU', session('nip')) |
||||
->where('A.KPPADM_PENGAMPU', session('kppadm')) |
||||
->groupEnd(); |
||||
} else if (in_array($currentPegawai->KD_JAB_STRUKTURAL, ['401'])) { //kasi |
||||
//zona |
||||
$npwp->orGroupStart() |
||||
->where('B.KD_UNIT_OR', $currentPegawai->KD_UNIT_ORGANISASI) |
||||
->where('A.KPPADM_ZONA', session('kppadm')) |
||||
->groupEnd(); |
||||
|
||||
//perekam |
||||
$npwp->orGroupStart() |
||||
->where('A.KODE_SEKSI_PEREKAM', session('kppadm') . '-' . $currentPegawai->KD_UNIT_ORGANISASI) |
||||
->groupEnd(); |
||||
|
||||
//pengampu |
||||
$npwp->join('PEGAWAI C', 'A.NIP_AR_PENGAMPU=C.NIP9', 'left'); |
||||
$npwp->orGroupStart() |
||||
->where('C.KD_UNIT_ORGANISASI', $currentPegawai->KD_UNIT_ORGANISASI) |
||||
->where('A.KPPADM_PENGAMPU', session('kppadm')) |
||||
->groupEnd(); |
||||
} else if (in_array($currentPegawai->KD_JAB_STRUKTURAL, ['304'])) { //Kepala Kantor |
||||
//zona |
||||
$npwp->orGroupStart() |
||||
->where('A.KPPADM_ZONA', session('kppadm')) |
||||
->groupEnd(); |
||||
|
||||
//perekam |
||||
$npwp->orGroupStart() |
||||
->where('A.KPP_ADM_PEREKAM', session('kppadm') . '-' . $currentPegawai->KD_UNIT_ORGANISASI) |
||||
->groupEnd(); |
||||
|
||||
//pengampu |
||||
$npwp->join('PEGAWAI C', 'A.NIP_AR_PENGAMPU=C.NIP9', 'left'); |
||||
$npwp->orGroupStart() |
||||
->where('A.KPPADM_PENGAMPU', session('kppadm')) |
||||
->groupEnd(); |
||||
|
||||
} else { |
||||
return []; |
||||
} |
||||
|
||||
} |
||||
$npwp->groupEnd(); |
||||
} |
||||
|
||||
$data = $npwp->get()->getRow()->JML_WP; |
||||
return $data; |
||||
} |
||||
|
||||
public function detail() |
||||
{ |
||||
$dataRaw = $this->dataRaw('raw')->getResultArray(); |
||||
$dataCount = $this->dataRaw('count')->getRow(); |
||||
$ret = [ |
||||
'data' => $dataRaw, |
||||
'meta' => ['totalRowCount' => $dataCount->JML], |
||||
]; |
||||
return $this->respond($ret, 200); |
||||
} |
||||
|
||||
private function dataRaw($type) |
||||
{ |
||||
$Ald = new AldLibrary; |
||||
$username = session('nip'); |
||||
$start = $this->request->getGet('start'); |
||||
// $start = ($start > 100) ? 100 : $start; |
||||
$size = $this->request->getGet('size'); |
||||
$size = ($size > 101) ? 101 : $size; |
||||
$request = json_decode(file_get_contents('php://input')); |
||||
|
||||
$opsiWilZona = $Ald->decryptMe($request->opsiWilZona ?? '', $username); |
||||
$adm4_pcode = []; |
||||
foreach ($request->adm4_pcode ?? [] as $key => $value) { |
||||
$adm4_pcode[] = $Ald->decryptKpdl($value, $username); |
||||
} |
||||
|
||||
$id_poly_zona = []; |
||||
foreach ($request->id_poly_zona ?? [] as $key => $value) { |
||||
$id_poly_zona[] = $Ald->decryptMe($value, $username); |
||||
} |
||||
|
||||
$nip_ar_perekam = []; |
||||
foreach ($request->nip_ar_perekam ?? [] as $key => $value) { |
||||
$nip_ar_perekam[] = $Ald->decryptMe($value, $username); |
||||
} |
||||
|
||||
$nip_ar_pengampu = []; |
||||
foreach ($request->nip_ar_pengampu ?? [] as $key => $value) { |
||||
$nip_ar_pengampu[] = $Ald->decryptMe($value, $username); |
||||
} |
||||
|
||||
$globalFilter = $this->request->getGet('globalFilter'); //string |
||||
$filters = json_decode($this->request->getGet('filters')); // [{"id":"MERK_USAHA","value":"toko"},{"id":"ALAMAT","value":"graha"}] |
||||
$sorting = json_decode($this->request->getGet('sorting')); // [{"id":"ALAMAT","desc":false}] |
||||
|
||||
$db = \Config\Database::connect(); |
||||
$data = $db->table('KPDL_MV_LOKASI_SUBJEK A')->distinct() |
||||
->select('A.NPWP, A.NAMA_WP, A.ALAMAT_MFWP, A.KELURAHAN_MFWP, A.KECAMATAN_MFWP, A.KOTA_MFWP, A.PROPINSI_MFWP, |
||||
A.KPPADM_MFWP, A.NAMA_AR_MFWP, A.FLAG_WPS_WPK, A.STATUS_WP_MFWP, A.JNS_WP_MFWP, A.STATUS_SPT_TAHUNAN_TERAKHIR, |
||||
A.TGL_DAFTAR,JUMLAH_PEMBAYARAN_THN_TERAKHIR') |
||||
->join('KPDL_MV_PEMBAYARAN_PERTAMA C', 'A.NPWP = C.NPWP AND A.CREATION_DATE <= C.TGL_BYR', 'inner') |
||||
->where('A.NPWP IS NOT NULL'); |
||||
|
||||
if ($opsiWilZona == 'wilayah') { |
||||
$data->whereIn('ADM4_PCODE', $adm4_pcode); |
||||
} |
||||
|
||||
if ($opsiWilZona == 'zona') { |
||||
$data->whereIn('ID_POLY_ZONA', $id_poly_zona); |
||||
} |
||||
|
||||
if ($opsiWilZona == 'perekam') { |
||||
$data->whereIn('CREATED_BY', $nip_ar_perekam); |
||||
} |
||||
|
||||
if ($opsiWilZona == 'pengampu') { |
||||
$data->whereIn('NIP_AR_PENGAMPU', $nip_ar_pengampu); |
||||
} |
||||
if (session('kppadm') != '000') { |
||||
$data->groupStart(); |
||||
$data->join('KPDL_ZP_NAS_DIFF B', 'ID_POLY_ZONA = B.OGC_FID'); |
||||
if (session('tpkantor') == 'Kanwil') { // kanwil |
||||
|
||||
$data->orGroupStart(); |
||||
$data->where('B.KD_KANWIL', session('kwladm')); |
||||
$data->groupEnd(); |
||||
} |
||||
if (session('tpkantor') == 'KPP') { //KPP |
||||
|
||||
$currentPegawai = currentPegawai(); |
||||
if (in_array($currentPegawai->KD_JAB_STRUKTURAL, ['602'])) { //AR |
||||
//zona |
||||
$data->orGroupStart() |
||||
->where('B.KD_UNIT_OR', $currentPegawai->KD_UNIT_ORGANISASI) |
||||
->where('A.KPPADM_ZONA', session('kppadm')) |
||||
->where('A.NIP_AR_ZONA', session('nip')) |
||||
->groupEnd(); |
||||
|
||||
//perekam |
||||
$data->orGroupStart() |
||||
->where('A.KODE_PEG_PEREKAM', session('kppadm') . '-' . $currentPegawai->KD_UNIT_ORGANISASI . '-' . session('nip')) //direkam saat di seksi aktif saat ini |
||||
->groupEnd(); |
||||
|
||||
//pengampu |
||||
$data->orGroupStart() |
||||
->where('A.NIP_AR_PENGAMPU', session('nip')) |
||||
->where('A.KPPADM_PENGAMPU', session('kppadm')) |
||||
->groupEnd(); |
||||
} else if (in_array($currentPegawai->KD_JAB_STRUKTURAL, ['401'])) { //kasi |
||||
//zona |
||||
$data->orGroupStart() |
||||
->where('B.KD_UNIT_OR', $currentPegawai->KD_UNIT_ORGANISASI) |
||||
->where('A.KPPADM_ZONA', session('kppadm')) |
||||
->groupEnd(); |
||||
|
||||
//perekam |
||||
$data->orGroupStart() |
||||
->where('A.KODE_SEKSI_PEREKAM', session('kppadm') . '-' . $currentPegawai->KD_UNIT_ORGANISASI) |
||||
->groupEnd(); |
||||
|
||||
//pengampu |
||||
$data->join('PEGAWAI C', 'A.NIP_AR_PENGAMPU=C.NIP9', 'left'); |
||||
$data->orGroupStart() |
||||
->where('C.KD_UNIT_ORGANISASI', $currentPegawai->KD_UNIT_ORGANISASI) |
||||
->where('A.KPPADM_PENGAMPU', session('kppadm')) |
||||
->groupEnd(); |
||||
} else if (in_array($currentPegawai->KD_JAB_STRUKTURAL, ['304'])) { //Kepala Kantor |
||||
//zona |
||||
$data->orGroupStart() |
||||
->where('A.KPPADM_ZONA', session('kppadm')) |
||||
->groupEnd(); |
||||
|
||||
//perekam |
||||
$data->orGroupStart() |
||||
->where('A.KPP_ADM_PEREKAM', session('kppadm') . '-' . $currentPegawai->KD_UNIT_ORGANISASI) |
||||
->groupEnd(); |
||||
|
||||
//pengampu |
||||
$data->join('PEGAWAI C', 'A.NIP_AR_PENGAMPU=C.NIP9', 'left'); |
||||
$data->orGroupStart() |
||||
->where('A.KPPADM_PENGAMPU', session('kppadm')) |
||||
->groupEnd(); |
||||
|
||||
} else { |
||||
return []; |
||||
} |
||||
|
||||
} |
||||
$data->groupEnd(); |
||||
} |
||||
|
||||
$npwp = $data; |
||||
|
||||
$data = $db->newQuery()->fromSubquery($npwp, "A") |
||||
// ->join('MFWP B', "A.NPWP = B.NPWP", "left") |
||||
->join('REF_KPP D', "A.KPPADM_MFWP = D.KD_KPP", "left") |
||||
->join('KPDL_REF_STATUS_SPT E', "A.STATUS_SPT_TAHUNAN_TERAKHIR = E.ID_STATUS_SPT", "left"); |
||||
|
||||
if ($globalFilter) { |
||||
$columnFilter = ["NAMA_WP", "ALAMAT_MFWP"]; |
||||
$data->GroupStart(); |
||||
$data->orGroupStart(); |
||||
foreach ($columnFilter as $key => $value) { |
||||
$data->orLike("UPPER(" . $value . ")", strtoupper($globalFilter), 'both'); |
||||
} |
||||
$data->groupEnd(); |
||||
$data->groupEnd(); |
||||
} |
||||
|
||||
if (count($filters)) { |
||||
$data->GroupStart(); |
||||
foreach ($filters as $key => $value) { |
||||
if ($value->id == 'NPWP') { |
||||
$data->like("A.NPWP", strtoupper($value->value), 'both'); |
||||
} else { |
||||
$data->like("UPPER(" . $value->id . ")", strtoupper($value->value), 'both'); |
||||
} |
||||
} |
||||
$data->groupEnd(); |
||||
} |
||||
|
||||
if (count($sorting)) { |
||||
foreach ($sorting as $key => $value) { |
||||
if ($value->id == 'NPWP') { |
||||
$data->orderBy("A.NPWP", $value->desc ? 'desc' : 'asc'); |
||||
} else { |
||||
$data->orderBy($value->id, $value->desc ? 'desc' : 'asc'); |
||||
} |
||||
} |
||||
} |
||||
|
||||
if ($type == 'count') { |
||||
$data = $data->select("count(1) as JML"); |
||||
return $data->get(); |
||||
} |
||||
if ($type == 'raw') { |
||||
$data = $data->select("A.NPWP, A.NAMA_WP, A.ALAMAT_MFWP, A.KELURAHAN_MFWP, A.KECAMATAN_MFWP, A.KOTA_MFWP, A.PROPINSI_MFWP, |
||||
A.KPPADM_MFWP, A.NAMA_AR_MFWP, A.FLAG_WPS_WPK, A.STATUS_WP_MFWP, A.JNS_WP_MFWP, A.STATUS_SPT_TAHUNAN_TERAKHIR, |
||||
A.TGL_DAFTAR, JUMLAH_PEMBAYARAN_THN_TERAKHIR, D.NM_KANTOR, E.KETERANGAN"); |
||||
// print_r($data->getCompiledSelect()); |
||||
// exit; |
||||
return $data->get($size - 1, $start); |
||||
} |
||||
|
||||
} |
||||
} |
@ -0,0 +1,157 @@
|
||||
// ** React Imports
|
||||
import React, { forwardRef } from 'react' |
||||
|
||||
// ** Third Party Components
|
||||
import Proptypes from 'prop-types' |
||||
import classnames from 'classnames' |
||||
|
||||
// ** Reactstrap Imports
|
||||
import { Badge } from 'reactstrap' |
||||
|
||||
const Avatar = forwardRef((props, ref) => { |
||||
// ** Props
|
||||
const { |
||||
img, |
||||
size, |
||||
icon, |
||||
color, |
||||
status, |
||||
badgeUp, |
||||
content, |
||||
tag: Tag, |
||||
initials, |
||||
imgWidth, |
||||
className, |
||||
badgeText, |
||||
imgHeight, |
||||
badgeColor, |
||||
imgClassName, |
||||
contentStyles, |
||||
...rest |
||||
} = props |
||||
|
||||
// ** Function to extract initials from content
|
||||
const getInitials = (str) => { |
||||
const results = [] |
||||
const wordArray = str.split(' ') |
||||
wordArray.forEach((e) => { |
||||
results.push(e[0]) |
||||
}) |
||||
return results.join('') |
||||
} |
||||
|
||||
return ( |
||||
<Tag |
||||
className={classnames('avatar', { |
||||
[className]: className, |
||||
[`bg-${color}`]: color, |
||||
[`avatar-${size}`]: size |
||||
})} |
||||
ref={ref} |
||||
{...rest} |
||||
> |
||||
{img === false || img === undefined ? ( |
||||
<span |
||||
className={classnames('avatar-content', { |
||||
'position-relative': badgeUp |
||||
})} |
||||
style={contentStyles} |
||||
> |
||||
{initials ? getInitials(content) : content} |
||||
|
||||
{icon ? icon : null} |
||||
{badgeUp ? ( |
||||
<Badge color={badgeColor ? badgeColor : 'primary'} className="badge-sm badge-up" pill> |
||||
{badgeText ? badgeText : '0'} |
||||
</Badge> |
||||
) : null} |
||||
</span> |
||||
) : ( |
||||
<img |
||||
className={classnames({ |
||||
[imgClassName]: imgClassName |
||||
})} |
||||
src={img} |
||||
alt="" |
||||
height={imgHeight && !size ? imgHeight : 32} |
||||
width={imgWidth && !size ? imgWidth : 32} |
||||
/> |
||||
)} |
||||
{status ? ( |
||||
<span |
||||
className={classnames({ |
||||
[`avatar-status-${status}`]: status, |
||||
[`avatar-status-${size}`]: size |
||||
})} |
||||
></span> |
||||
) : null} |
||||
</Tag> |
||||
) |
||||
}) |
||||
|
||||
export default Avatar |
||||
|
||||
// ** PropTypes
|
||||
Avatar.propTypes = { |
||||
icon: Proptypes.node, |
||||
src: Proptypes.string, |
||||
badgeUp: Proptypes.bool, |
||||
content: Proptypes.string, |
||||
badgeText: Proptypes.string, |
||||
className: Proptypes.string, |
||||
imgClassName: Proptypes.string, |
||||
contentStyles: Proptypes.object, |
||||
size: Proptypes.oneOf(['sm', 'lg', 'xl']), |
||||
tag: Proptypes.oneOfType([Proptypes.func, Proptypes.string]), |
||||
status: Proptypes.oneOf(['online', 'offline', 'away', 'busy']), |
||||
imgHeight: Proptypes.oneOfType([Proptypes.string, Proptypes.number]), |
||||
imgWidth: Proptypes.oneOfType([Proptypes.string, Proptypes.number]), |
||||
badgeColor: Proptypes.oneOf([ |
||||
'primary', |
||||
'secondary', |
||||
'success', |
||||
'danger', |
||||
'info', |
||||
'warning', |
||||
'dark', |
||||
'light-primary', |
||||
'light-secondary', |
||||
'light-success', |
||||
'light-danger', |
||||
'light-info', |
||||
'light-warning', |
||||
'light-dark' |
||||
]), |
||||
color: Proptypes.oneOf([ |
||||
'primary', |
||||
'secondary', |
||||
'success', |
||||
'danger', |
||||
'info', |
||||
'warning', |
||||
'dark', |
||||
'light-primary', |
||||
'light-secondary', |
||||
'light-success', |
||||
'light-danger', |
||||
'light-info', |
||||
'light-warning', |
||||
'light-dark' |
||||
]), |
||||
initials(props) { |
||||
if (props['initials'] && props['content'] === undefined) { |
||||
return new Error('content prop is required with initials prop.') |
||||
} |
||||
if (props['initials'] && typeof props['content'] !== 'string') { |
||||
return new Error('content prop must be a string.') |
||||
} |
||||
if (typeof props['initials'] !== 'boolean' && props['initials'] !== undefined) { |
||||
return new Error('initials must be a boolean!') |
||||
} |
||||
} |
||||
} |
||||
|
||||
// ** Default Props
|
||||
Avatar.defaultProps = { |
||||
tag: 'div' |
||||
} |
Binary file not shown.
After Width: | Height: | Size: 334 KiB |
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,155 @@
|
||||
import React, { useCallback, useEffect, useMemo, useRef, useState } from 'react' |
||||
// import Highcharts from 'highcharts'
|
||||
// import HighchartsReact from 'highcharts-react-official'
|
||||
// import { Button, CardText, Col, Row, Tag, UncontrolledTooltip } from 'reactstrap'
|
||||
// import { Badge } from 'primereact/badge'
|
||||
import { Button as ButtonP } from 'primereact/button' |
||||
import { format_angka } from '../util' |
||||
// import collect from 'collect.js'
|
||||
import jquery from 'jquery' |
||||
import 'primereact/resources/themes/bootstrap4-light-blue/theme.css' |
||||
import 'primeflex/primeflex.css' |
||||
// import Avatar from '../../commons/avatar'
|
||||
// import classnames from 'classnames'
|
||||
// import { Sidebar } from 'primereact/sidebar'
|
||||
// import { MantineReactTable, useMantineReactTable } from 'mantine-react-table'
|
||||
// import { Text } from '@mantine/core'
|
||||
|
||||
// import { QueryClient, QueryClientProvider, useInfiniteQuery } from '@tanstack/react-query'
|
||||
// import dayjs from 'dayjs'
|
||||
import { Skeleton } from '@mui/material' |
||||
// import { ArchiveRounded, Money, MoneyRounded } from '@mui/icons-material'
|
||||
import 'primeicons/primeicons.css' |
||||
import { useDispatch, useSelector } from 'react-redux' |
||||
import { setProgresifitasPembayaran } from '../store/KpdlStore' |
||||
import Pembayaran from './tabelPerubahanPerilaku/pembayaran' |
||||
import { Col, Row } from 'reactstrap' |
||||
|
||||
var relativeTime = require('dayjs/plugin/relativeTime') |
||||
const fetchSize = 101 |
||||
|
||||
const PerubahanPerilaku = ({ dataSend }) => { |
||||
const base_url = '/engineN/' |
||||
const [data, setData] = useState(null) |
||||
const [selectedBulan, setSelectedBulan] = useState('') |
||||
const [selectedBulanText, setSelectedBulanText] = useState('semua') |
||||
const [bulan, setBulan] = useState([]) |
||||
|
||||
const [query, setQuery] = useState(null) |
||||
const [loading, setLoading] = useState(false) |
||||
|
||||
const [jenisPerubahan, setJenisPerubahan] = useState({ pembayaran: { nilai: 0 } }, { pelaporan: { nilai: 0 } }) |
||||
const kpdlStore = useSelector((state) => state.kpdl) |
||||
const dispatch = useDispatch() |
||||
|
||||
const [visibleSidebar1, setVisibleSidebar1] = useState(false) |
||||
const [visibleSidebar2, setVisibleSidebar2] = useState(false) |
||||
const [visibleSidebar3, setVisibleSidebar3] = useState(false) |
||||
useEffect(() => { |
||||
setLoading(true) |
||||
jquery.get({ |
||||
url: base_url + 'kewilayahan/kytp/perubahanperilaku', |
||||
dataType: 'json', |
||||
type: 'POST', |
||||
data: { |
||||
...dataSend |
||||
}, |
||||
success: (data) => { |
||||
setData(data) |
||||
dispatch(setProgresifitasPembayaran(data.dataC)) |
||||
setLoading(false) |
||||
} |
||||
}) |
||||
}, [dataSend]) |
||||
|
||||
// useEffect(() => {
|
||||
// const filtered = kpdlStore.progresifitasPembayaran ? kpdlStore.progresifitasPembayaran.filter((val, key) => val.color === 'black') : 0
|
||||
// // console.log({ filtered })
|
||||
// }, [kpdlStore])
|
||||
return ( |
||||
<> |
||||
<Row> |
||||
<Col sm="12"> |
||||
<h5 className="mb-4 text-center f-16 fw-600 text-700">Perubahan Perilaku WP Pasca kegiatan Matoa</h5> |
||||
<div className="grid"> |
||||
<div className="col-12 md:col-6 lg:col-3"> |
||||
<div className="surface-0 shadow-2 p-3 border-1 border-50 border-round"> |
||||
<div className="flex justify-content-between mb-3"> |
||||
<div> |
||||
<span className="block text-700 font-medium mb-3">Pembayaran</span> |
||||
<div className="text-900 font-medium text-xl"> |
||||
{loading ? ( |
||||
<Skeleton width={'60px'} height={'60px'} variant="rectangular" /> |
||||
) : ( |
||||
<ButtonP |
||||
placeholder="Right" |
||||
tooltip="Semula tidak bayar menjadi bayar" |
||||
className="text-white" |
||||
label={data?.pembayaran} |
||||
severity="" |
||||
rounded |
||||
onClick={() => setVisibleSidebar1(true)} |
||||
/> |
||||
)} |
||||
</div> |
||||
</div> |
||||
<div className="flex align-items-center justify-content-center bg-green-100 border-round" style={{ width: '2.5rem', height: '2.5rem' }}> |
||||
<i className="pi pi-money-bill text-green-500 text-xl"></i> |
||||
</div> |
||||
</div> |
||||
<span className="text-green-500 font-medium">Rp {format_angka(data?.pembayaranRupiah ?? 0)}</span> |
||||
{/* <span className="text-500">since last visit</span> */} |
||||
</div> |
||||
</div> |
||||
<div className="col-12 md:col-6 lg:col-3"> |
||||
<div className="surface-0 shadow-2 p-3 border-1 border-50 border-round"> |
||||
<div className="flex justify-content-between mb-3"> |
||||
<div> |
||||
<span className="block text-600 font-medium mb-3">Pelaporan SPT Tahunan</span> |
||||
<div className="text-900 font-medium text-xl"> |
||||
{loading ? ( |
||||
<Skeleton width={'60px'} height={'60px'} variant="rectangular" /> |
||||
) : ( |
||||
<ButtonP className="text-white" label={data?.pelaporan} severity="" rounded /> |
||||
)} |
||||
</div> |
||||
</div> |
||||
<div className="flex align-items-center justify-content-center bg-orange-100 border-round" style={{ width: '2.5rem', height: '2.5rem' }}> |
||||
<i className="pi pi-envelope text-orange-500 text-xl"></i> |
||||
</div> |
||||
</div> |
||||
<span className="text-green-500 font-medium">-</span> |
||||
{/* <span className="text-500">since last week</span> */} |
||||
</div> |
||||
</div> |
||||
|
||||
<div className="col-12 md:col-6 lg:col-3"> |
||||
<div className="surface-0 shadow-2 p-3 border-1 border-50 border-round"> |
||||
<div className="flex justify-content-between mb-3"> |
||||
<div> |
||||
<span className="block text-600 font-medium mb-3">Pendaftaran NPWP</span> |
||||
<div className="text-900 font-medium text-xl"> |
||||
{loading ? ( |
||||
<Skeleton width={'60px'} height={'60px'} variant="rectangular" /> |
||||
) : ( |
||||
<ButtonP className="text-white" label={data?.pendaftaran} severity="" rounded /> |
||||
)} |
||||
</div> |
||||
</div> |
||||
<div className="flex align-items-center justify-content-center bg-purple-100 border-round" style={{ width: '2.5rem', height: '2.5rem' }}> |
||||
<i className="pi pi-user-plus text-purple-500 text-xl"></i> |
||||
</div> |
||||
</div> |
||||
<span className="text-green-500 font-medium">-</span> |
||||
{/* <span className="text-500">since last week</span> */} |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</Col> |
||||
</Row> |
||||
<Pembayaran dataSend={dataSend} visibleSidebar={visibleSidebar1} setVisibleSidebar={setVisibleSidebar1} /> |
||||
</> |
||||
) |
||||
} |
||||
|
||||
export default PerubahanPerilaku |
@ -0,0 +1,252 @@
|
||||
import React, { useCallback, useEffect, useMemo, useRef, useState } from 'react' |
||||
// import Highcharts from 'highcharts'
|
||||
// import HighchartsReact from 'highcharts-react-official'
|
||||
import { Col, Row } from 'reactstrap' |
||||
// import { format_angka } from '../util'
|
||||
// import collect from 'collect.js'
|
||||
import jquery from 'jquery' |
||||
|
||||
import { Sidebar } from 'primereact/sidebar' |
||||
import '/node_modules/primeflex/primeflex.css' |
||||
import { MantineReactTable, useMantineReactTable } from 'mantine-react-table' |
||||
import { Text } from '@mantine/core' |
||||
|
||||
import { QueryClient, QueryClientProvider, useInfiniteQuery } from '@tanstack/react-query' |
||||
import dayjs from 'dayjs' |
||||
// import ViewICale from './ViewICale'
|
||||
// import { Dialog } from '@mui/material'
|
||||
var relativeTime = require('dayjs/plugin/relativeTime') |
||||
var customParseFormat = require('dayjs/plugin/customParseFormat') |
||||
const fetchSize = 101 |
||||
|
||||
const Pembayaran = ({ dataSend, visibleSidebar, setVisibleSidebar }) => { |
||||
const base_url = '/engineN/' |
||||
|
||||
// const refChart = useRef(null)
|
||||
// const refChart2 = useRef(null)
|
||||
// const [dataJenis, setDataJenis] = useState(null)
|
||||
// const [dataStatus, setDataStatus] = useState(null)
|
||||
|
||||
// const [query, setQuery] = useState(null)
|
||||
// const [jenisStatus, setJenisStatus] = useState('')
|
||||
// const [visibleICale, setVisibleIcale] = useState(false)
|
||||
|
||||
const TableDetailGraph = ({ dataSend }) => { |
||||
const tableContainerRef = useRef(null) |
||||
const rowVirtualizerInstanceRef = useRef(null) |
||||
const [columnFilters, setColumnFilters] = useState([]) |
||||
const [globalFilter, setGlobalFilter] = useState() |
||||
const [sorting, setSorting] = useState([]) |
||||
const base_url = location.protocol + '//' + location.hostname + '/engineN/' |
||||
const { data, fetchNextPage, isError, isFetching, isLoading } = useInfiniteQuery({ |
||||
queryKey: ['table-data', columnFilters, globalFilter, sorting], |
||||
|
||||
queryFn: async ({ pageParam = 0 }) => { |
||||
const url = new URL(base_url + 'kewilayahan/identaktifitashasil/perubahanperilaku/detail') |
||||
url.searchParams.set('start', `${pageParam * fetchSize}`) |
||||
url.searchParams.set('size', `${fetchSize}`) |
||||
url.searchParams.set('filters', JSON.stringify(columnFilters ?? [])) |
||||
url.searchParams.set('globalFilter', globalFilter ?? '') |
||||
url.searchParams.set('sorting', JSON.stringify(sorting ?? [])) |
||||
|
||||
const response = await fetch(url.href, { |
||||
method: 'POST', |
||||
headers: { |
||||
Accept: 'application/json', |
||||
'Content-Type': 'application/json' |
||||
}, |
||||
body: JSON.stringify({ |
||||
...dataSend |
||||
}) |
||||
}) |
||||
|
||||
const json = await response.json() |
||||
return json |
||||
}, |
||||
getNextPageParam: (_lastGroup, groups) => groups.length, |
||||
keepPreviousData: true, |
||||
refetchOnWindowFocus: false |
||||
}) |
||||
|
||||
const flatData = useMemo(() => data?.pages.flatMap((page) => page.data) ?? [], [data]) |
||||
const totalDBRowCount = data?.pages?.[0]?.meta?.totalRowCount ?? 0 |
||||
const totalFetched = flatData.length |
||||
|
||||
const fetchMoreOnBottomReached = useCallback( |
||||
(containerRefElement) => { |
||||
if (containerRefElement) { |
||||
const { scrollHeight, scrollTop, clientHeight } = containerRefElement |
||||
//once the user has scrolled within 400px of the bottom of the table, fetch more data if we can
|
||||
if (scrollHeight - scrollTop - clientHeight < 400 && !isFetching && totalFetched < totalDBRowCount) { |
||||
fetchNextPage() |
||||
} |
||||
} |
||||
}, |
||||
|
||||
[fetchNextPage, isFetching, totalFetched, totalDBRowCount] |
||||
) |
||||
|
||||
const columns = [ |
||||
{ |
||||
accessorKey: 'NPWP', |
||||
header: 'NPWP', |
||||
enableClickToCopy: true, |
||||
size: 150 |
||||
}, |
||||
{ |
||||
accessorKey: 'NAMA_WP', |
||||
header: 'Nama' |
||||
}, |
||||
{ |
||||
accessorKey: 'ALAMAT_MFWP', |
||||
header: 'Alamat' |
||||
}, |
||||
{ |
||||
accessorKey: 'KELURAHAN_MFWP', |
||||
header: 'Wil. Adm.', |
||||
Cell: (data) => { |
||||
const dataRow = data.row.original |
||||
return `${dataRow.KELURAHAN_MFWP ?? ''} ${dataRow.KECAMATAN_MFWP ?? ''} ${dataRow.KOTA_MFWP ?? ''} ${dataRow.PROPINSI_MFWP ?? ''}` |
||||
} |
||||
}, |
||||
{ |
||||
accessorKey: 'STATUS_WP_MFWP', |
||||
header: 'Status WP' |
||||
}, |
||||
{ |
||||
accessorKey: 'JNS_WP_MFWP', |
||||
header: 'Jenis WP' |
||||
}, |
||||
{ |
||||
accessorKey: 'NM_KANTOR', |
||||
header: 'KPP Terdaftar' |
||||
}, |
||||
{ |
||||
accessorKey: 'NAMA_AR_MFWP', |
||||
header: 'AR' |
||||
}, |
||||
{ |
||||
accessorKey: 'FLAG_WPS_WPK', |
||||
header: 'WPS/WPK', |
||||
size: 100, |
||||
mantineTableBodyCellProps: { |
||||
align: 'center' |
||||
} |
||||
}, |
||||
{ |
||||
accessorKey: 'JUMLAH_PEMBAYARAN_THN_TERAKHIR', |
||||
header: 'Rp', |
||||
Cell: ({ cell }) => parseFloat(cell.getValue()).toLocaleString('id-ID'), |
||||
mantineTableHeadCellProps: { |
||||
align: 'right' |
||||
}, |
||||
mantineTableBodyCellProps: { |
||||
align: 'right' |
||||
}, |
||||
size: 100 |
||||
}, |
||||
{ |
||||
accessorKey: 'KETERANGAN', |
||||
header: 'SPT' |
||||
}, |
||||
{ |
||||
accessorKey: 'TGL_DAFTAR', |
||||
header: 'Tgl Daftar', |
||||
Cell: ({ cell }) => { |
||||
return dayjs(cell.getValue(), 'DD-MMM-YY').format('YYYY-MM-DD') |
||||
} |
||||
} |
||||
] |
||||
|
||||
useEffect(() => { |
||||
if (rowVirtualizerInstanceRef.current) { |
||||
try { |
||||
rowVirtualizerInstanceRef.current.scrollToIndex(0) |
||||
} catch (e) { |
||||
console.error(e) |
||||
} |
||||
} |
||||
}, [sorting, columnFilters, globalFilter]) |
||||
|
||||
//a check on mount to see if the table is already scrolled to the bottom and immediately needs to fetch more data
|
||||
|
||||
useEffect(() => { |
||||
fetchMoreOnBottomReached(tableContainerRef.current) |
||||
}, [fetchMoreOnBottomReached]) |
||||
|
||||
const table1 = useMantineReactTable({ |
||||
columns, |
||||
data: flatData, |
||||
enablePagination: false, |
||||
enableRowNumbers: true, |
||||
enableRowVirtualization: true, //optional, but recommended if it is likely going to be more than 100 rows
|
||||
manualFiltering: true, |
||||
manualSorting: true, |
||||
mantineTableContainerProps: { |
||||
ref: tableContainerRef, //get access to the table container element
|
||||
sx: { maxHeight: '600px' }, //give the table a max height
|
||||
onScroll: (event) => fetchMoreOnBottomReached(event.target) |
||||
}, |
||||
mantineToolbarAlertBannerProps: { |
||||
color: 'red', |
||||
children: 'Error loading data' |
||||
}, |
||||
onColumnFiltersChange: setColumnFilters, |
||||
onGlobalFilterChange: setGlobalFilter, |
||||
onSortingChange: setSorting, |
||||
renderBottomToolbarCustomActions: () => ( |
||||
<Text className="text-sm"> |
||||
Fetched {totalFetched} of {totalDBRowCount} total rows. |
||||
</Text> |
||||
), |
||||
state: { |
||||
columnFilters, |
||||
globalFilter, |
||||
isLoading, |
||||
showAlertBanner: isError, |
||||
showProgressBars: isFetching, |
||||
sorting |
||||
}, |
||||
rowVirtualizerInstanceRef, //get access to the virtualizer instance
|
||||
rowVirtualizerProps: { overscan: 10 }, |
||||
mantineTableBodyCellProps: { className: 'p-1 text-xs' }, |
||||
mantineTableBodyProps: { className: 'mb-3' } |
||||
}) |
||||
|
||||
return <MantineReactTable table={table1} /> |
||||
} |
||||
|
||||
const queryClient = new QueryClient() |
||||
|
||||
return ( |
||||
<> |
||||
<Row> |
||||
<Col sm="12"> |
||||
<Sidebar |
||||
header={ |
||||
<> |
||||
<h4>Detail Data</h4> |
||||
</> |
||||
} |
||||
visible={visibleSidebar} |
||||
position="bottom" |
||||
onHide={() => setVisibleSidebar(false)} |
||||
style={{ height: 'calc(100vh - 100px)' }} |
||||
blockScroll |
||||
pt={{ header: { className: 'p-1' }, closeButton: { style: { width: '2rem', height: '1rem' } } }} |
||||
> |
||||
<Row> |
||||
<Col sm="12"> |
||||
<QueryClientProvider client={queryClient}> |
||||
<TableDetailGraph dataSend={dataSend} /> |
||||
</QueryClientProvider> |
||||
</Col> |
||||
</Row> |
||||
</Sidebar> |
||||
</Col> |
||||
</Row> |
||||
</> |
||||
) |
||||
} |
||||
|
||||
export default Pembayaran |
@ -0,0 +1,70 @@
|
||||
import * as React from 'react' |
||||
import Button from '@mui/material/Button' |
||||
import { styled } from '@mui/material/styles' |
||||
import Dialog from '@mui/material/Dialog' |
||||
import DialogTitle from '@mui/material/DialogTitle' |
||||
import DialogContent from '@mui/material/DialogContent' |
||||
import DialogActions from '@mui/material/DialogActions' |
||||
import IconButton from '@mui/material/IconButton' |
||||
import CloseIcon from '@mui/icons-material/Close' |
||||
import Typography from '@mui/material/Typography' |
||||
|
||||
const BootstrapDialog = styled(Dialog)(({ theme }) => ({ |
||||
'& .MuiDialogContent-root': { |
||||
padding: theme.spacing(2) |
||||
}, |
||||
'& .MuiDialogActions-root': { |
||||
padding: theme.spacing(1) |
||||
} |
||||
})) |
||||
|
||||
const ViewICale = ({ visibleICale, setVisibleICale }) => { |
||||
const handleClickOpen = () => { |
||||
setVisibleICale(true) |
||||
} |
||||
const handleClose = () => { |
||||
setVisibleICale(false) |
||||
} |
||||
|
||||
return ( |
||||
<React.Fragment> |
||||
<BootstrapDialog onClose={handleClose} aria-labelledby="customized-dialog-title" open={visibleICale}> |
||||
<DialogTitle sx={{ m: 0, p: 2 }} id="customized-dialog-title"> |
||||
Modal title |
||||
</DialogTitle> |
||||
<IconButton |
||||
aria-label="close" |
||||
onClick={handleClose} |
||||
sx={(theme) => ({ |
||||
position: 'absolute', |
||||
right: 8, |
||||
top: 8, |
||||
color: theme.palette.grey[500] |
||||
})} |
||||
> |
||||
<CloseIcon /> |
||||
</IconButton> |
||||
<DialogContent dividers> |
||||
<Typography gutterBottom> |
||||
Cras mattis consectetur purus sit amet fermentum. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Morbi leo risus, porta ac consectetur |
||||
ac, vestibulum at eros. |
||||
</Typography> |
||||
<Typography gutterBottom> |
||||
Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. |
||||
</Typography> |
||||
<Typography gutterBottom> |
||||
Aenean lacinia bibendum nulla sed consectetur. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec sed odio dui. Donec |
||||
ullamcorper nulla non metus auctor fringilla. |
||||
</Typography> |
||||
</DialogContent> |
||||
<DialogActions> |
||||
<Button autoFocus onClick={handleClose}> |
||||
Save changes |
||||
</Button> |
||||
</DialogActions> |
||||
</BootstrapDialog> |
||||
</React.Fragment> |
||||
) |
||||
} |
||||
|
||||
export default ViewICale |
Binary file not shown.
After Width: | Height: | Size: 334 KiB |
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -0,0 +1,7 @@
|
||||
/*!*************************************************************************************!*\ |
||||
!*** ./app/Views/kewilayahan/kytp/componentPenugasanAktifitas/PerubahanPerilaku.js ***! |
||||
\*************************************************************************************/ |
||||
|
||||
/*!*****************************************************************************************************!*\ |
||||
!*** ./app/Views/kewilayahan/kytp/componentPenugasanAktifitas/tabelPerubahanPerilaku/pembayaran.js ***! |
||||
\*****************************************************************************************************/ |
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,287 @@
|
||||
/*!***********************************!*\ |
||||
!*** ./node_modules/gud/index.js ***! |
||||
\***********************************/ |
||||
|
||||
/*!************************************!*\ |
||||
!*** ./node_modules/gopd/index.js ***! |
||||
\************************************/ |
||||
|
||||
/*!**************************************!*\ |
||||
!*** ./node_modules/hasown/index.js ***! |
||||
\**************************************/ |
||||
|
||||
/*!***************************************!*\ |
||||
!*** ./node_modules/es-errors/ref.js ***! |
||||
\***************************************/ |
||||
|
||||
/*!***************************************!*\ |
||||
!*** ./node_modules/es-errors/uri.js ***! |
||||
\***************************************/ |
||||
|
||||
/*!****************************************!*\ |
||||
!*** ./node_modules/es-errors/eval.js ***! |
||||
\****************************************/ |
||||
|
||||
/*!****************************************!*\ |
||||
!*** ./node_modules/es-errors/type.js ***! |
||||
\****************************************/ |
||||
|
||||
/*!****************************************!*\ |
||||
!*** ./node_modules/is-regex/index.js ***! |
||||
\****************************************/ |
||||
|
||||
/*!****************************************!*\ |
||||
!*** ./node_modules/object-is/shim.js ***! |
||||
\****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/call-bind/index.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/es-errors/index.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/es-errors/range.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/has-proto/index.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/object-is/index.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/warning/warning.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!******************************************!*\ |
||||
!*** ./node_modules/deep-equal/index.js ***! |
||||
\******************************************/ |
||||
|
||||
/*!******************************************!*\ |
||||
!*** ./node_modules/es-errors/syntax.js ***! |
||||
\******************************************/ |
||||
|
||||
/*!*******************************************!*\ |
||||
!*** ./node_modules/has-symbols/index.js ***! |
||||
\*******************************************/ |
||||
|
||||
/*!*******************************************!*\ |
||||
!*** ./node_modules/has-symbols/shams.js ***! |
||||
\*******************************************/ |
||||
|
||||
/*!*******************************************!*\ |
||||
!*** ./node_modules/object-keys/index.js ***! |
||||
\*******************************************/ |
||||
|
||||
/*!********************************************!*\ |
||||
!*** ./node_modules/is-arguments/index.js ***! |
||||
\********************************************/ |
||||
|
||||
/*!********************************************!*\ |
||||
!*** ./node_modules/object-is/polyfill.js ***! |
||||
\********************************************/ |
||||
|
||||
/*!********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Fade.js ***! |
||||
\********************************************/ |
||||
|
||||
/*!*********************************************!*\ |
||||
!*** ./node_modules/call-bind/callBound.js ***! |
||||
\*********************************************/ |
||||
|
||||
/*!*********************************************!*\ |
||||
!*** ./node_modules/function-bind/index.js ***! |
||||
\*********************************************/ |
||||
|
||||
/*!*********************************************!*\ |
||||
!*** ./node_modules/get-intrinsic/index.js ***! |
||||
\*********************************************/ |
||||
|
||||
/*!*********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Badge.js ***! |
||||
\*********************************************/ |
||||
|
||||
/*!**********************************************!*\ |
||||
!*** ./node_modules/is-date-object/index.js ***! |
||||
\**********************************************/ |
||||
|
||||
/*!***********************************************!*\ |
||||
!*** ./node_modules/has-tostringtag/shams.js ***! |
||||
\***********************************************/ |
||||
|
||||
/*!***********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Tooltip.js ***! |
||||
\***********************************************/ |
||||
|
||||
/*!************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/CardText.js ***! |
||||
\************************************************/ |
||||
|
||||
/*!*************************************************!*\ |
||||
!*** ./node_modules/define-properties/index.js ***! |
||||
\*************************************************/ |
||||
|
||||
/*!*************************************************!*\ |
||||
!*** ./node_modules/object-keys/isArguments.js ***! |
||||
\*************************************************/ |
||||
|
||||
/*!*************************************************!*\ |
||||
!*** ./node_modules/set-function-name/index.js ***! |
||||
\*************************************************/ |
||||
|
||||
/*!**************************************************!*\ |
||||
!*** ./node_modules/es-define-property/index.js ***! |
||||
\**************************************************/ |
||||
|
||||
/*!**************************************************!*\ |
||||
!*** ./node_modules/object-is/implementation.js ***! |
||||
\**************************************************/ |
||||
|
||||
/*!***************************************************!*\ |
||||
!*** ./node_modules/popper.js/dist/esm/popper.js ***! |
||||
\***************************************************/ |
||||
|
||||
/*!***************************************************!*\ |
||||
!*** ./node_modules/set-function-length/index.js ***! |
||||
\***************************************************/ |
||||
|
||||
/*!****************************************************!*\ |
||||
!*** ./node_modules/define-data-property/index.js ***! |
||||
\****************************************************/ |
||||
|
||||
/*!****************************************************!*\ |
||||
!*** ./node_modules/functions-have-names/index.js ***! |
||||
\****************************************************/ |
||||
|
||||
/*!****************************************************!*\ |
||||
!*** ./node_modules/object-keys/implementation.js ***! |
||||
\****************************************************/ |
||||
|
||||
/*!****************************************************!*\ |
||||
!*** ./node_modules/react-popper/lib/esm/utils.js ***! |
||||
\****************************************************/ |
||||
|
||||
/*!*****************************************************!*\ |
||||
!*** ./node_modules/react-popper/lib/esm/Popper.js ***! |
||||
\*****************************************************/ |
||||
|
||||
/*!*****************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/PopperContent.js ***! |
||||
\*****************************************************/ |
||||
|
||||
/*!*****************************************************!*\ |
||||
!*** ./node_modules/regexp.prototype.flags/shim.js ***! |
||||
\*****************************************************/ |
||||
|
||||
/*!******************************************************!*\ |
||||
!*** ./node_modules/function-bind/implementation.js ***! |
||||
\******************************************************/ |
||||
|
||||
/*!******************************************************!*\ |
||||
!*** ./node_modules/react-popper/lib/esm/Manager.js ***! |
||||
\******************************************************/ |
||||
|
||||
/*!******************************************************!*\ |
||||
!*** ./node_modules/regexp.prototype.flags/index.js ***! |
||||
\******************************************************/ |
||||
|
||||
/*!*******************************************************!*\ |
||||
!*** ./node_modules/@mui/material/styles/cssUtils.js ***! |
||||
\*******************************************************/ |
||||
|
||||
/*!********************************************************!*\ |
||||
!*** ./node_modules/has-property-descriptors/index.js ***! |
||||
\********************************************************/ |
||||
|
||||
/*!*********************************************************!*\ |
||||
!*** ./node_modules/@mui/material/Skeleton/Skeleton.js ***! |
||||
\*********************************************************/ |
||||
|
||||
/*!*********************************************************!*\ |
||||
!*** ./node_modules/regexp.prototype.flags/polyfill.js ***! |
||||
\*********************************************************/ |
||||
|
||||
/*!***********************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/UncontrolledTooltip.js ***! |
||||
\***********************************************************/ |
||||
|
||||
/*!*************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/TooltipPopoverWrapper.js ***! |
||||
\*************************************************************/ |
||||
|
||||
/*!**************************************************************!*\ |
||||
!*** ./node_modules/@mui/icons-material/esm/MoneyRounded.js ***! |
||||
\**************************************************************/ |
||||
|
||||
/*!***************************************************************!*\ |
||||
!*** ./node_modules/regexp.prototype.flags/implementation.js ***! |
||||
\***************************************************************/ |
||||
|
||||
/*!****************************************************************!*\ |
||||
!*** ./node_modules/@mui/icons-material/esm/ArchiveRounded.js ***! |
||||
\****************************************************************/ |
||||
|
||||
/*!****************************************************************!*\ |
||||
!*** ./node_modules/@mui/material/Skeleton/skeletonClasses.js ***! |
||||
\****************************************************************/ |
||||
|
||||
/*!*******************************************************************!*\ |
||||
!*** ./node_modules/@hypnosphi/create-react-context/lib/index.js ***! |
||||
\*******************************************************************/ |
||||
|
||||
/*!**********************************************************************!*\ |
||||
!*** ./node_modules/@babel/runtime/helpers/interopRequireDefault.js ***! |
||||
\**********************************************************************/ |
||||
|
||||
/*!****************************************************************************!*\ |
||||
!*** ./node_modules/@hypnosphi/create-react-context/lib/implementation.js ***! |
||||
\****************************************************************************/ |
||||
|
||||
/*!****************************************************************************!*\ |
||||
!*** ./node_modules/react-lifecycles-compat/react-lifecycles-compat.es.js ***! |
||||
\****************************************************************************/ |
||||
|
||||
/*!****************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/dom-helpers/class/addClass.js ***! |
||||
\****************************************************************************/ |
||||
|
||||
/*!****************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/dom-helpers/class/hasClass.js ***! |
||||
\****************************************************************************/ |
||||
|
||||
/*!******************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/index.js ***! |
||||
\******************************************************************************/ |
||||
|
||||
/*!*******************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/dom-helpers/class/removeClass.js ***! |
||||
\*******************************************************************************/ |
||||
|
||||
/*!***********************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/Transition.js ***! |
||||
\***********************************************************************************/ |
||||
|
||||
/*!**************************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/CSSTransition.js ***! |
||||
\**************************************************************************************/ |
||||
|
||||
/*!****************************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/TransitionGroup.js ***! |
||||
\****************************************************************************************/ |
||||
|
||||
/*!****************************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/utils/PropTypes.js ***! |
||||
\****************************************************************************************/ |
||||
|
||||
/*!******************************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/ReplaceTransition.js ***! |
||||
\******************************************************************************************/ |
||||
|
||||
/*!*******************************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/utils/ChildMapping.js ***! |
||||
\*******************************************************************************************/ |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,295 @@
|
||||
/*!***********************************!*\ |
||||
!*** ./node_modules/gud/index.js ***! |
||||
\***********************************/ |
||||
|
||||
/*!************************************!*\ |
||||
!*** ./node_modules/gopd/index.js ***! |
||||
\************************************/ |
||||
|
||||
/*!**************************************!*\ |
||||
!*** ./node_modules/hasown/index.js ***! |
||||
\**************************************/ |
||||
|
||||
/*!***************************************!*\ |
||||
!*** ./node_modules/es-errors/ref.js ***! |
||||
\***************************************/ |
||||
|
||||
/*!***************************************!*\ |
||||
!*** ./node_modules/es-errors/uri.js ***! |
||||
\***************************************/ |
||||
|
||||
/*!****************************************!*\ |
||||
!*** ./node_modules/es-errors/eval.js ***! |
||||
\****************************************/ |
||||
|
||||
/*!****************************************!*\ |
||||
!*** ./node_modules/es-errors/type.js ***! |
||||
\****************************************/ |
||||
|
||||
/*!****************************************!*\ |
||||
!*** ./node_modules/is-regex/index.js ***! |
||||
\****************************************/ |
||||
|
||||
/*!****************************************!*\ |
||||
!*** ./node_modules/object-is/shim.js ***! |
||||
\****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/call-bind/index.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/es-errors/index.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/es-errors/range.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/has-proto/index.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/object-is/index.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/warning/warning.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!******************************************!*\ |
||||
!*** ./node_modules/deep-equal/index.js ***! |
||||
\******************************************/ |
||||
|
||||
/*!******************************************!*\ |
||||
!*** ./node_modules/es-errors/syntax.js ***! |
||||
\******************************************/ |
||||
|
||||
/*!*******************************************!*\ |
||||
!*** ./node_modules/has-symbols/index.js ***! |
||||
\*******************************************/ |
||||
|
||||
/*!*******************************************!*\ |
||||
!*** ./node_modules/has-symbols/shams.js ***! |
||||
\*******************************************/ |
||||
|
||||
/*!*******************************************!*\ |
||||
!*** ./node_modules/object-keys/index.js ***! |
||||
\*******************************************/ |
||||
|
||||
/*!********************************************!*\ |
||||
!*** ./node_modules/is-arguments/index.js ***! |
||||
\********************************************/ |
||||
|
||||
/*!********************************************!*\ |
||||
!*** ./node_modules/object-is/polyfill.js ***! |
||||
\********************************************/ |
||||
|
||||
/*!********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Fade.js ***! |
||||
\********************************************/ |
||||
|
||||
/*!*********************************************!*\ |
||||
!*** ./node_modules/call-bind/callBound.js ***! |
||||
\*********************************************/ |
||||
|
||||
/*!*********************************************!*\ |
||||
!*** ./node_modules/function-bind/index.js ***! |
||||
\*********************************************/ |
||||
|
||||
/*!*********************************************!*\ |
||||
!*** ./node_modules/get-intrinsic/index.js ***! |
||||
\*********************************************/ |
||||
|
||||
/*!*********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Badge.js ***! |
||||
\*********************************************/ |
||||
|
||||
/*!**********************************************!*\ |
||||
!*** ./node_modules/is-date-object/index.js ***! |
||||
\**********************************************/ |
||||
|
||||
/*!**********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Button.js ***! |
||||
\**********************************************/ |
||||
|
||||
/*!***********************************************!*\ |
||||
!*** ./node_modules/has-tostringtag/shams.js ***! |
||||
\***********************************************/ |
||||
|
||||
/*!***********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Tooltip.js ***! |
||||
\***********************************************/ |
||||
|
||||
/*!************************************************!*\ |
||||
!*** ./node_modules/primeicons/primeicons.css ***! |
||||
\************************************************/ |
||||
|
||||
/*!************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/CardText.js ***! |
||||
\************************************************/ |
||||
|
||||
/*!*************************************************!*\ |
||||
!*** ./node_modules/define-properties/index.js ***! |
||||
\*************************************************/ |
||||
|
||||
/*!*************************************************!*\ |
||||
!*** ./node_modules/object-keys/isArguments.js ***! |
||||
\*************************************************/ |
||||
|
||||
/*!*************************************************!*\ |
||||
!*** ./node_modules/set-function-name/index.js ***! |
||||
\*************************************************/ |
||||
|
||||
/*!**************************************************!*\ |
||||
!*** ./node_modules/es-define-property/index.js ***! |
||||
\**************************************************/ |
||||
|
||||
/*!**************************************************!*\ |
||||
!*** ./node_modules/object-is/implementation.js ***! |
||||
\**************************************************/ |
||||
|
||||
/*!***************************************************!*\ |
||||
!*** ./node_modules/popper.js/dist/esm/popper.js ***! |
||||
\***************************************************/ |
||||
|
||||
/*!***************************************************!*\ |
||||
!*** ./node_modules/set-function-length/index.js ***! |
||||
\***************************************************/ |
||||
|
||||
/*!****************************************************!*\ |
||||
!*** ./node_modules/define-data-property/index.js ***! |
||||
\****************************************************/ |
||||
|
||||
/*!****************************************************!*\ |
||||
!*** ./node_modules/functions-have-names/index.js ***! |
||||
\****************************************************/ |
||||
|
||||
/*!****************************************************!*\ |
||||
!*** ./node_modules/object-keys/implementation.js ***! |
||||
\****************************************************/ |
||||
|
||||
/*!****************************************************!*\ |
||||
!*** ./node_modules/react-popper/lib/esm/utils.js ***! |
||||
\****************************************************/ |
||||
|
||||
/*!*****************************************************!*\ |
||||
!*** ./node_modules/react-popper/lib/esm/Popper.js ***! |
||||
\*****************************************************/ |
||||
|
||||
/*!*****************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/PopperContent.js ***! |
||||
\*****************************************************/ |
||||
|
||||
/*!*****************************************************!*\ |
||||
!*** ./node_modules/regexp.prototype.flags/shim.js ***! |
||||
\*****************************************************/ |
||||
|
||||
/*!******************************************************!*\ |
||||
!*** ./node_modules/function-bind/implementation.js ***! |
||||
\******************************************************/ |
||||
|
||||
/*!******************************************************!*\ |
||||
!*** ./node_modules/react-popper/lib/esm/Manager.js ***! |
||||
\******************************************************/ |
||||
|
||||
/*!******************************************************!*\ |
||||
!*** ./node_modules/regexp.prototype.flags/index.js ***! |
||||
\******************************************************/ |
||||
|
||||
/*!*******************************************************!*\ |
||||
!*** ./node_modules/@mui/material/styles/cssUtils.js ***! |
||||
\*******************************************************/ |
||||
|
||||
/*!********************************************************!*\ |
||||
!*** ./node_modules/has-property-descriptors/index.js ***! |
||||
\********************************************************/ |
||||
|
||||
/*!*********************************************************!*\ |
||||
!*** ./node_modules/@mui/material/Skeleton/Skeleton.js ***! |
||||
\*********************************************************/ |
||||
|
||||
/*!*********************************************************!*\ |
||||
!*** ./node_modules/regexp.prototype.flags/polyfill.js ***! |
||||
\*********************************************************/ |
||||
|
||||
/*!***********************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/UncontrolledTooltip.js ***! |
||||
\***********************************************************/ |
||||
|
||||
/*!*************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/TooltipPopoverWrapper.js ***! |
||||
\*************************************************************/ |
||||
|
||||
/*!**************************************************************!*\ |
||||
!*** ./node_modules/@mui/icons-material/esm/MoneyRounded.js ***! |
||||
\**************************************************************/ |
||||
|
||||
/*!***************************************************************!*\ |
||||
!*** ./node_modules/regexp.prototype.flags/implementation.js ***! |
||||
\***************************************************************/ |
||||
|
||||
/*!****************************************************************!*\ |
||||
!*** ./node_modules/@mui/icons-material/esm/ArchiveRounded.js ***! |
||||
\****************************************************************/ |
||||
|
||||
/*!****************************************************************!*\ |
||||
!*** ./node_modules/@mui/material/Skeleton/skeletonClasses.js ***! |
||||
\****************************************************************/ |
||||
|
||||
/*!*******************************************************************!*\ |
||||
!*** ./node_modules/@hypnosphi/create-react-context/lib/index.js ***! |
||||
\*******************************************************************/ |
||||
|
||||
/*!**********************************************************************!*\ |
||||
!*** ./node_modules/@babel/runtime/helpers/interopRequireDefault.js ***! |
||||
\**********************************************************************/ |
||||
|
||||
/*!****************************************************************************!*\ |
||||
!*** ./node_modules/@hypnosphi/create-react-context/lib/implementation.js ***! |
||||
\****************************************************************************/ |
||||
|
||||
/*!****************************************************************************!*\ |
||||
!*** ./node_modules/react-lifecycles-compat/react-lifecycles-compat.es.js ***! |
||||
\****************************************************************************/ |
||||
|
||||
/*!****************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/dom-helpers/class/addClass.js ***! |
||||
\****************************************************************************/ |
||||
|
||||
/*!****************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/dom-helpers/class/hasClass.js ***! |
||||
\****************************************************************************/ |
||||
|
||||
/*!******************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/index.js ***! |
||||
\******************************************************************************/ |
||||
|
||||
/*!*******************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/dom-helpers/class/removeClass.js ***! |
||||
\*******************************************************************************/ |
||||
|
||||
/*!***********************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/Transition.js ***! |
||||
\***********************************************************************************/ |
||||
|
||||
/*!**************************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/CSSTransition.js ***! |
||||
\**************************************************************************************/ |
||||
|
||||
/*!****************************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/TransitionGroup.js ***! |
||||
\****************************************************************************************/ |
||||
|
||||
/*!****************************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/utils/PropTypes.js ***! |
||||
\****************************************************************************************/ |
||||
|
||||
/*!******************************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/ReplaceTransition.js ***! |
||||
\******************************************************************************************/ |
||||
|
||||
/*!*******************************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/utils/ChildMapping.js ***! |
||||
\*******************************************************************************************/ |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,599 @@
|
||||
/*!***********************************!*\ |
||||
!*** ./node_modules/gud/index.js ***! |
||||
\***********************************/ |
||||
|
||||
/*!************************************!*\ |
||||
!*** ./node_modules/gopd/index.js ***! |
||||
\************************************/ |
||||
|
||||
/*!**************************************!*\ |
||||
!*** ./node_modules/hasown/index.js ***! |
||||
\**************************************/ |
||||
|
||||
/*!***************************************!*\ |
||||
!*** ./node_modules/es-errors/ref.js ***! |
||||
\***************************************/ |
||||
|
||||
/*!***************************************!*\ |
||||
!*** ./node_modules/es-errors/uri.js ***! |
||||
\***************************************/ |
||||
|
||||
/*!****************************************!*\ |
||||
!*** ./node_modules/es-errors/eval.js ***! |
||||
\****************************************/ |
||||
|
||||
/*!****************************************!*\ |
||||
!*** ./node_modules/es-errors/type.js ***! |
||||
\****************************************/ |
||||
|
||||
/*!****************************************!*\ |
||||
!*** ./node_modules/is-regex/index.js ***! |
||||
\****************************************/ |
||||
|
||||
/*!****************************************!*\ |
||||
!*** ./node_modules/object-is/shim.js ***! |
||||
\****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/call-bind/index.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/es-errors/index.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/es-errors/range.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/has-proto/index.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/object-is/index.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/warning/warning.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!******************************************!*\ |
||||
!*** ./node_modules/deep-equal/index.js ***! |
||||
\******************************************/ |
||||
|
||||
/*!******************************************!*\ |
||||
!*** ./node_modules/es-errors/syntax.js ***! |
||||
\******************************************/ |
||||
|
||||
/*!*******************************************!*\ |
||||
!*** ./node_modules/has-symbols/index.js ***! |
||||
\*******************************************/ |
||||
|
||||
/*!*******************************************!*\ |
||||
!*** ./node_modules/has-symbols/shams.js ***! |
||||
\*******************************************/ |
||||
|
||||
/*!*******************************************!*\ |
||||
!*** ./node_modules/object-keys/index.js ***! |
||||
\*******************************************/ |
||||
|
||||
/*!********************************************!*\ |
||||
!*** ./node_modules/is-arguments/index.js ***! |
||||
\********************************************/ |
||||
|
||||
/*!********************************************!*\ |
||||
!*** ./node_modules/object-is/polyfill.js ***! |
||||
\********************************************/ |
||||
|
||||
/*!********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Fade.js ***! |
||||
\********************************************/ |
||||
|
||||
/*!********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Form.js ***! |
||||
\********************************************/ |
||||
|
||||
/*!********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/List.js ***! |
||||
\********************************************/ |
||||
|
||||
/*!*********************************************!*\ |
||||
!*** ./node_modules/call-bind/callBound.js ***! |
||||
\*********************************************/ |
||||
|
||||
/*!*********************************************!*\ |
||||
!*** ./node_modules/function-bind/index.js ***! |
||||
\*********************************************/ |
||||
|
||||
/*!*********************************************!*\ |
||||
!*** ./node_modules/get-intrinsic/index.js ***! |
||||
\*********************************************/ |
||||
|
||||
/*!*********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Alert.js ***! |
||||
\*********************************************/ |
||||
|
||||
/*!*********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Badge.js ***! |
||||
\*********************************************/ |
||||
|
||||
/*!*********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Input.js ***! |
||||
\*********************************************/ |
||||
|
||||
/*!*********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Media.js ***! |
||||
\*********************************************/ |
||||
|
||||
/*!*********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Modal.js ***! |
||||
\*********************************************/ |
||||
|
||||
/*!*********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Toast.js ***! |
||||
\*********************************************/ |
||||
|
||||
/*!*********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/index.js ***! |
||||
\*********************************************/ |
||||
|
||||
/*!**********************************************!*\ |
||||
!*** ./node_modules/is-date-object/index.js ***! |
||||
\**********************************************/ |
||||
|
||||
/*!**********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Button.js ***! |
||||
\**********************************************/ |
||||
|
||||
/*!**********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Navbar.js ***! |
||||
\**********************************************/ |
||||
|
||||
/*!**********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Portal.js ***! |
||||
\**********************************************/ |
||||
|
||||
/*!***********************************************!*\ |
||||
!*** ./node_modules/has-tostringtag/shams.js ***! |
||||
\***********************************************/ |
||||
|
||||
/*!***********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/CardImg.js ***! |
||||
\***********************************************/ |
||||
|
||||
/*!***********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Popover.js ***! |
||||
\***********************************************/ |
||||
|
||||
/*!***********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Spinner.js ***! |
||||
\***********************************************/ |
||||
|
||||
/*!***********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Tooltip.js ***! |
||||
\***********************************************/ |
||||
|
||||
/*!************************************************!*\ |
||||
!*** ./node_modules/primeicons/primeicons.css ***! |
||||
\************************************************/ |
||||
|
||||
/*!************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/CardDeck.js ***! |
||||
\************************************************/ |
||||
|
||||
/*!************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/CardLink.js ***! |
||||
\************************************************/ |
||||
|
||||
/*!************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/CardText.js ***! |
||||
\************************************************/ |
||||
|
||||
/*!************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Carousel.js ***! |
||||
\************************************************/ |
||||
|
||||
/*!************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Collapse.js ***! |
||||
\************************************************/ |
||||
|
||||
/*!************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Dropdown.js ***! |
||||
\************************************************/ |
||||
|
||||
/*!************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/FormText.js ***! |
||||
\************************************************/ |
||||
|
||||
/*!************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Progress.js ***! |
||||
\************************************************/ |
||||
|
||||
/*!************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/polyfill.js ***! |
||||
\************************************************/ |
||||
|
||||
/*!*************************************************!*\ |
||||
!*** ./node_modules/define-properties/index.js ***! |
||||
\*************************************************/ |
||||
|
||||
/*!*************************************************!*\ |
||||
!*** ./node_modules/object-keys/isArguments.js ***! |
||||
\*************************************************/ |
||||
|
||||
/*!*************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/CardGroup.js ***! |
||||
\*************************************************/ |
||||
|
||||
/*!*************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Container.js ***! |
||||
\*************************************************/ |
||||
|
||||
/*!*************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/FormGroup.js ***! |
||||
\*************************************************/ |
||||
|
||||
/*!*************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Jumbotron.js ***! |
||||
\*************************************************/ |
||||
|
||||
/*!*************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/ListGroup.js ***! |
||||
\*************************************************/ |
||||
|
||||
/*!*************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/ModalBody.js ***! |
||||
\*************************************************/ |
||||
|
||||
/*!*************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/ToastBody.js ***! |
||||
\*************************************************/ |
||||
|
||||
/*!*************************************************!*\ |
||||
!*** ./node_modules/set-function-name/index.js ***! |
||||
\*************************************************/ |
||||
|
||||
/*!**************************************************!*\ |
||||
!*** ./node_modules/es-define-property/index.js ***! |
||||
\**************************************************/ |
||||
|
||||
/*!**************************************************!*\ |
||||
!*** ./node_modules/object-is/implementation.js ***! |
||||
\**************************************************/ |
||||
|
||||
/*!**************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Breadcrumb.js ***! |
||||
\**************************************************/ |
||||
|
||||
/*!**************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/CardFooter.js ***! |
||||
\**************************************************/ |
||||
|
||||
/*!**************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/InputGroup.js ***! |
||||
\**************************************************/ |
||||
|
||||
/*!**************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/NavbarText.js ***! |
||||
\**************************************************/ |
||||
|
||||
/*!**************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Pagination.js ***! |
||||
\**************************************************/ |
||||
|
||||
/*!***************************************************!*\ |
||||
!*** ./node_modules/popper.js/dist/esm/popper.js ***! |
||||
\***************************************************/ |
||||
|
||||
/*!***************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/ButtonGroup.js ***! |
||||
\***************************************************/ |
||||
|
||||
/*!***************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/CardColumns.js ***! |
||||
\***************************************************/ |
||||
|
||||
/*!***************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/CustomInput.js ***! |
||||
\***************************************************/ |
||||
|
||||
/*!***************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/ModalFooter.js ***! |
||||
\***************************************************/ |
||||
|
||||
/*!***************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/ModalHeader.js ***! |
||||
\***************************************************/ |
||||
|
||||
/*!***************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/NavbarBrand.js ***! |
||||
\***************************************************/ |
||||
|
||||
/*!***************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/PopoverBody.js ***! |
||||
\***************************************************/ |
||||
|
||||
/*!***************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/ToastHeader.js ***! |
||||
\***************************************************/ |
||||
|
||||
/*!***************************************************!*\ |
||||
!*** ./node_modules/set-function-length/index.js ***! |
||||
\***************************************************/ |
||||
|
||||
/*!****************************************************!*\ |
||||
!*** ./node_modules/define-data-property/index.js ***! |
||||
\****************************************************/ |
||||
|
||||
/*!****************************************************!*\ |
||||
!*** ./node_modules/functions-have-names/index.js ***! |
||||
\****************************************************/ |
||||
|
||||
/*!****************************************************!*\ |
||||
!*** ./node_modules/object-keys/implementation.js ***! |
||||
\****************************************************/ |
||||
|
||||
/*!****************************************************!*\ |
||||
!*** ./node_modules/react-popper/lib/esm/utils.js ***! |
||||
\****************************************************/ |
||||
|
||||
/*!****************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/ButtonToggle.js ***! |
||||
\****************************************************/ |
||||
|
||||
/*!****************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/CardSubtitle.js ***! |
||||
\****************************************************/ |
||||
|
||||
/*!****************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/CarouselItem.js ***! |
||||
\****************************************************/ |
||||
|
||||
/*!****************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/DropdownItem.js ***! |
||||
\****************************************************/ |
||||
|
||||
/*!****************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/DropdownMenu.js ***! |
||||
\****************************************************/ |
||||
|
||||
/*!****************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/FormFeedback.js ***! |
||||
\****************************************************/ |
||||
|
||||
/*!*****************************************************!*\ |
||||
!*** ./node_modules/react-popper/lib/esm/Popper.js ***! |
||||
\*****************************************************/ |
||||
|
||||
/*!*****************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/ButtonToolbar.js ***! |
||||
\*****************************************************/ |
||||
|
||||
/*!*****************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/ListGroupItem.js ***! |
||||
\*****************************************************/ |
||||
|
||||
/*!*****************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/NavbarToggler.js ***! |
||||
\*****************************************************/ |
||||
|
||||
/*!*****************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/PopoverHeader.js ***! |
||||
\*****************************************************/ |
||||
|
||||
/*!*****************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/PopperContent.js ***! |
||||
\*****************************************************/ |
||||
|
||||
/*!*****************************************************!*\ |
||||
!*** ./node_modules/regexp.prototype.flags/shim.js ***! |
||||
\*****************************************************/ |
||||
|
||||
/*!******************************************************!*\ |
||||
!*** ./node_modules/function-bind/implementation.js ***! |
||||
\******************************************************/ |
||||
|
||||
/*!******************************************************!*\ |
||||
!*** ./node_modules/react-popper/lib/esm/Manager.js ***! |
||||
\******************************************************/ |
||||
|
||||
/*!******************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/BreadcrumbItem.js ***! |
||||
\******************************************************/ |
||||
|
||||
/*!******************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/ButtonDropdown.js ***! |
||||
\******************************************************/ |
||||
|
||||
/*!******************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/CardImgOverlay.js ***! |
||||
\******************************************************/ |
||||
|
||||
/*!******************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/DropdownToggle.js ***! |
||||
\******************************************************/ |
||||
|
||||
/*!******************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/InputGroupText.js ***! |
||||
\******************************************************/ |
||||
|
||||
/*!******************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/ListInlineItem.js ***! |
||||
\******************************************************/ |
||||
|
||||
/*!******************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/PaginationItem.js ***! |
||||
\******************************************************/ |
||||
|
||||
/*!******************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/PaginationLink.js ***! |
||||
\******************************************************/ |
||||
|
||||
/*!******************************************************!*\ |
||||
!*** ./node_modules/regexp.prototype.flags/index.js ***! |
||||
\******************************************************/ |
||||
|
||||
/*!*******************************************************!*\ |
||||
!*** ./node_modules/@mui/material/styles/cssUtils.js ***! |
||||
\*******************************************************/ |
||||
|
||||
/*!*******************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/CarouselCaption.js ***! |
||||
\*******************************************************/ |
||||
|
||||
/*!*******************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/CarouselControl.js ***! |
||||
\*******************************************************/ |
||||
|
||||
/*!*******************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/CustomFileInput.js ***! |
||||
\*******************************************************/ |
||||
|
||||
/*!*******************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/DropdownContext.js ***! |
||||
\*******************************************************/ |
||||
|
||||
/*!*******************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/InputGroupAddon.js ***! |
||||
\*******************************************************/ |
||||
|
||||
/*!********************************************************!*\ |
||||
!*** ./node_modules/has-property-descriptors/index.js ***! |
||||
\********************************************************/ |
||||
|
||||
/*!********************************************************!*\ |
||||
!*** ./node_modules/react-popper/lib/esm/Reference.js ***! |
||||
\********************************************************/ |
||||
|
||||
/*!*********************************************************!*\ |
||||
!*** ./node_modules/@mui/material/Skeleton/Skeleton.js ***! |
||||
\*********************************************************/ |
||||
|
||||
/*!*********************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/ListGroupItemText.js ***! |
||||
\*********************************************************/ |
||||
|
||||
/*!*********************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/UncontrolledAlert.js ***! |
||||
\*********************************************************/ |
||||
|
||||
/*!*********************************************************!*\ |
||||
!*** ./node_modules/regexp.prototype.flags/polyfill.js ***! |
||||
\*********************************************************/ |
||||
|
||||
/*!**********************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/CarouselIndicators.js ***! |
||||
\**********************************************************/ |
||||
|
||||
/*!**********************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/PopperTargetHelper.js ***! |
||||
\**********************************************************/ |
||||
|
||||
/*!***********************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/UncontrolledPopover.js ***! |
||||
\***********************************************************/ |
||||
|
||||
/*!***********************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/UncontrolledTooltip.js ***! |
||||
\***********************************************************/ |
||||
|
||||
/*!************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/ListGroupItemHeading.js ***! |
||||
\************************************************************/ |
||||
|
||||
/*!************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/UncontrolledCarousel.js ***! |
||||
\************************************************************/ |
||||
|
||||
/*!************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/UncontrolledCollapse.js ***! |
||||
\************************************************************/ |
||||
|
||||
/*!************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/UncontrolledDropdown.js ***! |
||||
\************************************************************/ |
||||
|
||||
/*!*************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/TooltipPopoverWrapper.js ***! |
||||
\*************************************************************/ |
||||
|
||||
/*!**************************************************************!*\ |
||||
!*** ./node_modules/@mui/icons-material/esm/MoneyRounded.js ***! |
||||
\**************************************************************/ |
||||
|
||||
/*!***************************************************************!*\ |
||||
!*** ./node_modules/regexp.prototype.flags/implementation.js ***! |
||||
\***************************************************************/ |
||||
|
||||
/*!****************************************************************!*\ |
||||
!*** ./node_modules/@mui/icons-material/esm/ArchiveRounded.js ***! |
||||
\****************************************************************/ |
||||
|
||||
/*!****************************************************************!*\ |
||||
!*** ./node_modules/@mui/material/Skeleton/skeletonClasses.js ***! |
||||
\****************************************************************/ |
||||
|
||||
/*!****************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/InputGroupButtonDropdown.js ***! |
||||
\****************************************************************/ |
||||
|
||||
/*!******************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/UncontrolledButtonDropdown.js ***! |
||||
\******************************************************************/ |
||||
|
||||
/*!*******************************************************************!*\ |
||||
!*** ./node_modules/@hypnosphi/create-react-context/lib/index.js ***! |
||||
\*******************************************************************/ |
||||
|
||||
/*!**********************************************************************!*\ |
||||
!*** ./node_modules/@babel/runtime/helpers/interopRequireDefault.js ***! |
||||
\**********************************************************************/ |
||||
|
||||
/*!****************************************************************************!*\ |
||||
!*** ./node_modules/@hypnosphi/create-react-context/lib/implementation.js ***! |
||||
\****************************************************************************/ |
||||
|
||||
/*!****************************************************************************!*\ |
||||
!*** ./node_modules/react-lifecycles-compat/react-lifecycles-compat.es.js ***! |
||||
\****************************************************************************/ |
||||
|
||||
/*!****************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/dom-helpers/class/addClass.js ***! |
||||
\****************************************************************************/ |
||||
|
||||
/*!****************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/dom-helpers/class/hasClass.js ***! |
||||
\****************************************************************************/ |
||||
|
||||
/*!******************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/index.js ***! |
||||
\******************************************************************************/ |
||||
|
||||
/*!*******************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/dom-helpers/class/removeClass.js ***! |
||||
\*******************************************************************************/ |
||||
|
||||
/*!***********************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/Transition.js ***! |
||||
\***********************************************************************************/ |
||||
|
||||
/*!**************************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/CSSTransition.js ***! |
||||
\**************************************************************************************/ |
||||
|
||||
/*!****************************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/TransitionGroup.js ***! |
||||
\****************************************************************************************/ |
||||
|
||||
/*!****************************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/utils/PropTypes.js ***! |
||||
\****************************************************************************************/ |
||||
|
||||
/*!******************************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/ReplaceTransition.js ***! |
||||
\******************************************************************************************/ |
||||
|
||||
/*!*******************************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/utils/ChildMapping.js ***! |
||||
\*******************************************************************************************/ |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,291 @@
|
||||
/*!***********************************!*\ |
||||
!*** ./node_modules/gud/index.js ***! |
||||
\***********************************/ |
||||
|
||||
/*!************************************!*\ |
||||
!*** ./node_modules/gopd/index.js ***! |
||||
\************************************/ |
||||
|
||||
/*!**************************************!*\ |
||||
!*** ./node_modules/hasown/index.js ***! |
||||
\**************************************/ |
||||
|
||||
/*!***************************************!*\ |
||||
!*** ./node_modules/es-errors/ref.js ***! |
||||
\***************************************/ |
||||
|
||||
/*!***************************************!*\ |
||||
!*** ./node_modules/es-errors/uri.js ***! |
||||
\***************************************/ |
||||
|
||||
/*!****************************************!*\ |
||||
!*** ./node_modules/es-errors/eval.js ***! |
||||
\****************************************/ |
||||
|
||||
/*!****************************************!*\ |
||||
!*** ./node_modules/es-errors/type.js ***! |
||||
\****************************************/ |
||||
|
||||
/*!****************************************!*\ |
||||
!*** ./node_modules/is-regex/index.js ***! |
||||
\****************************************/ |
||||
|
||||
/*!****************************************!*\ |
||||
!*** ./node_modules/object-is/shim.js ***! |
||||
\****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/call-bind/index.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/es-errors/index.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/es-errors/range.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/has-proto/index.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/object-is/index.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/warning/warning.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!******************************************!*\ |
||||
!*** ./node_modules/deep-equal/index.js ***! |
||||
\******************************************/ |
||||
|
||||
/*!******************************************!*\ |
||||
!*** ./node_modules/es-errors/syntax.js ***! |
||||
\******************************************/ |
||||
|
||||
/*!*******************************************!*\ |
||||
!*** ./node_modules/has-symbols/index.js ***! |
||||
\*******************************************/ |
||||
|
||||
/*!*******************************************!*\ |
||||
!*** ./node_modules/has-symbols/shams.js ***! |
||||
\*******************************************/ |
||||
|
||||
/*!*******************************************!*\ |
||||
!*** ./node_modules/object-keys/index.js ***! |
||||
\*******************************************/ |
||||
|
||||
/*!********************************************!*\ |
||||
!*** ./node_modules/is-arguments/index.js ***! |
||||
\********************************************/ |
||||
|
||||
/*!********************************************!*\ |
||||
!*** ./node_modules/object-is/polyfill.js ***! |
||||
\********************************************/ |
||||
|
||||
/*!********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Fade.js ***! |
||||
\********************************************/ |
||||
|
||||
/*!*********************************************!*\ |
||||
!*** ./node_modules/call-bind/callBound.js ***! |
||||
\*********************************************/ |
||||
|
||||
/*!*********************************************!*\ |
||||
!*** ./node_modules/function-bind/index.js ***! |
||||
\*********************************************/ |
||||
|
||||
/*!*********************************************!*\ |
||||
!*** ./node_modules/get-intrinsic/index.js ***! |
||||
\*********************************************/ |
||||
|
||||
/*!*********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Badge.js ***! |
||||
\*********************************************/ |
||||
|
||||
/*!**********************************************!*\ |
||||
!*** ./node_modules/is-date-object/index.js ***! |
||||
\**********************************************/ |
||||
|
||||
/*!***********************************************!*\ |
||||
!*** ./node_modules/has-tostringtag/shams.js ***! |
||||
\***********************************************/ |
||||
|
||||
/*!***********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Tooltip.js ***! |
||||
\***********************************************/ |
||||
|
||||
/*!************************************************!*\ |
||||
!*** ./node_modules/primeicons/primeicons.css ***! |
||||
\************************************************/ |
||||
|
||||
/*!************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/CardText.js ***! |
||||
\************************************************/ |
||||
|
||||
/*!*************************************************!*\ |
||||
!*** ./node_modules/define-properties/index.js ***! |
||||
\*************************************************/ |
||||
|
||||
/*!*************************************************!*\ |
||||
!*** ./node_modules/object-keys/isArguments.js ***! |
||||
\*************************************************/ |
||||
|
||||
/*!*************************************************!*\ |
||||
!*** ./node_modules/set-function-name/index.js ***! |
||||
\*************************************************/ |
||||
|
||||
/*!**************************************************!*\ |
||||
!*** ./node_modules/es-define-property/index.js ***! |
||||
\**************************************************/ |
||||
|
||||
/*!**************************************************!*\ |
||||
!*** ./node_modules/object-is/implementation.js ***! |
||||
\**************************************************/ |
||||
|
||||
/*!***************************************************!*\ |
||||
!*** ./node_modules/popper.js/dist/esm/popper.js ***! |
||||
\***************************************************/ |
||||
|
||||
/*!***************************************************!*\ |
||||
!*** ./node_modules/set-function-length/index.js ***! |
||||
\***************************************************/ |
||||
|
||||
/*!****************************************************!*\ |
||||
!*** ./node_modules/define-data-property/index.js ***! |
||||
\****************************************************/ |
||||
|
||||
/*!****************************************************!*\ |
||||
!*** ./node_modules/functions-have-names/index.js ***! |
||||
\****************************************************/ |
||||
|
||||
/*!****************************************************!*\ |
||||
!*** ./node_modules/object-keys/implementation.js ***! |
||||
\****************************************************/ |
||||
|
||||
/*!****************************************************!*\ |
||||
!*** ./node_modules/react-popper/lib/esm/utils.js ***! |
||||
\****************************************************/ |
||||
|
||||
/*!*****************************************************!*\ |
||||
!*** ./node_modules/react-popper/lib/esm/Popper.js ***! |
||||
\*****************************************************/ |
||||
|
||||
/*!*****************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/PopperContent.js ***! |
||||
\*****************************************************/ |
||||
|
||||
/*!*****************************************************!*\ |
||||
!*** ./node_modules/regexp.prototype.flags/shim.js ***! |
||||
\*****************************************************/ |
||||
|
||||
/*!******************************************************!*\ |
||||
!*** ./node_modules/function-bind/implementation.js ***! |
||||
\******************************************************/ |
||||
|
||||
/*!******************************************************!*\ |
||||
!*** ./node_modules/react-popper/lib/esm/Manager.js ***! |
||||
\******************************************************/ |
||||
|
||||
/*!******************************************************!*\ |
||||
!*** ./node_modules/regexp.prototype.flags/index.js ***! |
||||
\******************************************************/ |
||||
|
||||
/*!*******************************************************!*\ |
||||
!*** ./node_modules/@mui/material/styles/cssUtils.js ***! |
||||
\*******************************************************/ |
||||
|
||||
/*!********************************************************!*\ |
||||
!*** ./node_modules/has-property-descriptors/index.js ***! |
||||
\********************************************************/ |
||||
|
||||
/*!*********************************************************!*\ |
||||
!*** ./node_modules/@mui/material/Skeleton/Skeleton.js ***! |
||||
\*********************************************************/ |
||||
|
||||
/*!*********************************************************!*\ |
||||
!*** ./node_modules/regexp.prototype.flags/polyfill.js ***! |
||||
\*********************************************************/ |
||||
|
||||
/*!***********************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/UncontrolledTooltip.js ***! |
||||
\***********************************************************/ |
||||
|
||||
/*!*************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/TooltipPopoverWrapper.js ***! |
||||
\*************************************************************/ |
||||
|
||||
/*!**************************************************************!*\ |
||||
!*** ./node_modules/@mui/icons-material/esm/MoneyRounded.js ***! |
||||
\**************************************************************/ |
||||
|
||||
/*!***************************************************************!*\ |
||||
!*** ./node_modules/regexp.prototype.flags/implementation.js ***! |
||||
\***************************************************************/ |
||||
|
||||
/*!****************************************************************!*\ |
||||
!*** ./node_modules/@mui/icons-material/esm/ArchiveRounded.js ***! |
||||
\****************************************************************/ |
||||
|
||||
/*!****************************************************************!*\ |
||||
!*** ./node_modules/@mui/material/Skeleton/skeletonClasses.js ***! |
||||
\****************************************************************/ |
||||
|
||||
/*!*******************************************************************!*\ |
||||
!*** ./node_modules/@hypnosphi/create-react-context/lib/index.js ***! |
||||
\*******************************************************************/ |
||||
|
||||
/*!**********************************************************************!*\ |
||||
!*** ./node_modules/@babel/runtime/helpers/interopRequireDefault.js ***! |
||||
\**********************************************************************/ |
||||
|
||||
/*!****************************************************************************!*\ |
||||
!*** ./node_modules/@hypnosphi/create-react-context/lib/implementation.js ***! |
||||
\****************************************************************************/ |
||||
|
||||
/*!****************************************************************************!*\ |
||||
!*** ./node_modules/react-lifecycles-compat/react-lifecycles-compat.es.js ***! |
||||
\****************************************************************************/ |
||||
|
||||
/*!****************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/dom-helpers/class/addClass.js ***! |
||||
\****************************************************************************/ |
||||
|
||||
/*!****************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/dom-helpers/class/hasClass.js ***! |
||||
\****************************************************************************/ |
||||
|
||||
/*!******************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/index.js ***! |
||||
\******************************************************************************/ |
||||
|
||||
/*!*******************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/dom-helpers/class/removeClass.js ***! |
||||
\*******************************************************************************/ |
||||
|
||||
/*!***********************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/Transition.js ***! |
||||
\***********************************************************************************/ |
||||
|
||||
/*!**************************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/CSSTransition.js ***! |
||||
\**************************************************************************************/ |
||||
|
||||
/*!****************************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/TransitionGroup.js ***! |
||||
\****************************************************************************************/ |
||||
|
||||
/*!****************************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/utils/PropTypes.js ***! |
||||
\****************************************************************************************/ |
||||
|
||||
/*!******************************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/ReplaceTransition.js ***! |
||||
\******************************************************************************************/ |
||||
|
||||
/*!*******************************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/utils/ChildMapping.js ***! |
||||
\*******************************************************************************************/ |
File diff suppressed because one or more lines are too long
@ -0,0 +1,283 @@
|
||||
/*!***********************************!*\ |
||||
!*** ./node_modules/gud/index.js ***! |
||||
\***********************************/ |
||||
|
||||
/*!************************************!*\ |
||||
!*** ./node_modules/gopd/index.js ***! |
||||
\************************************/ |
||||
|
||||
/*!**************************************!*\ |
||||
!*** ./node_modules/hasown/index.js ***! |
||||
\**************************************/ |
||||
|
||||
/*!***************************************!*\ |
||||
!*** ./node_modules/es-errors/ref.js ***! |
||||
\***************************************/ |
||||
|
||||
/*!***************************************!*\ |
||||
!*** ./node_modules/es-errors/uri.js ***! |
||||
\***************************************/ |
||||
|
||||
/*!****************************************!*\ |
||||
!*** ./node_modules/es-errors/eval.js ***! |
||||
\****************************************/ |
||||
|
||||
/*!****************************************!*\ |
||||
!*** ./node_modules/es-errors/type.js ***! |
||||
\****************************************/ |
||||
|
||||
/*!****************************************!*\ |
||||
!*** ./node_modules/is-regex/index.js ***! |
||||
\****************************************/ |
||||
|
||||
/*!****************************************!*\ |
||||
!*** ./node_modules/object-is/shim.js ***! |
||||
\****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/call-bind/index.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/es-errors/index.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/es-errors/range.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/has-proto/index.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/object-is/index.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/warning/warning.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!******************************************!*\ |
||||
!*** ./node_modules/deep-equal/index.js ***! |
||||
\******************************************/ |
||||
|
||||
/*!******************************************!*\ |
||||
!*** ./node_modules/es-errors/syntax.js ***! |
||||
\******************************************/ |
||||
|
||||
/*!*******************************************!*\ |
||||
!*** ./node_modules/has-symbols/index.js ***! |
||||
\*******************************************/ |
||||
|
||||
/*!*******************************************!*\ |
||||
!*** ./node_modules/has-symbols/shams.js ***! |
||||
\*******************************************/ |
||||
|
||||
/*!*******************************************!*\ |
||||
!*** ./node_modules/object-keys/index.js ***! |
||||
\*******************************************/ |
||||
|
||||
/*!********************************************!*\ |
||||
!*** ./node_modules/is-arguments/index.js ***! |
||||
\********************************************/ |
||||
|
||||
/*!********************************************!*\ |
||||
!*** ./node_modules/object-is/polyfill.js ***! |
||||
\********************************************/ |
||||
|
||||
/*!********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Fade.js ***! |
||||
\********************************************/ |
||||
|
||||
/*!*********************************************!*\ |
||||
!*** ./node_modules/call-bind/callBound.js ***! |
||||
\*********************************************/ |
||||
|
||||
/*!*********************************************!*\ |
||||
!*** ./node_modules/function-bind/index.js ***! |
||||
\*********************************************/ |
||||
|
||||
/*!*********************************************!*\ |
||||
!*** ./node_modules/get-intrinsic/index.js ***! |
||||
\*********************************************/ |
||||
|
||||
/*!*********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Badge.js ***! |
||||
\*********************************************/ |
||||
|
||||
/*!**********************************************!*\ |
||||
!*** ./node_modules/is-date-object/index.js ***! |
||||
\**********************************************/ |
||||
|
||||
/*!***********************************************!*\ |
||||
!*** ./node_modules/has-tostringtag/shams.js ***! |
||||
\***********************************************/ |
||||
|
||||
/*!***********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Tooltip.js ***! |
||||
\***********************************************/ |
||||
|
||||
/*!************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/CardText.js ***! |
||||
\************************************************/ |
||||
|
||||
/*!*************************************************!*\ |
||||
!*** ./node_modules/define-properties/index.js ***! |
||||
\*************************************************/ |
||||
|
||||
/*!*************************************************!*\ |
||||
!*** ./node_modules/object-keys/isArguments.js ***! |
||||
\*************************************************/ |
||||
|
||||
/*!*************************************************!*\ |
||||
!*** ./node_modules/set-function-name/index.js ***! |
||||
\*************************************************/ |
||||
|
||||
/*!**************************************************!*\ |
||||
!*** ./node_modules/es-define-property/index.js ***! |
||||
\**************************************************/ |
||||
|
||||
/*!**************************************************!*\ |
||||
!*** ./node_modules/object-is/implementation.js ***! |
||||
\**************************************************/ |
||||
|
||||
/*!***************************************************!*\ |
||||
!*** ./node_modules/popper.js/dist/esm/popper.js ***! |
||||
\***************************************************/ |
||||
|
||||
/*!***************************************************!*\ |
||||
!*** ./node_modules/set-function-length/index.js ***! |
||||
\***************************************************/ |
||||
|
||||
/*!****************************************************!*\ |
||||
!*** ./node_modules/define-data-property/index.js ***! |
||||
\****************************************************/ |
||||
|
||||
/*!****************************************************!*\ |
||||
!*** ./node_modules/functions-have-names/index.js ***! |
||||
\****************************************************/ |
||||
|
||||
/*!****************************************************!*\ |
||||
!*** ./node_modules/object-keys/implementation.js ***! |
||||
\****************************************************/ |
||||
|
||||
/*!****************************************************!*\ |
||||
!*** ./node_modules/react-popper/lib/esm/utils.js ***! |
||||
\****************************************************/ |
||||
|
||||
/*!*****************************************************!*\ |
||||
!*** ./node_modules/react-popper/lib/esm/Popper.js ***! |
||||
\*****************************************************/ |
||||
|
||||
/*!*****************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/PopperContent.js ***! |
||||
\*****************************************************/ |
||||
|
||||
/*!*****************************************************!*\ |
||||
!*** ./node_modules/regexp.prototype.flags/shim.js ***! |
||||
\*****************************************************/ |
||||
|
||||
/*!******************************************************!*\ |
||||
!*** ./node_modules/function-bind/implementation.js ***! |
||||
\******************************************************/ |
||||
|
||||
/*!******************************************************!*\ |
||||
!*** ./node_modules/react-popper/lib/esm/Manager.js ***! |
||||
\******************************************************/ |
||||
|
||||
/*!******************************************************!*\ |
||||
!*** ./node_modules/regexp.prototype.flags/index.js ***! |
||||
\******************************************************/ |
||||
|
||||
/*!*******************************************************!*\ |
||||
!*** ./node_modules/@mui/material/styles/cssUtils.js ***! |
||||
\*******************************************************/ |
||||
|
||||
/*!********************************************************!*\ |
||||
!*** ./node_modules/has-property-descriptors/index.js ***! |
||||
\********************************************************/ |
||||
|
||||
/*!*********************************************************!*\ |
||||
!*** ./node_modules/@mui/material/Skeleton/Skeleton.js ***! |
||||
\*********************************************************/ |
||||
|
||||
/*!*********************************************************!*\ |
||||
!*** ./node_modules/regexp.prototype.flags/polyfill.js ***! |
||||
\*********************************************************/ |
||||
|
||||
/*!***********************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/UncontrolledTooltip.js ***! |
||||
\***********************************************************/ |
||||
|
||||
/*!*************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/TooltipPopoverWrapper.js ***! |
||||
\*************************************************************/ |
||||
|
||||
/*!**************************************************************!*\ |
||||
!*** ./node_modules/@mui/icons-material/esm/MoneyRounded.js ***! |
||||
\**************************************************************/ |
||||
|
||||
/*!***************************************************************!*\ |
||||
!*** ./node_modules/regexp.prototype.flags/implementation.js ***! |
||||
\***************************************************************/ |
||||
|
||||
/*!****************************************************************!*\ |
||||
!*** ./node_modules/@mui/material/Skeleton/skeletonClasses.js ***! |
||||
\****************************************************************/ |
||||
|
||||
/*!*******************************************************************!*\ |
||||
!*** ./node_modules/@hypnosphi/create-react-context/lib/index.js ***! |
||||
\*******************************************************************/ |
||||
|
||||
/*!**********************************************************************!*\ |
||||
!*** ./node_modules/@babel/runtime/helpers/interopRequireDefault.js ***! |
||||
\**********************************************************************/ |
||||
|
||||
/*!****************************************************************************!*\ |
||||
!*** ./node_modules/@hypnosphi/create-react-context/lib/implementation.js ***! |
||||
\****************************************************************************/ |
||||
|
||||
/*!****************************************************************************!*\ |
||||
!*** ./node_modules/react-lifecycles-compat/react-lifecycles-compat.es.js ***! |
||||
\****************************************************************************/ |
||||
|
||||
/*!****************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/dom-helpers/class/addClass.js ***! |
||||
\****************************************************************************/ |
||||
|
||||
/*!****************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/dom-helpers/class/hasClass.js ***! |
||||
\****************************************************************************/ |
||||
|
||||
/*!******************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/index.js ***! |
||||
\******************************************************************************/ |
||||
|
||||
/*!*******************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/dom-helpers/class/removeClass.js ***! |
||||
\*******************************************************************************/ |
||||
|
||||
/*!***********************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/Transition.js ***! |
||||
\***********************************************************************************/ |
||||
|
||||
/*!**************************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/CSSTransition.js ***! |
||||
\**************************************************************************************/ |
||||
|
||||
/*!****************************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/TransitionGroup.js ***! |
||||
\****************************************************************************************/ |
||||
|
||||
/*!****************************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/utils/PropTypes.js ***! |
||||
\****************************************************************************************/ |
||||
|
||||
/*!******************************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/ReplaceTransition.js ***! |
||||
\******************************************************************************************/ |
||||
|
||||
/*!*******************************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/utils/ChildMapping.js ***! |
||||
\*******************************************************************************************/ |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,19 @@
|
||||
/*!*********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Badge.js ***! |
||||
\*********************************************/ |
||||
|
||||
/*!************************************************!*\ |
||||
!*** ./node_modules/primeicons/primeicons.css ***! |
||||
\************************************************/ |
||||
|
||||
/*!*******************************************************!*\ |
||||
!*** ./node_modules/@mui/material/styles/cssUtils.js ***! |
||||
\*******************************************************/ |
||||
|
||||
/*!*********************************************************!*\ |
||||
!*** ./node_modules/@mui/material/Skeleton/Skeleton.js ***! |
||||
\*********************************************************/ |
||||
|
||||
/*!****************************************************************!*\ |
||||
!*** ./node_modules/@mui/material/Skeleton/skeletonClasses.js ***! |
||||
\****************************************************************/ |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,15 @@
|
||||
/*!************************************************!*\ |
||||
!*** ./node_modules/primeicons/primeicons.css ***! |
||||
\************************************************/ |
||||
|
||||
/*!*******************************************************!*\ |
||||
!*** ./node_modules/@mui/material/styles/cssUtils.js ***! |
||||
\*******************************************************/ |
||||
|
||||
/*!*********************************************************!*\ |
||||
!*** ./node_modules/@mui/material/Skeleton/Skeleton.js ***! |
||||
\*********************************************************/ |
||||
|
||||
/*!****************************************************************!*\ |
||||
!*** ./node_modules/@mui/material/Skeleton/skeletonClasses.js ***! |
||||
\****************************************************************/ |
File diff suppressed because one or more lines are too long
@ -0,0 +1,19 @@
|
||||
/*!*********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Badge.js ***! |
||||
\*********************************************/ |
||||
|
||||
/*!************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/CardText.js ***! |
||||
\************************************************/ |
||||
|
||||
/*!*******************************************************!*\ |
||||
!*** ./node_modules/@mui/material/styles/cssUtils.js ***! |
||||
\*******************************************************/ |
||||
|
||||
/*!*********************************************************!*\ |
||||
!*** ./node_modules/@mui/material/Skeleton/Skeleton.js ***! |
||||
\*********************************************************/ |
||||
|
||||
/*!****************************************************************!*\ |
||||
!*** ./node_modules/@mui/material/Skeleton/skeletonClasses.js ***! |
||||
\****************************************************************/ |
File diff suppressed because one or more lines are too long
@ -0,0 +1,279 @@
|
||||
/*!***********************************!*\ |
||||
!*** ./node_modules/gud/index.js ***! |
||||
\***********************************/ |
||||
|
||||
/*!************************************!*\ |
||||
!*** ./node_modules/gopd/index.js ***! |
||||
\************************************/ |
||||
|
||||
/*!**************************************!*\ |
||||
!*** ./node_modules/hasown/index.js ***! |
||||
\**************************************/ |
||||
|
||||
/*!***************************************!*\ |
||||
!*** ./node_modules/es-errors/ref.js ***! |
||||
\***************************************/ |
||||
|
||||
/*!***************************************!*\ |
||||
!*** ./node_modules/es-errors/uri.js ***! |
||||
\***************************************/ |
||||
|
||||
/*!****************************************!*\ |
||||
!*** ./node_modules/es-errors/eval.js ***! |
||||
\****************************************/ |
||||
|
||||
/*!****************************************!*\ |
||||
!*** ./node_modules/es-errors/type.js ***! |
||||
\****************************************/ |
||||
|
||||
/*!****************************************!*\ |
||||
!*** ./node_modules/is-regex/index.js ***! |
||||
\****************************************/ |
||||
|
||||
/*!****************************************!*\ |
||||
!*** ./node_modules/object-is/shim.js ***! |
||||
\****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/call-bind/index.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/es-errors/index.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/es-errors/range.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/has-proto/index.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/object-is/index.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!*****************************************!*\ |
||||
!*** ./node_modules/warning/warning.js ***! |
||||
\*****************************************/ |
||||
|
||||
/*!******************************************!*\ |
||||
!*** ./node_modules/deep-equal/index.js ***! |
||||
\******************************************/ |
||||
|
||||
/*!******************************************!*\ |
||||
!*** ./node_modules/es-errors/syntax.js ***! |
||||
\******************************************/ |
||||
|
||||
/*!*******************************************!*\ |
||||
!*** ./node_modules/has-symbols/index.js ***! |
||||
\*******************************************/ |
||||
|
||||
/*!*******************************************!*\ |
||||
!*** ./node_modules/has-symbols/shams.js ***! |
||||
\*******************************************/ |
||||
|
||||
/*!*******************************************!*\ |
||||
!*** ./node_modules/object-keys/index.js ***! |
||||
\*******************************************/ |
||||
|
||||
/*!********************************************!*\ |
||||
!*** ./node_modules/is-arguments/index.js ***! |
||||
\********************************************/ |
||||
|
||||
/*!********************************************!*\ |
||||
!*** ./node_modules/object-is/polyfill.js ***! |
||||
\********************************************/ |
||||
|
||||
/*!********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Fade.js ***! |
||||
\********************************************/ |
||||
|
||||
/*!*********************************************!*\ |
||||
!*** ./node_modules/call-bind/callBound.js ***! |
||||
\*********************************************/ |
||||
|
||||
/*!*********************************************!*\ |
||||
!*** ./node_modules/function-bind/index.js ***! |
||||
\*********************************************/ |
||||
|
||||
/*!*********************************************!*\ |
||||
!*** ./node_modules/get-intrinsic/index.js ***! |
||||
\*********************************************/ |
||||
|
||||
/*!*********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Badge.js ***! |
||||
\*********************************************/ |
||||
|
||||
/*!**********************************************!*\ |
||||
!*** ./node_modules/is-date-object/index.js ***! |
||||
\**********************************************/ |
||||
|
||||
/*!***********************************************!*\ |
||||
!*** ./node_modules/has-tostringtag/shams.js ***! |
||||
\***********************************************/ |
||||
|
||||
/*!***********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Tooltip.js ***! |
||||
\***********************************************/ |
||||
|
||||
/*!************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/CardText.js ***! |
||||
\************************************************/ |
||||
|
||||
/*!*************************************************!*\ |
||||
!*** ./node_modules/define-properties/index.js ***! |
||||
\*************************************************/ |
||||
|
||||
/*!*************************************************!*\ |
||||
!*** ./node_modules/object-keys/isArguments.js ***! |
||||
\*************************************************/ |
||||
|
||||
/*!*************************************************!*\ |
||||
!*** ./node_modules/set-function-name/index.js ***! |
||||
\*************************************************/ |
||||
|
||||
/*!**************************************************!*\ |
||||
!*** ./node_modules/es-define-property/index.js ***! |
||||
\**************************************************/ |
||||
|
||||
/*!**************************************************!*\ |
||||
!*** ./node_modules/object-is/implementation.js ***! |
||||
\**************************************************/ |
||||
|
||||
/*!***************************************************!*\ |
||||
!*** ./node_modules/popper.js/dist/esm/popper.js ***! |
||||
\***************************************************/ |
||||
|
||||
/*!***************************************************!*\ |
||||
!*** ./node_modules/set-function-length/index.js ***! |
||||
\***************************************************/ |
||||
|
||||
/*!****************************************************!*\ |
||||
!*** ./node_modules/define-data-property/index.js ***! |
||||
\****************************************************/ |
||||
|
||||
/*!****************************************************!*\ |
||||
!*** ./node_modules/functions-have-names/index.js ***! |
||||
\****************************************************/ |
||||
|
||||
/*!****************************************************!*\ |
||||
!*** ./node_modules/object-keys/implementation.js ***! |
||||
\****************************************************/ |
||||
|
||||
/*!****************************************************!*\ |
||||
!*** ./node_modules/react-popper/lib/esm/utils.js ***! |
||||
\****************************************************/ |
||||
|
||||
/*!*****************************************************!*\ |
||||
!*** ./node_modules/react-popper/lib/esm/Popper.js ***! |
||||
\*****************************************************/ |
||||
|
||||
/*!*****************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/PopperContent.js ***! |
||||
\*****************************************************/ |
||||
|
||||
/*!*****************************************************!*\ |
||||
!*** ./node_modules/regexp.prototype.flags/shim.js ***! |
||||
\*****************************************************/ |
||||
|
||||
/*!******************************************************!*\ |
||||
!*** ./node_modules/function-bind/implementation.js ***! |
||||
\******************************************************/ |
||||
|
||||
/*!******************************************************!*\ |
||||
!*** ./node_modules/react-popper/lib/esm/Manager.js ***! |
||||
\******************************************************/ |
||||
|
||||
/*!******************************************************!*\ |
||||
!*** ./node_modules/regexp.prototype.flags/index.js ***! |
||||
\******************************************************/ |
||||
|
||||
/*!*******************************************************!*\ |
||||
!*** ./node_modules/@mui/material/styles/cssUtils.js ***! |
||||
\*******************************************************/ |
||||
|
||||
/*!********************************************************!*\ |
||||
!*** ./node_modules/has-property-descriptors/index.js ***! |
||||
\********************************************************/ |
||||
|
||||
/*!*********************************************************!*\ |
||||
!*** ./node_modules/@mui/material/Skeleton/Skeleton.js ***! |
||||
\*********************************************************/ |
||||
|
||||
/*!*********************************************************!*\ |
||||
!*** ./node_modules/regexp.prototype.flags/polyfill.js ***! |
||||
\*********************************************************/ |
||||
|
||||
/*!***********************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/UncontrolledTooltip.js ***! |
||||
\***********************************************************/ |
||||
|
||||
/*!*************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/TooltipPopoverWrapper.js ***! |
||||
\*************************************************************/ |
||||
|
||||
/*!***************************************************************!*\ |
||||
!*** ./node_modules/regexp.prototype.flags/implementation.js ***! |
||||
\***************************************************************/ |
||||
|
||||
/*!****************************************************************!*\ |
||||
!*** ./node_modules/@mui/material/Skeleton/skeletonClasses.js ***! |
||||
\****************************************************************/ |
||||
|
||||
/*!*******************************************************************!*\ |
||||
!*** ./node_modules/@hypnosphi/create-react-context/lib/index.js ***! |
||||
\*******************************************************************/ |
||||
|
||||
/*!**********************************************************************!*\ |
||||
!*** ./node_modules/@babel/runtime/helpers/interopRequireDefault.js ***! |
||||
\**********************************************************************/ |
||||
|
||||
/*!****************************************************************************!*\ |
||||
!*** ./node_modules/@hypnosphi/create-react-context/lib/implementation.js ***! |
||||
\****************************************************************************/ |
||||
|
||||
/*!****************************************************************************!*\ |
||||
!*** ./node_modules/react-lifecycles-compat/react-lifecycles-compat.es.js ***! |
||||
\****************************************************************************/ |
||||
|
||||
/*!****************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/dom-helpers/class/addClass.js ***! |
||||
\****************************************************************************/ |
||||
|
||||
/*!****************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/dom-helpers/class/hasClass.js ***! |
||||
\****************************************************************************/ |
||||
|
||||
/*!******************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/index.js ***! |
||||
\******************************************************************************/ |
||||
|
||||
/*!*******************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/dom-helpers/class/removeClass.js ***! |
||||
\*******************************************************************************/ |
||||
|
||||
/*!***********************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/Transition.js ***! |
||||
\***********************************************************************************/ |
||||
|
||||
/*!**************************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/CSSTransition.js ***! |
||||
\**************************************************************************************/ |
||||
|
||||
/*!****************************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/TransitionGroup.js ***! |
||||
\****************************************************************************************/ |
||||
|
||||
/*!****************************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/utils/PropTypes.js ***! |
||||
\****************************************************************************************/ |
||||
|
||||
/*!******************************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/ReplaceTransition.js ***! |
||||
\******************************************************************************************/ |
||||
|
||||
/*!*******************************************************************************************!*\ |
||||
!*** ./node_modules/reactstrap/node_modules/react-transition-group/utils/ChildMapping.js ***! |
||||
\*******************************************************************************************/ |
File diff suppressed because one or more lines are too long
@ -0,0 +1,15 @@
|
||||
/*!*********************************************!*\ |
||||
!*** ./node_modules/reactstrap/es/Badge.js ***! |
||||
\*********************************************/ |
||||
|
||||
/*!*******************************************************!*\ |
||||
!*** ./node_modules/@mui/material/styles/cssUtils.js ***! |
||||
\*******************************************************/ |
||||
|
||||
/*!*********************************************************!*\ |
||||
!*** ./node_modules/@mui/material/Skeleton/Skeleton.js ***! |
||||
\*********************************************************/ |
||||
|
||||
/*!****************************************************************!*\ |
||||
!*** ./node_modules/@mui/material/Skeleton/skeletonClasses.js ***! |
||||
\****************************************************************/ |
File diff suppressed because one or more lines are too long
@ -0,0 +1,11 @@
|
||||
/*!*******************************************************!*\ |
||||
!*** ./node_modules/@mui/material/styles/cssUtils.js ***! |
||||
\*******************************************************/ |
||||
|
||||
/*!*********************************************************!*\ |
||||
!*** ./node_modules/@mui/material/Skeleton/Skeleton.js ***! |
||||
\*********************************************************/ |
||||
|
||||
/*!****************************************************************!*\ |
||||
!*** ./node_modules/@mui/material/Skeleton/skeletonClasses.js ***! |
||||
\****************************************************************/ |
@ -0,0 +1,20 @@
|
||||
The MIT License (MIT) |
||||
|
||||
Copyright (c) 2013-present Benjamin Morel |
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of |
||||
this software and associated documentation files (the "Software"), to deal in |
||||
the Software without restriction, including without limitation the rights to |
||||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of |
||||
the Software, and to permit persons to whom the Software is furnished to do so, |
||||
subject to the following conditions: |
||||
|
||||
The above copyright notice and this permission notice shall be included in all |
||||
copies or substantial portions of the Software. |
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS |
||||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR |
||||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER |
||||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
||||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
@ -0,0 +1,40 @@
|
||||
{ |
||||
"name": "brick/geo", |
||||
"description": "GIS geometry library", |
||||
"type": "library", |
||||
"keywords": [ |
||||
"Brick", |
||||
"Geo", |
||||
"GIS", |
||||
"Geography", |
||||
"Geometry" |
||||
], |
||||
"license": "MIT", |
||||
"require": { |
||||
"php": "^8.1" |
||||
}, |
||||
"require-dev": { |
||||
"ext-pdo": "*", |
||||
"ext-json": "*", |
||||
"ext-sqlite3": "*", |
||||
"brick/reflection": "~0.5.0", |
||||
"phpunit/phpunit": "^10.0", |
||||
"php-coveralls/php-coveralls": "^2.0", |
||||
"vimeo/psalm": "5.20.0" |
||||
}, |
||||
"autoload": { |
||||
"psr-4": { |
||||
"Brick\\Geo\\": "src/" |
||||
} |
||||
}, |
||||
"autoload-dev": { |
||||
"psr-4": { |
||||
"": "stubs/", |
||||
"Brick\\Geo\\Tests\\": "tests/" |
||||
} |
||||
}, |
||||
"config": { |
||||
"process-timeout": 600, |
||||
"preferred-install": "source" |
||||
} |
||||
} |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue