mejoras
This commit is contained in:
@@ -24,10 +24,8 @@ class DashboardController extends Controller
|
||||
|
||||
// Documentos recientes (últimos 7 días)
|
||||
$recentDocuments = Document::with(['project', 'currentVersion'])
|
||||
->where('created_at', '>=', now()->subDays(7))
|
||||
->orderBy('created_at', 'desc')
|
||||
->limit(5)
|
||||
->get();
|
||||
->limit(5);
|
||||
|
||||
// Actividad reciente
|
||||
$recentActivities = DB::table('activity_log')
|
||||
@@ -35,7 +33,9 @@ class DashboardController extends Controller
|
||||
->limit(10)
|
||||
->get();
|
||||
|
||||
return view('dashboard', compact('stats', 'recentDocuments', 'recentActivities'));
|
||||
$showSidebar = true; // Variable para mostrar el sidebar
|
||||
|
||||
return view('dashboard', compact('stats', 'recentDocuments', 'recentActivities', 'showSidebar'));
|
||||
}
|
||||
|
||||
private function calculateStorageUsed()
|
||||
|
||||
@@ -7,6 +7,7 @@ use App\Models\Project;
|
||||
use App\Models\User;
|
||||
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Facades\Storage;
|
||||
|
||||
class ProjectController extends Controller
|
||||
{
|
||||
@@ -37,8 +38,9 @@ class ProjectController extends Controller
|
||||
public function create()
|
||||
{
|
||||
$this->authorize('create projects');
|
||||
|
||||
$project = new Project();
|
||||
return view('projects.create', [
|
||||
'project' => $project,
|
||||
'categories' => Category::orderBy('name')->get(),
|
||||
'users' => User::where('id', '!=', auth()->id())->get(),
|
||||
]);
|
||||
@@ -50,25 +52,22 @@ class ProjectController extends Controller
|
||||
public function store(Request $request)
|
||||
{
|
||||
$validated = $request->validate([
|
||||
'reference' => 'required|string|max:255',
|
||||
'name' => 'required|string|max:255',
|
||||
'description' => 'nullable|string',
|
||||
'status' => 'required|in:Activo,Inactivo',
|
||||
//'team' => 'sometimes|array',
|
||||
//'team.*' => 'exists:users,id',
|
||||
'project_image' => 'nullable|image|mimes:jpeg,png,jpg,gif|max:2048',
|
||||
'address' => 'nullable|string|max:255',
|
||||
'province' => 'nullable|string|max:100',
|
||||
//'country' => 'nullable|string|size:2',
|
||||
'country' => 'nullable|string|size:2',
|
||||
'postal_code' => 'nullable|string|max:10',
|
||||
'latitude' => 'required|numeric|between:-90,90',
|
||||
'longitude' => 'required|numeric|between:-180,180',
|
||||
//'icon' => 'nullable|in:'.implode(',', config('project.icons')),
|
||||
'start_date' => 'nullable|date',
|
||||
'deadline' => 'nullable|date|after:start_date',
|
||||
'categories' => 'nullable|array|exists:categories,id',
|
||||
//'categories' => 'required|array',
|
||||
//'categories.*' => 'exists:categories,id',
|
||||
//'documents.*' => 'file|max:5120|mimes:pdf,docx,xlsx,jpg,png'
|
||||
'project_image_path' => 'nullable|string',
|
||||
]);
|
||||
|
||||
|
||||
@@ -79,11 +78,14 @@ class ProjectController extends Controller
|
||||
]);
|
||||
|
||||
// Manejar la imagen
|
||||
if ($request->hasFile('project_image')) {
|
||||
$path = $request->file('project_image')->store('project-images', 'public');
|
||||
$validated['project_image_path'] = $path; // Usar el nombre correcto de columna
|
||||
if ($request->has('project_image_path') && $request->project_image_path) {
|
||||
$tempPath = $request->project_image_path;
|
||||
$newPath = 'images/projects/' . basename($tempPath);
|
||||
|
||||
Storage::move($tempPath, $newPath); // Mover el archivo
|
||||
$validated['project_image_path'] = $newPath; // Actualizar path
|
||||
}
|
||||
|
||||
|
||||
// Crear el proyecto con todos los datos validados
|
||||
$project = Project::create($validated);
|
||||
|
||||
@@ -92,17 +94,6 @@ class ProjectController extends Controller
|
||||
$project->categories()->sync($request->categories);
|
||||
}
|
||||
|
||||
// Manejar documentos adjuntos
|
||||
/*
|
||||
if($request->hasFile('documents')) {
|
||||
foreach ($request->file('documents') as $file) {
|
||||
$project->documents()->create([
|
||||
'file_path' => $file->store('project-documents', 'public'),
|
||||
'original_name' => $file->getClientOriginalName()
|
||||
]);
|
||||
}
|
||||
}*/
|
||||
|
||||
return redirect()->route('projects.show', $project)->with('success', 'Proyecto creado exitosamente');
|
||||
|
||||
} catch (\Exception $e) {
|
||||
@@ -110,6 +101,19 @@ class ProjectController extends Controller
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Show the form for editing the specified resource.
|
||||
*/
|
||||
public function edit(Project $project)
|
||||
{
|
||||
$this->authorize('update', $project);
|
||||
return view('projects.create', [
|
||||
'project' => $project,
|
||||
'categories' => Category::orderBy('name')->get(),
|
||||
'users' => User::where('id', '!=', auth()->id())->get(),
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Display the specified resource.
|
||||
*/
|
||||
@@ -125,14 +129,6 @@ class ProjectController extends Controller
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Show the form for editing the specified resource.
|
||||
*/
|
||||
public function edit(Project $project)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Update the specified resource in storage.
|
||||
*/
|
||||
|
||||
@@ -17,18 +17,25 @@ use Spatie\Permission\Models\Role;
|
||||
|
||||
class UserController extends Controller
|
||||
{
|
||||
public $collapsedGroups = [];
|
||||
|
||||
public function index()
|
||||
{
|
||||
$this->authorize('viewAny', User::class);
|
||||
$users = User::paginate(10);
|
||||
return view('users.index', compact('users'));
|
||||
return view('users.index', ['users' => $users,
|
||||
'showSidebar' => 'true',]);
|
||||
}
|
||||
|
||||
public function create()
|
||||
{
|
||||
$this->authorize('create', User::class);
|
||||
$roles = Role::all();
|
||||
return view('users.create', compact('roles'));
|
||||
$user = new User();
|
||||
return view('users.create', ['user' => $user,
|
||||
'roles' => $roles,
|
||||
'showSidebar' => 'true',
|
||||
]);
|
||||
}
|
||||
|
||||
public function store(Request $request)
|
||||
@@ -57,12 +64,8 @@ class UserController extends Controller
|
||||
'end_date' => 'nullable|date|after_or_equal:start_date',
|
||||
'email' => 'required|email|unique:users',
|
||||
'phone' => 'nullable|string|max:20',
|
||||
<<<<<<< HEAD
|
||||
'address' => 'nullable|string|max:255',
|
||||
'profile_photo_path' => 'nullable|string' // Ruta de la imagen subida por Livewire
|
||||
=======
|
||||
'address' => 'nullable|string|max:255'
|
||||
>>>>>>> f97a7a84985ea300216ba3ea2ab4c31306e1659a
|
||||
]);
|
||||
|
||||
// Creación del usuario
|
||||
@@ -77,20 +80,12 @@ class UserController extends Controller
|
||||
'address' => $validated['address'],
|
||||
'access_start' => $validated['start_date'],
|
||||
'access_end' => $validated['end_date'],
|
||||
<<<<<<< HEAD
|
||||
'is_active' => true,
|
||||
'profile_photo_path' => $validated['profile_photo_path'] ?? null
|
||||
]);
|
||||
|
||||
if ($request->hasFile('image_path')) {
|
||||
$path = $request->file('image_path')->store('public/photos');
|
||||
=======
|
||||
'is_active' => true
|
||||
]);
|
||||
|
||||
if ($request->hasFile('photo')) {
|
||||
$path = $request->file('photo')->store('public/photos');
|
||||
>>>>>>> f97a7a84985ea300216ba3ea2ab4c31306e1659a
|
||||
$user->profile_photo_path = basename($path);
|
||||
$user->save();
|
||||
}
|
||||
@@ -142,17 +137,11 @@ class UserController extends Controller
|
||||
Rule::unique('users')->ignore($user->id)
|
||||
],
|
||||
'phone' => 'nullable|string|max:20',
|
||||
<<<<<<< HEAD
|
||||
'address' => 'nullable|string|max:255',
|
||||
'profile_photo_path' => 'nullable|string', // Añadido para la ruta de la imagen
|
||||
//'is_active' => 'nullable|boolean' // Añadido para el estado activo
|
||||
]);
|
||||
|
||||
=======
|
||||
'address' => 'nullable|string|max:255'
|
||||
]);
|
||||
|
||||
>>>>>>> f97a7a84985ea300216ba3ea2ab4c31306e1659a
|
||||
// Preparar datos para actualización
|
||||
$updateData = [
|
||||
'title' => $validated['title'],
|
||||
@@ -164,21 +153,14 @@ class UserController extends Controller
|
||||
'address' => $validated['address'],
|
||||
'access_start' => $validated['start_date'],
|
||||
'access_end' => $validated['end_date'],
|
||||
<<<<<<< HEAD
|
||||
'is_active' => $validated['is_active'] ?? false,
|
||||
'profile_photo_path' => $validated['profile_photo_path'] ?? $user->profile_photo_path
|
||||
];
|
||||
|
||||
=======
|
||||
'is_active' => $request->has('is_active') // Si usas un checkbox
|
||||
];
|
||||
|
||||
>>>>>>> f97a7a84985ea300216ba3ea2ab4c31306e1659a
|
||||
// Actualizar contraseña solo si se proporciona
|
||||
if (!empty($validated['password'])) {
|
||||
$updateData['password'] = Hash::make($validated['password']);
|
||||
}
|
||||
<<<<<<< HEAD
|
||||
|
||||
// Eliminar imagen anterior si se está actualizando
|
||||
if (isset($validated['profile_photo_path']) && $user->profile_photo_path) {
|
||||
@@ -196,32 +178,6 @@ class UserController extends Controller
|
||||
return redirect()->back()->withErrors($e->validator)->withInput();
|
||||
|
||||
} catch (QueryException $e) {
|
||||
=======
|
||||
|
||||
if ($request->hasFile('photo')) {
|
||||
// Eliminar foto anterior si existe
|
||||
if ($user->prfile_photo_path) {
|
||||
Storage::delete('public/photos/'.$user->profile_photo_path);
|
||||
}
|
||||
|
||||
$path = $request->file('photo')->store('public/photos');
|
||||
$user->update(['profile_photo_path' => basename($path)]);
|
||||
}
|
||||
|
||||
// Actualizar el usuario
|
||||
$user->update($updateData);
|
||||
|
||||
// Redireccionar con mensaje de éxito
|
||||
return redirect()->route('users.show', $user)
|
||||
->with('success', 'Usuario actualizado exitosamente');
|
||||
|
||||
} catch (ValidationException $e) {
|
||||
// Redireccionar con errores de validación
|
||||
return redirect()->back()->withErrors($e->validator)->withInput();
|
||||
|
||||
} catch (QueryException $e) {
|
||||
// Manejar errores de base de datos
|
||||
>>>>>>> f97a7a84985ea300216ba3ea2ab4c31306e1659a
|
||||
$errorCode = $e->errorInfo[1];
|
||||
$errorMessage = 'Error al actualizar el usuario: ';
|
||||
|
||||
@@ -230,20 +186,11 @@ class UserController extends Controller
|
||||
} else {
|
||||
$errorMessage .= 'Error en la base de datos';
|
||||
}
|
||||
<<<<<<< HEAD
|
||||
|
||||
Log::error("Error actualizando usuario ID {$user->id}: " . $e->getMessage());
|
||||
return redirect()->back()->with('error', $errorMessage)->withInput();
|
||||
|
||||
} catch (\Exception $e) {
|
||||
=======
|
||||
|
||||
Log::error("Error actualizando usuario ID {$user->id}: " . $e->getMessage());
|
||||
return redirect()->back()->with('error', $errorMessage)->withInput();
|
||||
|
||||
} catch (\Exception $e) {
|
||||
// Manejar otros errores
|
||||
>>>>>>> f97a7a84985ea300216ba3ea2ab4c31306e1659a
|
||||
Log::error("Error general actualizando usuario ID {$user->id}: " . $e->getMessage());
|
||||
return redirect()->back()->with('error', 'Ocurrió un error inesperado al actualizar el usuario')->withInput();
|
||||
}
|
||||
@@ -253,20 +200,15 @@ class UserController extends Controller
|
||||
{
|
||||
$previousUser = User::where('id', '<', $user->id)->latest('id')->first();
|
||||
$nextUser = User::where('id', '>', $user->id)->oldest('id')->first();
|
||||
<<<<<<< HEAD
|
||||
$permissionGroups = $this->getPermissionGroups($user);
|
||||
=======
|
||||
>>>>>>> f97a7a84985ea300216ba3ea2ab4c31306e1659a
|
||||
|
||||
return view('users.show', [
|
||||
'user' => $user,
|
||||
'previousUser' => $previousUser,
|
||||
'nextUser' => $nextUser,
|
||||
<<<<<<< HEAD
|
||||
'permissionGroups' => $permissionGroups,
|
||||
=======
|
||||
'permissionGroups' => Permission::all()->groupBy('group')
|
||||
>>>>>>> f97a7a84985ea300216ba3ea2ab4c31306e1659a
|
||||
'showSidebar' => true,
|
||||
'collapsedGroups' => $this->collapsedGroups,
|
||||
]);
|
||||
}
|
||||
|
||||
@@ -340,4 +282,14 @@ class UserController extends Controller
|
||||
|
||||
return $descriptions[$permissionName] ?? str_replace('.', ' ', $permissionName);
|
||||
}
|
||||
|
||||
public function toggleGroupCollapse($groupName)
|
||||
{
|
||||
if (in_array($groupName, $this->collapsedGroups)) {
|
||||
$this->collapsedGroups = array_diff($this->collapsedGroups, [$groupName]);
|
||||
} else {
|
||||
$this->collapsedGroups[] = $groupName;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
28
app/Http/Services/PdfProcessor.php
Normal file
28
app/Http/Services/PdfProcessor.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
namespace App\Services;
|
||||
|
||||
use Spatie\PdfToText\Pdf;
|
||||
use PDFLib;
|
||||
|
||||
class PdfProcessor
|
||||
{
|
||||
public function extractAnnotations($path)
|
||||
{
|
||||
$text = (new Pdf())->setPdf($path)->text();
|
||||
// Analizar texto para detectar anotaciones
|
||||
return $this->parseAnnotations($text);
|
||||
}
|
||||
|
||||
public function embedAnnotations($originalPdf, $annotations)
|
||||
{
|
||||
$pdf = new PDFLib();
|
||||
$pdf->begin_document('', '');
|
||||
|
||||
foreach($annotations as $annotation) {
|
||||
$this->addAnnotationToPdf($pdf, $annotation);
|
||||
}
|
||||
|
||||
return $pdf->get_buffer();
|
||||
}
|
||||
}
|
||||
@@ -10,7 +10,6 @@ class ImageUploader extends Component
|
||||
{
|
||||
use WithFileUploads;
|
||||
|
||||
<<<<<<< HEAD
|
||||
public $image;
|
||||
public $imagePath;
|
||||
public $fieldName; // Nombre del campo para el formulario
|
||||
@@ -47,41 +46,10 @@ class ImageUploader extends Component
|
||||
field: $this->fieldName,
|
||||
path: $this->imagePath
|
||||
);
|
||||
=======
|
||||
public $photo;
|
||||
public $currentImage;
|
||||
public $fieldName;
|
||||
public $placeholder;
|
||||
public $storagePath = 'tmp/uploads';
|
||||
|
||||
protected $rules = [
|
||||
'photo' => 'nullable|image|max:2048', // 2MB Max
|
||||
];
|
||||
|
||||
public function mount($fieldName = 'photo', $currentImage = null, $placeholder = null)
|
||||
{
|
||||
$this->fieldName = $fieldName;
|
||||
$this->currentImage = $currentImage;
|
||||
$this->placeholder = $placeholder ?? asset('images/default-avatar.png');
|
||||
}
|
||||
|
||||
public function updatedPhoto()
|
||||
{
|
||||
$this->validate([
|
||||
'photo' => 'image|max:2048', // 2MB Max
|
||||
]);
|
||||
}
|
||||
|
||||
public function removePhoto()
|
||||
{
|
||||
$this->photo = null;
|
||||
$this->currentImage = null;
|
||||
>>>>>>> f97a7a84985ea300216ba3ea2ab4c31306e1659a
|
||||
}
|
||||
|
||||
public function save()
|
||||
{
|
||||
<<<<<<< HEAD
|
||||
$this->validate([
|
||||
'image' => 'required|image|max:2048',
|
||||
]);
|
||||
@@ -111,38 +79,6 @@ class ImageUploader extends Component
|
||||
$this->hover = $status;
|
||||
}
|
||||
|
||||
=======
|
||||
$this->validate();
|
||||
|
||||
if ($this->photo) {
|
||||
$path = $this->photo->store($this->storagePath);
|
||||
|
||||
if ($this->model) {
|
||||
// Eliminar imagen anterior si existe
|
||||
if ($this->model->{$this->fieldName}) {
|
||||
Storage::delete($this->model->{$this->fieldName});
|
||||
}
|
||||
|
||||
$this->model->{$this->fieldName} = $path;
|
||||
$this->model->save();
|
||||
}
|
||||
|
||||
$this->currentUrl = Storage::url($path);
|
||||
$this->showSavedMessage = true;
|
||||
$this->photo = null; // Limpiar el input de subida
|
||||
}
|
||||
}
|
||||
|
||||
protected function getCurrentImageUrl()
|
||||
{
|
||||
if ($this->model && $this->model->{$this->fieldName}) {
|
||||
return Storage::url($this->model->{$this->fieldName});
|
||||
}
|
||||
|
||||
return $this->placeholder;
|
||||
}
|
||||
|
||||
>>>>>>> f97a7a84985ea300216ba3ea2ab4c31306e1659a
|
||||
public function render()
|
||||
{
|
||||
return view('livewire.image-uploader');
|
||||
|
||||
37
app/Livewire/PdfViewer.php
Normal file
37
app/Livewire/PdfViewer.php
Normal file
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
namespace App\Livewire;
|
||||
|
||||
use Illuminate\Support\Facades\Storage;
|
||||
use Livewire\Component;
|
||||
|
||||
class PdfViewer extends Component
|
||||
{
|
||||
public $pdfUrl;
|
||||
public $currentPage = 1;
|
||||
public $totalPages = 1;
|
||||
public $zoomLevel = 1;
|
||||
|
||||
protected $listeners = ['pageChanged', 'annotationSaved'];
|
||||
|
||||
public function mount($pdfId)
|
||||
{
|
||||
$this->pdfUrl = Storage::disk('pdfs')->temporaryUrl($pdfId, now()->addMinutes(30));
|
||||
}
|
||||
|
||||
public function pageChanged($page)
|
||||
{
|
||||
$this->currentPage = $page;
|
||||
}
|
||||
|
||||
public function annotationSaved($data)
|
||||
{
|
||||
// Procesar y guardar anotaciones
|
||||
$this->emit('refreshAnnotations');
|
||||
}
|
||||
|
||||
public function render()
|
||||
{
|
||||
return view('livewire.pdf-viewer');
|
||||
}
|
||||
}
|
||||
@@ -240,16 +240,6 @@ class ProjectShow extends Component
|
||||
|
||||
public function render()
|
||||
{
|
||||
<<<<<<< HEAD
|
||||
return view('livewire.project.show')->layout('components.layouts.documents', [
|
||||
'title' => __('Project: :name', ['name' => $this->project->name]),
|
||||
'breadcrumbs' => [
|
||||
['name' => __('Projects'), 'url' => route('projects.index')],
|
||||
['name' => $this->project->name, 'url' => route('projects.show', $this->project)],
|
||||
],
|
||||
]);
|
||||
=======
|
||||
return view('livewire.project-show');
|
||||
>>>>>>> f97a7a84985ea300216ba3ea2ab4c31306e1659a
|
||||
return view('livewire.project.show');
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,6 +4,7 @@ namespace App\Providers;
|
||||
|
||||
use App\Livewire\FileUpload;
|
||||
use App\Livewire\ImageUploader;
|
||||
use App\Livewire\PdfViewer;
|
||||
use App\Livewire\ProjectShow;
|
||||
use App\Livewire\Toolbar;
|
||||
use App\View\Components\Multiselect;
|
||||
@@ -37,6 +38,7 @@ class AppServiceProvider extends ServiceProvider
|
||||
Livewire::component('file-upload', FileUpload::class);
|
||||
Livewire::component('toolbar', Toolbar::class);
|
||||
Livewire::component('image-uploader', ImageUploader::class);
|
||||
Livewire::component('pdf-viewer', PdfViewer::class);
|
||||
|
||||
// Validación personalizada
|
||||
Validator::extend('max_upload_size', function ($attribute, $value, $parameters, $validator) {
|
||||
@@ -47,5 +49,6 @@ class AppServiceProvider extends ServiceProvider
|
||||
|
||||
return $totalSize <= ($maxSize * 1024);
|
||||
});
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
26
app/View/Components/Accordion.php
Normal file
26
app/View/Components/Accordion.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
namespace App\View\Components;
|
||||
|
||||
use Closure;
|
||||
use Illuminate\Contracts\View\View;
|
||||
use Illuminate\View\Component;
|
||||
|
||||
class Accordion extends Component
|
||||
{
|
||||
/**
|
||||
* Create a new component instance.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the view / contents that represent the component.
|
||||
*/
|
||||
public function render(): View|Closure|string
|
||||
{
|
||||
return view('components.accordion');
|
||||
}
|
||||
}
|
||||
26
app/View/Components/AccordionItem.php
Normal file
26
app/View/Components/AccordionItem.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
namespace App\View\Components;
|
||||
|
||||
use Closure;
|
||||
use Illuminate\Contracts\View\View;
|
||||
use Illuminate\View\Component;
|
||||
|
||||
class AccordionItem extends Component
|
||||
{
|
||||
/**
|
||||
* Create a new component instance.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the view / contents that represent the component.
|
||||
*/
|
||||
public function render(): View|Closure|string
|
||||
{
|
||||
return view('components.accordion-item');
|
||||
}
|
||||
}
|
||||
@@ -15,6 +15,7 @@
|
||||
"laravel/tinker": "^2.10.1",
|
||||
"livewire/flux": "^2.1.1",
|
||||
"livewire/volt": "^1.7.0",
|
||||
"luvi-ui/laravel-luvi": "^0.6.0",
|
||||
"spatie/laravel-activitylog": "^4.10",
|
||||
"spatie/laravel-medialibrary": "^11.12",
|
||||
"spatie/laravel-permission": "^6.17",
|
||||
|
||||
600
composer.lock
generated
600
composer.lock
generated
File diff suppressed because it is too large
Load Diff
214
config/livewire-pdf.php
Normal file
214
config/livewire-pdf.php
Normal file
@@ -0,0 +1,214 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| PDF Storage Path
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This value determines the path where uploaded PDFs will be stored.
|
||||
| The path is relative to the storage directory.
|
||||
|
|
||||
*/
|
||||
'storage_path' => 'pdfs',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Temporary Storage Path
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This value determines the path where temporary PDFs will be stored
|
||||
| during processing. The path is relative to the storage directory.
|
||||
|
|
||||
*/
|
||||
'temp_path' => 'pdfs/temp',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| PDF Processing Options
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| These options control how PDFs are processed and rendered.
|
||||
|
|
||||
*/
|
||||
'processing' => [
|
||||
'max_file_size' => 10 * 1024 * 1024, // 10MB
|
||||
'allowed_extensions' => ['pdf'],
|
||||
'use_web_workers' => true,
|
||||
'cache_rendered_pages' => true,
|
||||
'cache_ttl' => 60 * 24, // 24 hours
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Form Field Options
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| These options control the default properties for form fields.
|
||||
|
|
||||
*/
|
||||
'form_fields' => [
|
||||
'text' => [
|
||||
'font_size' => 12,
|
||||
'font_family' => 'Helvetica',
|
||||
'color' => '#000000',
|
||||
'multiline' => false,
|
||||
],
|
||||
'checkbox' => [
|
||||
'size' => 12,
|
||||
'checked_by_default' => false,
|
||||
],
|
||||
'radio' => [
|
||||
'size' => 12,
|
||||
'selected_by_default' => false,
|
||||
],
|
||||
'dropdown' => [
|
||||
'font_size' => 12,
|
||||
'font_family' => 'Helvetica',
|
||||
],
|
||||
'signature' => [
|
||||
'width' => 200,
|
||||
'height' => 50,
|
||||
],
|
||||
'date' => [
|
||||
'format' => 'YYYY-MM-DD',
|
||||
'font_size' => 12,
|
||||
'font_family' => 'Helvetica',
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| eSignature Platform Compatibility
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| These options control compatibility with various eSignature platforms.
|
||||
|
|
||||
*/
|
||||
'esignature_compatibility' => [
|
||||
'docusign' => [
|
||||
'enabled' => true,
|
||||
'field_naming_convention' => 'docusign',
|
||||
],
|
||||
'adobe_sign' => [
|
||||
'enabled' => true,
|
||||
'field_naming_convention' => 'adobe',
|
||||
],
|
||||
'pandadoc' => [
|
||||
'enabled' => true,
|
||||
'field_naming_convention' => 'pandadoc',
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| UI Configuration
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Configure the UI elements of the PDF viewer and editor.
|
||||
|
|
||||
*/
|
||||
'ui' => [
|
||||
// Available zoom levels for the PDF viewer
|
||||
'zoom_levels' => [0.5, 0.75, 1, 1.25, 1.5, 2],
|
||||
|
||||
// Default zoom level
|
||||
'default_zoom' => 1,
|
||||
|
||||
// Show page thumbnails
|
||||
'show_thumbnails' => true,
|
||||
|
||||
// Show toolbar
|
||||
'show_toolbar' => true,
|
||||
|
||||
// Show sidebar
|
||||
'show_sidebar' => true,
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Form Field Types
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Configure the available form field types.
|
||||
|
|
||||
*/
|
||||
'field_types' => [
|
||||
'text' => [
|
||||
'label' => 'Text Field',
|
||||
'icon' => 'text-field',
|
||||
'properties' => [
|
||||
'font_size' => 12,
|
||||
'font_family' => 'Helvetica',
|
||||
'text_color' => '#000000',
|
||||
'background_color' => '#FFFFFF',
|
||||
'border_color' => '#000000',
|
||||
'border_width' => 1,
|
||||
'border_style' => 'solid',
|
||||
'placeholder' => '',
|
||||
'max_length' => null,
|
||||
],
|
||||
],
|
||||
'checkbox' => [
|
||||
'label' => 'Checkbox',
|
||||
'icon' => 'checkbox',
|
||||
'properties' => [
|
||||
'checked' => false,
|
||||
'background_color' => '#FFFFFF',
|
||||
'border_color' => '#000000',
|
||||
'border_width' => 1,
|
||||
'border_style' => 'solid',
|
||||
],
|
||||
],
|
||||
'radio' => [
|
||||
'label' => 'Radio Button',
|
||||
'icon' => 'radio',
|
||||
'properties' => [
|
||||
'checked' => false,
|
||||
'background_color' => '#FFFFFF',
|
||||
'border_color' => '#000000',
|
||||
'border_width' => 1,
|
||||
'border_style' => 'solid',
|
||||
],
|
||||
],
|
||||
'dropdown' => [
|
||||
'label' => 'Dropdown',
|
||||
'icon' => 'dropdown',
|
||||
'properties' => [
|
||||
'options' => [],
|
||||
'selected' => null,
|
||||
'font_size' => 12,
|
||||
'font_family' => 'Helvetica',
|
||||
'text_color' => '#000000',
|
||||
'background_color' => '#FFFFFF',
|
||||
'border_color' => '#000000',
|
||||
'border_width' => 1,
|
||||
'border_style' => 'solid',
|
||||
],
|
||||
],
|
||||
'signature' => [
|
||||
'label' => 'Signature',
|
||||
'icon' => 'signature',
|
||||
'properties' => [
|
||||
'background_color' => '#FFFFFF',
|
||||
'border_color' => '#000000',
|
||||
'border_width' => 1,
|
||||
'border_style' => 'solid',
|
||||
],
|
||||
],
|
||||
'date' => [
|
||||
'label' => 'Date',
|
||||
'icon' => 'date',
|
||||
'properties' => [
|
||||
'format' => 'YYYY-MM-DD',
|
||||
'font_size' => 12,
|
||||
'font_family' => 'Helvetica',
|
||||
'text_color' => '#000000',
|
||||
'background_color' => '#FFFFFF',
|
||||
'border_color' => '#000000',
|
||||
'border_width' => 1,
|
||||
'border_style' => 'solid',
|
||||
],
|
||||
],
|
||||
],
|
||||
];
|
||||
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::table('projects', function (Blueprint $table) {
|
||||
$table->string('reference')->nullable()->after('id')->uniqidue();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::table('projects', function (Blueprint $table) {
|
||||
$table->dropColumn('reference');
|
||||
});
|
||||
}
|
||||
};
|
||||
283
package-lock.json
generated
283
package-lock.json
generated
@@ -603,182 +603,180 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@rollup/rollup-android-arm-eabi": {
|
||||
"version": "4.34.8",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.34.8.tgz",
|
||||
"integrity": "sha512-q217OSE8DTp8AFHuNHXo0Y86e1wtlfVrXiAlwkIvGRQv9zbc6mE3sjIVfwI8sYUyNxwOg0j/Vm1RKM04JcWLJw==",
|
||||
"version": "4.40.2",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.40.2.tgz",
|
||||
"integrity": "sha512-JkdNEq+DFxZfUwxvB58tHMHBHVgX23ew41g1OQinthJ+ryhdRk67O31S7sYw8u2lTjHUPFxwar07BBt1KHp/hg==",
|
||||
"cpu": [
|
||||
"arm"
|
||||
],
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"android"
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-android-arm64": {
|
||||
"version": "4.34.8",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.34.8.tgz",
|
||||
"integrity": "sha512-Gigjz7mNWaOL9wCggvoK3jEIUUbGul656opstjaUSGC3eT0BM7PofdAJaBfPFWWkXNVAXbaQtC99OCg4sJv70Q==",
|
||||
"version": "4.40.2",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.40.2.tgz",
|
||||
"integrity": "sha512-13unNoZ8NzUmnndhPTkWPWbX3vtHodYmy+I9kuLxN+F+l+x3LdVF7UCu8TWVMt1POHLh6oDHhnOA04n8oJZhBw==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"android"
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-darwin-arm64": {
|
||||
"version": "4.34.8",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.34.8.tgz",
|
||||
"integrity": "sha512-02rVdZ5tgdUNRxIUrFdcMBZQoaPMrxtwSb+/hOfBdqkatYHR3lZ2A2EGyHq2sGOd0Owk80oV3snlDASC24He3Q==",
|
||||
"version": "4.40.2",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.40.2.tgz",
|
||||
"integrity": "sha512-Gzf1Hn2Aoe8VZzevHostPX23U7N5+4D36WJNHK88NZHCJr7aVMG4fadqkIf72eqVPGjGc0HJHNuUaUcxiR+N/w==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"darwin"
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-darwin-x64": {
|
||||
"version": "4.34.8",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.34.8.tgz",
|
||||
"integrity": "sha512-qIP/elwR/tq/dYRx3lgwK31jkZvMiD6qUtOycLhTzCvrjbZ3LjQnEM9rNhSGpbLXVJYQ3rq39A6Re0h9tU2ynw==",
|
||||
"version": "4.40.2",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.40.2.tgz",
|
||||
"integrity": "sha512-47N4hxa01a4x6XnJoskMKTS8XZ0CZMd8YTbINbi+w03A2w4j1RTlnGHOz/P0+Bg1LaVL6ufZyNprSg+fW5nYQQ==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"darwin"
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-freebsd-arm64": {
|
||||
"version": "4.34.8",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.34.8.tgz",
|
||||
"integrity": "sha512-IQNVXL9iY6NniYbTaOKdrlVP3XIqazBgJOVkddzJlqnCpRi/yAeSOa8PLcECFSQochzqApIOE1GHNu3pCz+BDA==",
|
||||
"version": "4.40.2",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.40.2.tgz",
|
||||
"integrity": "sha512-8t6aL4MD+rXSHHZUR1z19+9OFJ2rl1wGKvckN47XFRVO+QL/dUSpKA2SLRo4vMg7ELA8pzGpC+W9OEd1Z/ZqoQ==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"freebsd"
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-freebsd-x64": {
|
||||
"version": "4.34.8",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.34.8.tgz",
|
||||
"integrity": "sha512-TYXcHghgnCqYFiE3FT5QwXtOZqDj5GmaFNTNt3jNC+vh22dc/ukG2cG+pi75QO4kACohZzidsq7yKTKwq/Jq7Q==",
|
||||
"version": "4.40.2",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.40.2.tgz",
|
||||
"integrity": "sha512-C+AyHBzfpsOEYRFjztcYUFsH4S7UsE9cDtHCtma5BK8+ydOZYgMmWg1d/4KBytQspJCld8ZIujFMAdKG1xyr4Q==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"freebsd"
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
||||
"version": "4.34.8",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.34.8.tgz",
|
||||
"integrity": "sha512-A4iphFGNkWRd+5m3VIGuqHnG3MVnqKe7Al57u9mwgbyZ2/xF9Jio72MaY7xxh+Y87VAHmGQr73qoKL9HPbXj1g==",
|
||||
"version": "4.40.2",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.40.2.tgz",
|
||||
"integrity": "sha512-de6TFZYIvJwRNjmW3+gaXiZ2DaWL5D5yGmSYzkdzjBDS3W+B9JQ48oZEsmMvemqjtAFzE16DIBLqd6IQQRuG9Q==",
|
||||
"cpu": [
|
||||
"arm"
|
||||
],
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
||||
"version": "4.34.8",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.34.8.tgz",
|
||||
"integrity": "sha512-S0lqKLfTm5u+QTxlFiAnb2J/2dgQqRy/XvziPtDd1rKZFXHTyYLoVL58M/XFwDI01AQCDIevGLbQrMAtdyanpA==",
|
||||
"version": "4.40.2",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.40.2.tgz",
|
||||
"integrity": "sha512-urjaEZubdIkacKc930hUDOfQPysezKla/O9qV+O89enqsqUmQm8Xj8O/vh0gHg4LYfv7Y7UsE3QjzLQzDYN1qg==",
|
||||
"cpu": [
|
||||
"arm"
|
||||
],
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
||||
"version": "4.34.8",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.34.8.tgz",
|
||||
"integrity": "sha512-jpz9YOuPiSkL4G4pqKrus0pn9aYwpImGkosRKwNi+sJSkz+WU3anZe6hi73StLOQdfXYXC7hUfsQlTnjMd3s1A==",
|
||||
"version": "4.40.2",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.40.2.tgz",
|
||||
"integrity": "sha512-KlE8IC0HFOC33taNt1zR8qNlBYHj31qGT1UqWqtvR/+NuCVhfufAq9fxO8BMFC22Wu0rxOwGVWxtCMvZVLmhQg==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
||||
"version": "4.34.8",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.34.8.tgz",
|
||||
"integrity": "sha512-KdSfaROOUJXgTVxJNAZ3KwkRc5nggDk+06P6lgi1HLv1hskgvxHUKZ4xtwHkVYJ1Rep4GNo+uEfycCRRxht7+Q==",
|
||||
"version": "4.40.2",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.40.2.tgz",
|
||||
"integrity": "sha512-j8CgxvfM0kbnhu4XgjnCWJQyyBOeBI1Zq91Z850aUddUmPeQvuAy6OiMdPS46gNFgy8gN1xkYyLgwLYZG3rBOg==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-linux-loongarch64-gnu": {
|
||||
"version": "4.34.8",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.34.8.tgz",
|
||||
"integrity": "sha512-NyF4gcxwkMFRjgXBM6g2lkT58OWztZvw5KkV2K0qqSnUEqCVcqdh2jN4gQrTn/YUpAcNKyFHfoOZEer9nwo6uQ==",
|
||||
"version": "4.40.2",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.40.2.tgz",
|
||||
"integrity": "sha512-Ybc/1qUampKuRF4tQXc7G7QY9YRyeVSykfK36Y5Qc5dmrIxwFhrOzqaVTNoZygqZ1ZieSWTibfFhQ5qK8jpWxw==",
|
||||
"cpu": [
|
||||
"loong64"
|
||||
],
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
|
||||
"version": "4.34.8",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.34.8.tgz",
|
||||
"integrity": "sha512-LMJc999GkhGvktHU85zNTDImZVUCJ1z/MbAJTnviiWmmjyckP5aQsHtcujMjpNdMZPT2rQEDBlJfubhs3jsMfw==",
|
||||
"version": "4.40.2",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.40.2.tgz",
|
||||
"integrity": "sha512-3FCIrnrt03CCsZqSYAOW/k9n625pjpuMzVfeI+ZBUSDT3MVIFDSPfSUgIl9FqUftxcUXInvFah79hE1c9abD+Q==",
|
||||
"cpu": [
|
||||
"ppc64"
|
||||
],
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
||||
"version": "4.34.8",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.34.8.tgz",
|
||||
"integrity": "sha512-xAQCAHPj8nJq1PI3z8CIZzXuXCstquz7cIOL73HHdXiRcKk8Ywwqtx2wrIy23EcTn4aZ2fLJNBB8d0tQENPCmw==",
|
||||
"version": "4.40.2",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.40.2.tgz",
|
||||
"integrity": "sha512-QNU7BFHEvHMp2ESSY3SozIkBPaPBDTsfVNGx3Xhv+TdvWXFGOSH2NJvhD1zKAT6AyuuErJgbdvaJhYVhVqrWTg==",
|
||||
"cpu": [
|
||||
"riscv64"
|
||||
],
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-linux-riscv64-musl": {
|
||||
"version": "4.40.2",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.40.2.tgz",
|
||||
"integrity": "sha512-5W6vNYkhgfh7URiXTO1E9a0cy4fSgfE4+Hl5agb/U1sa0kjOLMLC1wObxwKxecE17j0URxuTrYZZME4/VH57Hg==",
|
||||
"cpu": [
|
||||
"riscv64"
|
||||
],
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
||||
"version": "4.34.8",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.34.8.tgz",
|
||||
"integrity": "sha512-DdePVk1NDEuc3fOe3dPPTb+rjMtuFw89gw6gVWxQFAuEqqSdDKnrwzZHrUYdac7A7dXl9Q2Vflxpme15gUWQFA==",
|
||||
"version": "4.40.2",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.40.2.tgz",
|
||||
"integrity": "sha512-B7LKIz+0+p348JoAL4X/YxGx9zOx3sR+o6Hj15Y3aaApNfAshK8+mWZEf759DXfRLeL2vg5LYJBB7DdcleYCoQ==",
|
||||
"cpu": [
|
||||
"s390x"
|
||||
],
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
@@ -798,52 +796,48 @@
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-linux-x64-musl": {
|
||||
"version": "4.34.8",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.34.8.tgz",
|
||||
"integrity": "sha512-SCXcP0ZpGFIe7Ge+McxY5zKxiEI5ra+GT3QRxL0pMMtxPfpyLAKleZODi1zdRHkz5/BhueUrYtYVgubqe9JBNQ==",
|
||||
"version": "4.40.2",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.40.2.tgz",
|
||||
"integrity": "sha512-tD46wKHd+KJvsmije4bUskNuvWKFcTOIM9tZ/RrmIvcXnbi0YK/cKS9FzFtAm7Oxi2EhV5N2OpfFB348vSQRXA==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
||||
"version": "4.34.8",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.34.8.tgz",
|
||||
"integrity": "sha512-YHYsgzZgFJzTRbth4h7Or0m5O74Yda+hLin0irAIobkLQFRQd1qWmnoVfwmKm9TXIZVAD0nZ+GEb2ICicLyCnQ==",
|
||||
"version": "4.40.2",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.40.2.tgz",
|
||||
"integrity": "sha512-Bjv/HG8RRWLNkXwQQemdsWw4Mg+IJ29LK+bJPW2SCzPKOUaMmPEppQlu/Fqk1d7+DX3V7JbFdbkh/NMmurT6Pg==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"win32"
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
||||
"version": "4.34.8",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.34.8.tgz",
|
||||
"integrity": "sha512-r3NRQrXkHr4uWy5TOjTpTYojR9XmF0j/RYgKCef+Ag46FWUTltm5ziticv8LdNsDMehjJ543x/+TJAek/xBA2w==",
|
||||
"version": "4.40.2",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.40.2.tgz",
|
||||
"integrity": "sha512-dt1llVSGEsGKvzeIO76HToiYPNPYPkmjhMHhP00T9S4rDern8P2ZWvWAQUEJ+R1UdMWJ/42i/QqJ2WV765GZcA==",
|
||||
"cpu": [
|
||||
"ia32"
|
||||
],
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"win32"
|
||||
]
|
||||
},
|
||||
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
||||
"version": "4.34.8",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.34.8.tgz",
|
||||
"integrity": "sha512-U0FaE5O1BCpZSeE6gBl3c5ObhePQSfk9vDRToMmTkbhCOgW4jqvtS5LGyQ76L1fH8sM0keRp4uDTsbjiUyjk0g==",
|
||||
"version": "4.40.2",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.40.2.tgz",
|
||||
"integrity": "sha512-bwspbWB04XJpeElvsp+DCylKfF4trJDa2Y9Go8O6A7YLX2LIKGcNK/CYImJN6ZP4DcuOHB4Utl3iCbnR62DudA==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"win32"
|
||||
@@ -1074,10 +1068,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@types/estree": {
|
||||
"version": "1.0.6",
|
||||
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz",
|
||||
"integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==",
|
||||
"license": "MIT"
|
||||
"version": "1.0.7",
|
||||
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.7.tgz",
|
||||
"integrity": "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ=="
|
||||
},
|
||||
"node_modules/@yaireo/tagify": {
|
||||
"version": "4.34.0",
|
||||
@@ -1161,10 +1154,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/axios": {
|
||||
"version": "1.7.9",
|
||||
"resolved": "https://registry.npmjs.org/axios/-/axios-1.7.9.tgz",
|
||||
"integrity": "sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==",
|
||||
"license": "MIT",
|
||||
"version": "1.9.0",
|
||||
"resolved": "https://registry.npmjs.org/axios/-/axios-1.9.0.tgz",
|
||||
"integrity": "sha512-re4CqKTJaURpzbLHtIi6XpDv20/CnpXOtjRY5/CU32L8gU8ek9UIivcfvSWvmKEngmVbrUtPpdDwWDWL7DNHvg==",
|
||||
"dependencies": {
|
||||
"follow-redirects": "^1.15.6",
|
||||
"form-data": "^4.0.0",
|
||||
@@ -1550,7 +1542,6 @@
|
||||
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
||||
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
||||
"hasInstallScript": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"darwin"
|
||||
@@ -2206,12 +2197,11 @@
|
||||
}
|
||||
},
|
||||
"node_modules/rollup": {
|
||||
"version": "4.34.8",
|
||||
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.34.8.tgz",
|
||||
"integrity": "sha512-489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ==",
|
||||
"license": "MIT",
|
||||
"version": "4.40.2",
|
||||
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.40.2.tgz",
|
||||
"integrity": "sha512-tfUOg6DTP4rhQ3VjOO6B4wyrJnGOX85requAXvqYTHsOgb2TFJdZ3aWpT8W2kPoypSGP7dZUyzxJ9ee4buM5Fg==",
|
||||
"dependencies": {
|
||||
"@types/estree": "1.0.6"
|
||||
"@types/estree": "1.0.7"
|
||||
},
|
||||
"bin": {
|
||||
"rollup": "dist/bin/rollup"
|
||||
@@ -2221,36 +2211,36 @@
|
||||
"npm": ">=8.0.0"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"@rollup/rollup-android-arm-eabi": "4.34.8",
|
||||
"@rollup/rollup-android-arm64": "4.34.8",
|
||||
"@rollup/rollup-darwin-arm64": "4.34.8",
|
||||
"@rollup/rollup-darwin-x64": "4.34.8",
|
||||
"@rollup/rollup-freebsd-arm64": "4.34.8",
|
||||
"@rollup/rollup-freebsd-x64": "4.34.8",
|
||||
"@rollup/rollup-linux-arm-gnueabihf": "4.34.8",
|
||||
"@rollup/rollup-linux-arm-musleabihf": "4.34.8",
|
||||
"@rollup/rollup-linux-arm64-gnu": "4.34.8",
|
||||
"@rollup/rollup-linux-arm64-musl": "4.34.8",
|
||||
"@rollup/rollup-linux-loongarch64-gnu": "4.34.8",
|
||||
"@rollup/rollup-linux-powerpc64le-gnu": "4.34.8",
|
||||
"@rollup/rollup-linux-riscv64-gnu": "4.34.8",
|
||||
"@rollup/rollup-linux-s390x-gnu": "4.34.8",
|
||||
"@rollup/rollup-linux-x64-gnu": "4.34.8",
|
||||
"@rollup/rollup-linux-x64-musl": "4.34.8",
|
||||
"@rollup/rollup-win32-arm64-msvc": "4.34.8",
|
||||
"@rollup/rollup-win32-ia32-msvc": "4.34.8",
|
||||
"@rollup/rollup-win32-x64-msvc": "4.34.8",
|
||||
"@rollup/rollup-android-arm-eabi": "4.40.2",
|
||||
"@rollup/rollup-android-arm64": "4.40.2",
|
||||
"@rollup/rollup-darwin-arm64": "4.40.2",
|
||||
"@rollup/rollup-darwin-x64": "4.40.2",
|
||||
"@rollup/rollup-freebsd-arm64": "4.40.2",
|
||||
"@rollup/rollup-freebsd-x64": "4.40.2",
|
||||
"@rollup/rollup-linux-arm-gnueabihf": "4.40.2",
|
||||
"@rollup/rollup-linux-arm-musleabihf": "4.40.2",
|
||||
"@rollup/rollup-linux-arm64-gnu": "4.40.2",
|
||||
"@rollup/rollup-linux-arm64-musl": "4.40.2",
|
||||
"@rollup/rollup-linux-loongarch64-gnu": "4.40.2",
|
||||
"@rollup/rollup-linux-powerpc64le-gnu": "4.40.2",
|
||||
"@rollup/rollup-linux-riscv64-gnu": "4.40.2",
|
||||
"@rollup/rollup-linux-riscv64-musl": "4.40.2",
|
||||
"@rollup/rollup-linux-s390x-gnu": "4.40.2",
|
||||
"@rollup/rollup-linux-x64-gnu": "4.40.2",
|
||||
"@rollup/rollup-linux-x64-musl": "4.40.2",
|
||||
"@rollup/rollup-win32-arm64-msvc": "4.40.2",
|
||||
"@rollup/rollup-win32-ia32-msvc": "4.40.2",
|
||||
"@rollup/rollup-win32-x64-msvc": "4.40.2",
|
||||
"fsevents": "~2.3.2"
|
||||
}
|
||||
},
|
||||
"node_modules/rollup/node_modules/@rollup/rollup-linux-x64-gnu": {
|
||||
"version": "4.34.8",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.34.8.tgz",
|
||||
"integrity": "sha512-8y7ED8gjxITUltTUEJLQdgpbPh1sUQ0kMTmufRF/Ns5tI9TNMNlhWtmPKKHCU0SilX+3MJkZ0zERYYGIVBYHIA==",
|
||||
"version": "4.40.2",
|
||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.40.2.tgz",
|
||||
"integrity": "sha512-lG7Xa+BmBNwpjmVUbmyKxdQJ3Q6whHjMjzQplOs5Z+Gj7mxPtWakGHqzMqNER68G67kmCX9qX57aRsW5V0VOng==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
@@ -2348,6 +2338,45 @@
|
||||
"node": ">=6"
|
||||
}
|
||||
},
|
||||
"node_modules/tinyglobby": {
|
||||
"version": "0.2.13",
|
||||
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.13.tgz",
|
||||
"integrity": "sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw==",
|
||||
"dependencies": {
|
||||
"fdir": "^6.4.4",
|
||||
"picomatch": "^4.0.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=12.0.0"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/SuperchupuDev"
|
||||
}
|
||||
},
|
||||
"node_modules/tinyglobby/node_modules/fdir": {
|
||||
"version": "6.4.4",
|
||||
"resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.4.tgz",
|
||||
"integrity": "sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg==",
|
||||
"peerDependencies": {
|
||||
"picomatch": "^3 || ^4"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
"picomatch": {
|
||||
"optional": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"node_modules/tinyglobby/node_modules/picomatch": {
|
||||
"version": "4.0.2",
|
||||
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz",
|
||||
"integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==",
|
||||
"engines": {
|
||||
"node": ">=12"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/jonschlinkert"
|
||||
}
|
||||
},
|
||||
"node_modules/tree-kill": {
|
||||
"version": "1.2.2",
|
||||
"resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz",
|
||||
@@ -2394,14 +2423,16 @@
|
||||
}
|
||||
},
|
||||
"node_modules/vite": {
|
||||
"version": "6.2.0",
|
||||
"resolved": "https://registry.npmjs.org/vite/-/vite-6.2.0.tgz",
|
||||
"integrity": "sha512-7dPxoo+WsT/64rDcwoOjk76XHj+TqNTIvHKcuMQ1k4/SeHDaQt5GFAeLYzrimZrMpn/O6DtdI03WUjdxuPM0oQ==",
|
||||
"license": "MIT",
|
||||
"version": "6.3.5",
|
||||
"resolved": "https://registry.npmjs.org/vite/-/vite-6.3.5.tgz",
|
||||
"integrity": "sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==",
|
||||
"dependencies": {
|
||||
"esbuild": "^0.25.0",
|
||||
"fdir": "^6.4.4",
|
||||
"picomatch": "^4.0.2",
|
||||
"postcss": "^8.5.3",
|
||||
"rollup": "^4.30.1"
|
||||
"rollup": "^4.34.9",
|
||||
"tinyglobby": "^0.2.13"
|
||||
},
|
||||
"bin": {
|
||||
"vite": "bin/vite.js"
|
||||
@@ -2474,6 +2505,30 @@
|
||||
"picomatch": "^2.3.1"
|
||||
}
|
||||
},
|
||||
"node_modules/vite/node_modules/fdir": {
|
||||
"version": "6.4.4",
|
||||
"resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.4.tgz",
|
||||
"integrity": "sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg==",
|
||||
"peerDependencies": {
|
||||
"picomatch": "^3 || ^4"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
"picomatch": {
|
||||
"optional": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"node_modules/vite/node_modules/picomatch": {
|
||||
"version": "4.0.2",
|
||||
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz",
|
||||
"integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==",
|
||||
"engines": {
|
||||
"node": ">=12"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/jonschlinkert"
|
||||
}
|
||||
},
|
||||
"node_modules/wrap-ansi": {
|
||||
"version": "7.0.0",
|
||||
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
|
||||
|
||||
177
resources/js/pdfjs-5.2.133-dist/LICENSE
Normal file
177
resources/js/pdfjs-5.2.133-dist/LICENSE
Normal file
@@ -0,0 +1,177 @@
|
||||
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
22614
resources/js/pdfjs-5.2.133-dist/build/pdf.mjs
Normal file
22614
resources/js/pdfjs-5.2.133-dist/build/pdf.mjs
Normal file
File diff suppressed because it is too large
Load Diff
1
resources/js/pdfjs-5.2.133-dist/build/pdf.mjs.map
Normal file
1
resources/js/pdfjs-5.2.133-dist/build/pdf.mjs.map
Normal file
File diff suppressed because one or more lines are too long
216
resources/js/pdfjs-5.2.133-dist/build/pdf.sandbox.mjs
Normal file
216
resources/js/pdfjs-5.2.133-dist/build/pdf.sandbox.mjs
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
57734
resources/js/pdfjs-5.2.133-dist/build/pdf.worker.mjs
Normal file
57734
resources/js/pdfjs-5.2.133-dist/build/pdf.worker.mjs
Normal file
File diff suppressed because one or more lines are too long
1
resources/js/pdfjs-5.2.133-dist/build/pdf.worker.mjs.map
Normal file
1
resources/js/pdfjs-5.2.133-dist/build/pdf.worker.mjs.map
Normal file
File diff suppressed because one or more lines are too long
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/78-EUC-H.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/78-EUC-H.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/78-EUC-V.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/78-EUC-V.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/78-H.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/78-H.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/78-RKSJ-H.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/78-RKSJ-H.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/78-RKSJ-V.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/78-RKSJ-V.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/78-V.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/78-V.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/78ms-RKSJ-H.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/78ms-RKSJ-H.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/78ms-RKSJ-V.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/78ms-RKSJ-V.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/83pv-RKSJ-H.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/83pv-RKSJ-H.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/90ms-RKSJ-H.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/90ms-RKSJ-H.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/90ms-RKSJ-V.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/90ms-RKSJ-V.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/90msp-RKSJ-H.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/90msp-RKSJ-H.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/90msp-RKSJ-V.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/90msp-RKSJ-V.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/90pv-RKSJ-H.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/90pv-RKSJ-H.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/90pv-RKSJ-V.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/90pv-RKSJ-V.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Add-H.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Add-H.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Add-RKSJ-H.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Add-RKSJ-H.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Add-RKSJ-V.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Add-RKSJ-V.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Add-V.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Add-V.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-CNS1-0.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-CNS1-0.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-CNS1-1.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-CNS1-1.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-CNS1-2.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-CNS1-2.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-CNS1-3.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-CNS1-3.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-CNS1-4.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-CNS1-4.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-CNS1-5.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-CNS1-5.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-CNS1-6.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-CNS1-6.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-CNS1-UCS2.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-CNS1-UCS2.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-GB1-0.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-GB1-0.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-GB1-1.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-GB1-1.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-GB1-2.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-GB1-2.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-GB1-3.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-GB1-3.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-GB1-4.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-GB1-4.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-GB1-5.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-GB1-5.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-GB1-UCS2.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-GB1-UCS2.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-Japan1-0.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-Japan1-0.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-Japan1-1.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-Japan1-1.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-Japan1-2.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-Japan1-2.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-Japan1-3.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-Japan1-3.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-Japan1-4.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-Japan1-4.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-Japan1-5.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-Japan1-5.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-Japan1-6.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-Japan1-6.bcmap
Normal file
Binary file not shown.
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-Korea1-0.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-Korea1-0.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-Korea1-1.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-Korea1-1.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-Korea1-2.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Adobe-Korea1-2.bcmap
Normal file
Binary file not shown.
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/B5-H.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/B5-H.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/B5-V.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/B5-V.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/B5pc-H.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/B5pc-H.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/B5pc-V.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/B5pc-V.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/CNS-EUC-H.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/CNS-EUC-H.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/CNS-EUC-V.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/CNS-EUC-V.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/CNS1-H.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/CNS1-H.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/CNS1-V.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/CNS1-V.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/CNS2-H.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/CNS2-H.bcmap
Normal file
Binary file not shown.
3
resources/js/pdfjs-5.2.133-dist/web/cmaps/CNS2-V.bcmap
Normal file
3
resources/js/pdfjs-5.2.133-dist/web/cmaps/CNS2-V.bcmap
Normal file
@@ -0,0 +1,3 @@
|
||||
àRCopyright 1990-2009 Adobe Systems Incorporated.
|
||||
All rights reserved.
|
||||
See ./LICENSEáCNS2-H
|
||||
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/ETHK-B5-H.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/ETHK-B5-H.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/ETHK-B5-V.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/ETHK-B5-V.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/ETen-B5-H.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/ETen-B5-H.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/ETen-B5-V.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/ETen-B5-V.bcmap
Normal file
Binary file not shown.
@@ -0,0 +1,3 @@
|
||||
àRCopyright 1990-2009 Adobe Systems Incorporated.
|
||||
All rights reserved.
|
||||
See ./LICENSEá ETen-B5-H` ^
|
||||
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/ETenms-B5-V.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/ETenms-B5-V.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/EUC-H.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/EUC-H.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/EUC-V.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/EUC-V.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Ext-H.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Ext-H.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Ext-RKSJ-H.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Ext-RKSJ-H.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Ext-RKSJ-V.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Ext-RKSJ-V.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Ext-V.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/Ext-V.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/GB-EUC-H.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/GB-EUC-H.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/GB-EUC-V.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/GB-EUC-V.bcmap
Normal file
Binary file not shown.
4
resources/js/pdfjs-5.2.133-dist/web/cmaps/GB-H.bcmap
Normal file
4
resources/js/pdfjs-5.2.133-dist/web/cmaps/GB-H.bcmap
Normal file
@@ -0,0 +1,4 @@
|
||||
àRCopyright 1990-2009 Adobe Systems Incorporated.
|
||||
All rights reserved.
|
||||
See ./LICENSE!!<21>º]aX!!]`<60>21<32>> <09>p<0B>z<EFBFBD>$]‚<06>"R‚d<E2809A>-Uƒ7<C692>*„
|
||||
4„%<25>+ „Z „{<7B>/…%…<<3C>9K…b<E280A6>1]†.<2E>"‡‰`]‡,<2C>"]ˆ
|
||||
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/GB-V.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/GB-V.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/GBK-EUC-H.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/GBK-EUC-H.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/GBK-EUC-V.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/GBK-EUC-V.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/GBK2K-H.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/GBK2K-H.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/GBK2K-V.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/GBK2K-V.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/GBKp-EUC-H.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/GBKp-EUC-H.bcmap
Normal file
Binary file not shown.
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/GBKp-EUC-V.bcmap
Normal file
BIN
resources/js/pdfjs-5.2.133-dist/web/cmaps/GBKp-EUC-V.bcmap
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user