mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
add calendar festivos
This commit is contained in:
@ -53,7 +53,6 @@ $routes->group('configuracion', ['namespace' => 'App\Controllers\Configuracion']
|
|||||||
$routes->post('duplicate/(:num)', 'Papelesimpresion::duplicate/$1', ['as' => 'duplicatePapelImpresion']);
|
$routes->post('duplicate/(:num)', 'Papelesimpresion::duplicate/$1', ['as' => 'duplicatePapelImpresion']);
|
||||||
$routes->get('select', 'Papelesimpresion::papel_impresion_select', ['as' => 'papelImpresionSelect']);
|
$routes->get('select', 'Papelesimpresion::papel_impresion_select', ['as' => 'papelImpresionSelect']);
|
||||||
$routes->get('show/(:num)', 'Papelesimpresion::papel_impresion_find/$1', ['as' => 'showPapelImpresion']);
|
$routes->get('show/(:num)', 'Papelesimpresion::papel_impresion_find/$1', ['as' => 'showPapelImpresion']);
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
/* Maquinas */
|
/* Maquinas */
|
||||||
@ -149,5 +148,15 @@ $routes->group('configuracion', ['namespace' => 'App\Controllers\Configuracion']
|
|||||||
$routes->group("messages", ["namespace" => 'App\Controllers\Chat'], function ($routes) {
|
$routes->group("messages", ["namespace" => 'App\Controllers\Chat'], function ($routes) {
|
||||||
$routes->get('', 'ChatController::config_view', ['as' => 'configMessagesIndex']);
|
$routes->get('', 'ChatController::config_view', ['as' => 'configMessagesIndex']);
|
||||||
});
|
});
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
|
/* Festivos */
|
||||||
|
$routes->group("festivos", ["namespace" => 'App\Controllers\Configuracion'], function ($routes) {
|
||||||
|
$routes->get('', 'FestivoController::index', ['as' => 'festivosList']);
|
||||||
|
$routes->post('', 'FestivoController::store_festivo_date', ['as' => 'storeFestivoDate']);
|
||||||
|
$routes->delete('(:num)', 'FestivoController::delete_festivo_date/$1', ['as' => 'deleteFestivoDate']);
|
||||||
|
$routes->get('all', 'FestivoController::find_all', ['as' => 'getFindAllFestivos']);
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
|||||||
103
ci4/app/Controllers/Configuracion/FestivoController.php
Normal file
103
ci4/app/Controllers/Configuracion/FestivoController.php
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Controllers\Configuracion;
|
||||||
|
|
||||||
|
use App\Controllers\BaseController;
|
||||||
|
use App\Controllers\BaseResourceController;
|
||||||
|
use App\Entities\Configuracion\FestivoEntity;
|
||||||
|
use App\Models\Collection;
|
||||||
|
|
||||||
|
use App\Entities\Configuracion\Imposicion;
|
||||||
|
use App\Models\Configuracion\FestivoModel;
|
||||||
|
use App\Models\Configuracion\ImposicionEsquemaModel;
|
||||||
|
use App\Models\Configuracion\ImposicionModel;
|
||||||
|
use CodeIgniter\HTTP\RequestInterface;
|
||||||
|
use CodeIgniter\HTTP\ResponseInterface;
|
||||||
|
use CodeIgniter\Validation\Validation;
|
||||||
|
use Hermawan\DataTables\DataTable;
|
||||||
|
use Psr\Log\LoggerInterface;
|
||||||
|
|
||||||
|
class FestivoController extends BaseController
|
||||||
|
{
|
||||||
|
|
||||||
|
protected $modelName = FestivoModel::class;
|
||||||
|
protected FestivoModel $model;
|
||||||
|
protected static $controllerSlug = 'festivos';
|
||||||
|
protected $format = 'json';
|
||||||
|
|
||||||
|
protected string $viewPath = 'themes/vuexy/form/configuracion/festivos/';
|
||||||
|
|
||||||
|
protected $indexRoute = 'festivoList';
|
||||||
|
protected array $viewData = [];
|
||||||
|
protected Validation $validation;
|
||||||
|
|
||||||
|
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
||||||
|
{
|
||||||
|
$this->viewData['pageTitle'] = lang('Festivos.moduleTitle');
|
||||||
|
$this->viewData['usingSweetAlert'] = true;
|
||||||
|
$this->model = model($this->modelName);
|
||||||
|
$this->validation = service("validation");
|
||||||
|
parent::initController($request, $response, $logger);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function index()
|
||||||
|
{
|
||||||
|
return view($this->viewPath . $this->indexRoute);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function store_festivo_date()
|
||||||
|
{
|
||||||
|
$bodyData = $this->request->getPost();
|
||||||
|
$date = $bodyData['date'];
|
||||||
|
$count = $this->model->where('date',$date)->countAllResults();
|
||||||
|
if ($count) {
|
||||||
|
$status = $this->model->where('date', $date)->delete(purge: true);
|
||||||
|
return $this->response->setJSON([
|
||||||
|
"message" => lang("App.user_alert_delete"),
|
||||||
|
"status" => $status,
|
||||||
|
]);
|
||||||
|
} else {
|
||||||
|
|
||||||
|
$status = $this->model->insert($bodyData);
|
||||||
|
if ($status) {
|
||||||
|
$festivoEntity = $this->model->find($status);
|
||||||
|
return $this->response->setJSON([
|
||||||
|
"message" => lang("App.global_alert_save_success"),
|
||||||
|
"status" => $status,
|
||||||
|
"data" => $festivoEntity
|
||||||
|
]);
|
||||||
|
} else {
|
||||||
|
return $this->response->setJSON([
|
||||||
|
"message" => lang("App.global_alert_save_error"),
|
||||||
|
"errors" => $this->model->errors(),
|
||||||
|
"status" => true
|
||||||
|
])->setStatusCode(400);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public function delete_festivo_date($id)
|
||||||
|
{
|
||||||
|
$status = $this->model->delete($id, true);
|
||||||
|
if ($status) {
|
||||||
|
return $this->response->setJSON([
|
||||||
|
"message" => lang("App.user_alert_delete"),
|
||||||
|
"status" => $status,
|
||||||
|
]);
|
||||||
|
} else {
|
||||||
|
return $this->response->setJSON([
|
||||||
|
"message" => lang("App.global_alert_save_error"),
|
||||||
|
"errors" => $this->model->errors(),
|
||||||
|
"status" => true
|
||||||
|
])->setStatusCode(400);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public function find_all()
|
||||||
|
{
|
||||||
|
$festivos = $this->model->findAll();
|
||||||
|
return $this->response->setJSON([
|
||||||
|
"message" => lang("App.global_alert_fetch_success"),
|
||||||
|
"status" => true,
|
||||||
|
"data" => $festivos
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,49 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Database\Migrations;
|
||||||
|
|
||||||
|
use CodeIgniter\Database\RawSql;
|
||||||
|
use CodeIgniter\Database\Migration;
|
||||||
|
|
||||||
|
class CreateTableFestivos extends Migration
|
||||||
|
{
|
||||||
|
protected array $COLUMNS = [
|
||||||
|
"id" => [
|
||||||
|
"type" => "INT",
|
||||||
|
"unsigned" => true,
|
||||||
|
"auto_increment" => true
|
||||||
|
],
|
||||||
|
"date" => [
|
||||||
|
"type" => "DATE",
|
||||||
|
"unique" => true,
|
||||||
|
],
|
||||||
|
];
|
||||||
|
public function up()
|
||||||
|
{
|
||||||
|
$this->forge->addField($this->COLUMNS);
|
||||||
|
$currenttime = new RawSql("CURRENT_TIMESTAMP");
|
||||||
|
$this->forge->addField([
|
||||||
|
"created_at" => [
|
||||||
|
"type" => "TIMESTAMP",
|
||||||
|
"default" => $currenttime,
|
||||||
|
],
|
||||||
|
"updated_at" => [
|
||||||
|
"type" => "TIMESTAMP",
|
||||||
|
"null" => true,
|
||||||
|
],
|
||||||
|
"deleted_at" => [
|
||||||
|
"type" => "TIMESTAMP",
|
||||||
|
"null" => true,
|
||||||
|
|
||||||
|
],
|
||||||
|
]);
|
||||||
|
$this->forge->addPrimaryKey('id');
|
||||||
|
$this->forge->createTable("festivos", true);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function down()
|
||||||
|
{
|
||||||
|
//
|
||||||
|
$this->forge->dropTable("festivos", true);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -676,6 +676,7 @@ return [
|
|||||||
"menu_tarifacliente" => "Fees",
|
"menu_tarifacliente" => "Fees",
|
||||||
|
|
||||||
"menu_configuration" => "Settings",
|
"menu_configuration" => "Settings",
|
||||||
|
"menu_config_holidays" => "Holidays",
|
||||||
"menu_calendario" => "Calendar",
|
"menu_calendario" => "Calendar",
|
||||||
"menu_paises" => "Countries",
|
"menu_paises" => "Countries",
|
||||||
"menu_correo" => "Mail",
|
"menu_correo" => "Mail",
|
||||||
|
|||||||
7
ci4/app/Language/en/Festivos.php
Normal file
7
ci4/app/Language/en/Festivos.php
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
|
||||||
|
return [
|
||||||
|
'date' => 'Date',
|
||||||
|
'moduleTitle' => 'Holidays'
|
||||||
|
];
|
||||||
@ -690,6 +690,7 @@ return [
|
|||||||
"menu_configuration" => "Configuración",
|
"menu_configuration" => "Configuración",
|
||||||
"menu_variables" => "Variables sistema",
|
"menu_variables" => "Variables sistema",
|
||||||
"menu_config_messages" => "Mensajería",
|
"menu_config_messages" => "Mensajería",
|
||||||
|
"menu_config_holidays" => "Festivos",
|
||||||
"menu_error_presupuesto" => "Errores presupuesto",
|
"menu_error_presupuesto" => "Errores presupuesto",
|
||||||
"menu_calendario" => "Calendario",
|
"menu_calendario" => "Calendario",
|
||||||
"menu_paises" => "Paises",
|
"menu_paises" => "Paises",
|
||||||
|
|||||||
7
ci4/app/Language/es/Festivos.php
Normal file
7
ci4/app/Language/es/Festivos.php
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
|
||||||
|
return [
|
||||||
|
'date' => 'Fecha',
|
||||||
|
'moduleTitle' => 'Festivos'
|
||||||
|
];
|
||||||
@ -3,130 +3,66 @@
|
|||||||
namespace App\Models\Configuracion;
|
namespace App\Models\Configuracion;
|
||||||
|
|
||||||
use App\Entities\Configuracion\FestivoEntity;
|
use App\Entities\Configuracion\FestivoEntity;
|
||||||
use App\Entities\Configuracion\Imposicion;
|
|
||||||
use App\Models\BaseModel;
|
use App\Models\BaseModel;
|
||||||
|
|
||||||
class ImposicionModel extends BaseModel
|
class FestivoModel extends BaseModel
|
||||||
{
|
{
|
||||||
protected $table = "festivos";
|
protected $table = "festivos";
|
||||||
|
protected $primaryKey = 'id';
|
||||||
|
|
||||||
|
|
||||||
protected $allowedFields = ["date"];
|
protected $allowedFields = ["date"];
|
||||||
protected $returnType = FestivoEntity::class;
|
protected $returnType = FestivoEntity::class;
|
||||||
|
protected $useAutoIncrement = true;
|
||||||
|
protected $useSoftDeletes = true;
|
||||||
|
protected $protectFields = true;
|
||||||
|
|
||||||
|
|
||||||
|
protected bool $allowEmptyInserts = false;
|
||||||
|
protected bool $updateOnlyChanged = true;
|
||||||
|
|
||||||
|
protected array $casts = [];
|
||||||
|
protected array $castHandlers = [];
|
||||||
|
|
||||||
|
// Dates
|
||||||
|
protected $useTimestamps = true;
|
||||||
|
protected $dateFormat = 'datetime';
|
||||||
|
protected $createdField = 'created_at';
|
||||||
|
protected $updatedField = 'updated_at';
|
||||||
|
protected $deletedField = 'deleted_at';
|
||||||
|
|
||||||
|
// Validation
|
||||||
|
|
||||||
|
protected $skipValidation = false;
|
||||||
|
protected $cleanValidationRules = true;
|
||||||
|
|
||||||
|
// Callbacks
|
||||||
|
protected $allowCallbacks = true;
|
||||||
|
protected $beforeInsert = [];
|
||||||
|
protected $afterInsert = [];
|
||||||
|
protected $beforeUpdate = [];
|
||||||
|
protected $afterUpdate = [];
|
||||||
|
protected $beforeFind = [];
|
||||||
|
protected $afterFind = [];
|
||||||
|
protected $beforeDelete = [];
|
||||||
|
protected $afterDelete = [];
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public static $labelField = "ancho";
|
|
||||||
|
|
||||||
protected $validationRules = [
|
protected $validationRules = [
|
||||||
|
|
||||||
"date" => [
|
"date" => [
|
||||||
"label" => "Festivos.fecha",
|
"label" => "Festivos.date",
|
||||||
"rules" => "required|datetime",
|
"rules" => "required|valid_date[Y-m-d]",
|
||||||
],
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
protected $validationMessages = [
|
protected $validationMessages = [
|
||||||
"alto" => [
|
"date" => [
|
||||||
"integer" => "Imposiciones.validation.alto.integer",
|
"valid_date" => "Validation.valid_date",
|
||||||
"required" => "Imposiciones.validation.alto.required",
|
|
||||||
],
|
|
||||||
"ancho" => [
|
|
||||||
"integer" => "Imposiciones.validation.ancho.integer",
|
|
||||||
"required" => "Imposiciones.validation.ancho.required",
|
|
||||||
],
|
|
||||||
"etiqueta" => [
|
|
||||||
"max_length" => "Imposiciones.validation.etiqueta.max_length",
|
|
||||||
],
|
|
||||||
"maquina" => [
|
|
||||||
"max_length" => "Imposiciones.validation.maquina.max_length",
|
|
||||||
],
|
|
||||||
"orientacion" => [
|
|
||||||
"in_list" => "Imposiciones.validation.orientacion.in_list",
|
|
||||||
],
|
|
||||||
"unidades" => [
|
|
||||||
"integer" => "Imposiciones.validation.unidades.integer",
|
|
||||||
],
|
|
||||||
"imposicion_esquema_id" => [
|
|
||||||
"integer" => "Imposiciones.validation.unidades.integer",
|
|
||||||
],
|
],
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
|
||||||
* Get resource data.
|
|
||||||
*
|
|
||||||
* @param string $search
|
|
||||||
*
|
|
||||||
* @return \CodeIgniter\Database\BaseBuilder
|
|
||||||
*/
|
|
||||||
public function getResource(string $search = "")
|
|
||||||
{
|
|
||||||
$builder = $this->db
|
|
||||||
->table($this->table . " t1")
|
|
||||||
->select(
|
|
||||||
"t1.id AS id, t1.ancho AS ancho, t1.alto AS alto, t1.unidades AS unidades, t1.orientacion AS orientacion, t1.maquina AS maquina, t1.etiqueta AS etiqueta"
|
|
||||||
);
|
|
||||||
|
|
||||||
return empty($search)
|
|
||||||
? $builder
|
|
||||||
: $builder
|
|
||||||
->groupStart()
|
|
||||||
->like("t1.id", $search)
|
|
||||||
->orlike("t1.ancho", $search)
|
|
||||||
->orLike("t1.alto", $search)
|
|
||||||
->orLike("t1.unidades", $search)
|
|
||||||
->orLike("t1.orientacion", $search)
|
|
||||||
->orLike("t1.maquina", $search)
|
|
||||||
->orLike("t1.etiqueta", $search)
|
|
||||||
->orlike("t1.id", $search)
|
|
||||||
->orLike("t1.ancho", $search)
|
|
||||||
->orLike("t1.alto", $search)
|
|
||||||
->orLike("t1.unidades", $search)
|
|
||||||
->orLike("t1.orientacion", $search)
|
|
||||||
->orLike("t1.maquina", $search)
|
|
||||||
->orLike("t1.etiqueta", $search)
|
|
||||||
->groupEnd();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function querySelect(?string $q)
|
|
||||||
{
|
|
||||||
$query = $this->builder()->select([
|
|
||||||
"id",
|
|
||||||
"CONCAT(lg_imposiciones.ancho,'x',lg_imposiciones.alto,'_',COALESCE(lg_imposiciones.unidades,'NULL'),'_',COALESCE(lg_imposiciones.orientacion,'NULL')) as name",
|
|
||||||
"COALESCE(lg_imposiciones.etiqueta,'" . lang("Produccion.imposicion_no_label") . "') as description"
|
|
||||||
]);
|
|
||||||
if ($q) {
|
|
||||||
$query->orLike("CONCAT(lg_imposiciones.ancho,'x',lg_imposiciones.alto)", $q);
|
|
||||||
$query->orLike("lg_imposiciones.etiqueta", $q);
|
|
||||||
}
|
|
||||||
return $query
|
|
||||||
->orderBy('id', 'ASC')
|
|
||||||
->get()->getResultArray();
|
|
||||||
}
|
|
||||||
public function queryDatatable()
|
|
||||||
{
|
|
||||||
return $this->builder()
|
|
||||||
->select([
|
|
||||||
"lg_imposiciones.id",
|
|
||||||
"lg_imposiciones.ancho",
|
|
||||||
"lg_imposiciones.alto",
|
|
||||||
"lg_imposiciones.unidades",
|
|
||||||
"lg_imposiciones.maquina",
|
|
||||||
"lg_imposiciones.orientacion",
|
|
||||||
"lg_imposiciones.etiqueta",
|
|
||||||
"imposicion_esquemas.id as esquemaId",
|
|
||||||
"imposicion_esquemas.name as esquemaName"
|
|
||||||
])
|
|
||||||
->join("imposicion_esquemas","imposicion_esquemas.id = lg_imposiciones.imposicion_esquema_id","left")
|
|
||||||
->where('lg_imposiciones.deleted_at', null);
|
|
||||||
}
|
|
||||||
public static function datatable_buttons(int $id)
|
|
||||||
{
|
|
||||||
$btn = "";
|
|
||||||
if(auth()->user()->inGroup("admin")){
|
|
||||||
$btn.="<a type='button' href='/imposiciones/edit/{$id}' data-id='{$id}'><i class='ti ti-eye ti-sm'></i></a>";
|
|
||||||
$btn.="<a type='button'><i class='ti ti-trash ti-sm imposicion-delete' data-id='{$id}'></i></a>";
|
|
||||||
}
|
|
||||||
return $btn;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1759,7 +1759,7 @@ class ProductionService extends BaseService
|
|||||||
->join("lg_maquinas", "lg_maquinas.id = orden_trabajo_tareas.maquina_id", "left")
|
->join("lg_maquinas", "lg_maquinas.id = orden_trabajo_tareas.maquina_id", "left")
|
||||||
->join("lg_papel_impresion", "lg_papel_impresion.id = presupuesto_linea.papel_impresion_id", "left")
|
->join("lg_papel_impresion", "lg_papel_impresion.id = presupuesto_linea.papel_impresion_id", "left")
|
||||||
->groupStart()
|
->groupStart()
|
||||||
->orWhere('orden_trabajo_tareas.maquina_id', $maquina_id)
|
->orWhere('orden_trabajo_tareas.maquina_id', $maquina_id) //!TODO
|
||||||
->orWhere('presupuesto_linea.maquina_id', $maquina_id)
|
->orWhere('presupuesto_linea.maquina_id', $maquina_id)
|
||||||
->groupEnd()
|
->groupEnd()
|
||||||
// ->where('pedidos.fecha_impresion IS NOT NULL', null, false)
|
// ->where('pedidos.fecha_impresion IS NOT NULL', null, false)
|
||||||
|
|||||||
@ -0,0 +1,64 @@
|
|||||||
|
<?= $this->include('themes/_commonPartialsBs/select2bs5') ?>
|
||||||
|
<?= $this->include('themes/_commonPartialsBs/datatables') ?>
|
||||||
|
<?= $this->include('themes/_commonPartialsBs/sweetalert') ?>
|
||||||
|
<?= $this->include('themes/_commonPartialsBs/_confirm2delete') ?>
|
||||||
|
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||||
|
<?= $this->section('content'); ?>
|
||||||
|
<div class="container-fluid h-100">
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
<div class="card card-info">
|
||||||
|
<div class="card-header">
|
||||||
|
<h3 class="card-title"><?= lang('Festivos.moduleTitle') ?></h3>
|
||||||
|
</div>
|
||||||
|
<!--//.card-header -->
|
||||||
|
<div class="card-body m-10 section-block" id="festivoCard">
|
||||||
|
<?= view('themes/_commonPartialsBs/_alertBoxes'); ?>
|
||||||
|
<div id="calendar"></div>
|
||||||
|
<!--//.card-footer -->
|
||||||
|
</div>
|
||||||
|
<!--//.card -->
|
||||||
|
</div>
|
||||||
|
<!--//.col -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<!--//.row -->
|
||||||
|
|
||||||
|
<?= $this->endSection() ?>
|
||||||
|
|
||||||
|
<?= $this->section('css') ?>
|
||||||
|
<link rel="stylesheet" href="<?= site_url('themes/vuexy/vendor/libs/formvalidation/dist/css/formValidation.min.css') ?>" />
|
||||||
|
<link rel="stylesheet" href="<?= site_url('themes/vuexy/vendor/libs/notiflix/notiflix.css') ?>" />
|
||||||
|
<link rel="stylesheet" href="<?= site_url('themes/vuexy/vendor/libs/sweetalert2/sweetalert2.css') ?>" />
|
||||||
|
<link rel="stylesheet" href="<?= site_url('themes/vuexy/vendor/libs/spinkit/spinkit.css') ?>" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<?= $this->endSection() ?>
|
||||||
|
|
||||||
|
<?= $this->section("additionalExternalJs") ?>
|
||||||
|
<script src="<?= site_url("themes/vuexy/vendor/libs/notiflix/notiflix.js") ?>"></script>
|
||||||
|
<script src="<?= site_url("themes/vuexy/vendor/libs/formvalidation/dist/js/FormValidation.js") ?>"></script>
|
||||||
|
<script src="<?= site_url("themes/vuexy/vendor/libs/formvalidation/dist/js/plugins/Bootstrap5.min.js") ?>"></script>
|
||||||
|
<script src="<?= site_url("themes/vuexy/vendor/libs/formvalidation/dist/js/plugins/AutoFocus.min.js") ?>"></script>
|
||||||
|
<script src="<?= site_url('themes/vuexy/vendor/libs/sweetalert2/sweetalert2.js') ?>"></script>
|
||||||
|
<script src="<?= site_url('themes/vuexy/vendor/libs/fullcalendar/dist/index.global.min.js') ?>"></script>
|
||||||
|
<script src="<?= site_url('themes/vuexy/vendor/libs/fullcalendar/packages/core/locales-all.global.min.js') ?>"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="module" src="<?= site_url("/assets/js/safekat/pages/configuracion/festivo/index.js") ?>"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<?= $this->endSection() ?>
|
||||||
@ -134,6 +134,13 @@ if (
|
|||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
<?php if (auth()->user()->inGroup('admin')) { ?>
|
||||||
|
<li class="menu-item">
|
||||||
|
<a href="<?= route_to('festivosList') ?>" class="menu-link">
|
||||||
|
<div> <?= lang("App.menu_config_holidays") ?></div>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<?php } ?>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
@ -156,10 +156,10 @@ $settings = $session->get('settings');
|
|||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-8">
|
<div class="col-8">
|
||||||
<table class="h-50">
|
<table class="h-50">
|
||||||
<tr>
|
<tr>
|
||||||
<th>IDSK</th>
|
<th>IDSK</th>
|
||||||
<td class="t-cell">
|
<td class="t-cell">
|
||||||
|
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
@ -330,18 +330,20 @@ $settings = $session->get('settings');
|
|||||||
</table>
|
</table>
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
$encuadernacion_code = isset($encuadernaciones[0]) ? $encuadernaciones[0]->tarifa()->code : null;
|
foreach ($encuadernaciones as $key => $encuadernacion) {
|
||||||
try {
|
$encuadernacion_code = $encuadernacion->tarifa()->code;
|
||||||
if ($encuadernacion_code) {
|
try {
|
||||||
echo view("/themes/vuexy/pdfs/encuadernados/$encuadernacion_code.php");
|
if ($encuadernacion_code) {
|
||||||
} else {
|
echo view("/themes/vuexy/pdfs/encuadernados/$encuadernacion_code.php");
|
||||||
|
} else {
|
||||||
|
echo view("/themes/vuexy/pdfs/encuadernados/default.php");
|
||||||
|
}
|
||||||
|
} catch (\Throwable $th) {
|
||||||
|
$error_message = $th->getMessage();
|
||||||
echo view("/themes/vuexy/pdfs/encuadernados/default.php");
|
echo view("/themes/vuexy/pdfs/encuadernados/default.php");
|
||||||
|
echo "<span style='color:red'>No se ha podido renderizar la tabla de encuadernación</span>";
|
||||||
|
// echo "<br><span style='color:red'>$error_message</span>";
|
||||||
}
|
}
|
||||||
} catch (\Throwable $th) {
|
|
||||||
$error_message = $th->getMessage();
|
|
||||||
echo view("/themes/vuexy/pdfs/encuadernados/default.php");
|
|
||||||
echo "<span style='color:red'>No se ha podido renderizar la tabla de encuadernación</span>";
|
|
||||||
// echo "<br><span style='color:red'>$error_message</span>";
|
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
<?php if (count($encuadernaciones) > 0): ?>
|
<?php if (count($encuadernaciones) > 0): ?>
|
||||||
|
|||||||
120
httpdocs/assets/js/safekat/components/SafekatCalendar.js
Normal file
120
httpdocs/assets/js/safekat/components/SafekatCalendar.js
Normal file
@ -0,0 +1,120 @@
|
|||||||
|
|
||||||
|
import Ajax from '../components/ajax.js'
|
||||||
|
import { alertSuccess, alertError } from '../components/alerts/sweetAlert.js'
|
||||||
|
// Render calendar
|
||||||
|
class SafekatCalendar {
|
||||||
|
constructor(idElement) {
|
||||||
|
this.locale = $('meta[name=locale]').attr('content') ?? 'es';
|
||||||
|
this.calendarEl = document.getElementById(idElement);
|
||||||
|
this.calendar = null;
|
||||||
|
}
|
||||||
|
actionLoader(status = true) {
|
||||||
|
if (status) {
|
||||||
|
Notiflix.Block.circle('.section-block');
|
||||||
|
} else {
|
||||||
|
Notiflix.Block.remove('.section-block');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
init() {
|
||||||
|
if (this.calendarEl) {
|
||||||
|
|
||||||
|
this.calendar = new FullCalendar.Calendar(this.calendarEl, {
|
||||||
|
locale: this.locale,
|
||||||
|
initialView: 'multiMonthYear',
|
||||||
|
multiMonthMaxColumns: 4,
|
||||||
|
contentHeight: '100vh',
|
||||||
|
editable: true,
|
||||||
|
dragScroll: true,
|
||||||
|
dayMaxEvents: 2,
|
||||||
|
dateClick: this.clickEvent.bind(this),
|
||||||
|
eventResizableFromStart: true,
|
||||||
|
customButtons: {
|
||||||
|
sidebarToggle: {
|
||||||
|
text: 'Sidebar'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
});
|
||||||
|
this.calendar.render();
|
||||||
|
this.calendar.setOption('aspectRatio', 1.8);
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
renderFestivos() {
|
||||||
|
this.setEventFestivos()
|
||||||
|
}
|
||||||
|
async setEventFestivos() {
|
||||||
|
try {
|
||||||
|
|
||||||
|
|
||||||
|
let response = await this.getFestivos();
|
||||||
|
this.actionLoader(false)
|
||||||
|
if (response.data) {
|
||||||
|
let festivosEvent = response.data.map(this.parseToFullCalendarEvent)
|
||||||
|
this.addEvents(festivosEvent)
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error)
|
||||||
|
} finally {
|
||||||
|
this.actionLoader(false)
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
removeEvents() {
|
||||||
|
this.calendar.getEvents().forEach(event => event.remove());
|
||||||
|
}
|
||||||
|
async clickEvent(info) {
|
||||||
|
try {
|
||||||
|
let response = await this.storeFestivo({ date: info.dateStr })
|
||||||
|
alertSuccess(response.message).fire()
|
||||||
|
this.renderFestivos()
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error)
|
||||||
|
|
||||||
|
} finally {
|
||||||
|
this.actionLoader(false)
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
addEvents(events) {
|
||||||
|
events.forEach(event => {
|
||||||
|
this.calendar.addEvent(event)
|
||||||
|
});
|
||||||
|
}
|
||||||
|
parseToFullCalendarEvent(festivoEntity) {
|
||||||
|
let date = festivoEntity.date.split('-').reverse().join('/')
|
||||||
|
return {
|
||||||
|
id: festivoEntity.id,
|
||||||
|
title: '',
|
||||||
|
start: festivoEntity.date,
|
||||||
|
display: 'background',
|
||||||
|
color: 'red',
|
||||||
|
textColor: 'white'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
getFestivos() {
|
||||||
|
this.actionLoader(true)
|
||||||
|
this.removeEvents()
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
let ajax = new Ajax('/configuracion/festivos/all', null, null, resolve, reject)
|
||||||
|
ajax.get()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
storeFestivo(event) {
|
||||||
|
this.actionLoader(true)
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
let ajax = new Ajax('/configuracion/festivos', event, null, resolve, reject)
|
||||||
|
ajax.post()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
deleteFestivo(id) {
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
let ajax = new Ajax('/configuracion/festivos/' + id, null, null, resolve, reject)
|
||||||
|
ajax.delete()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
export default SafekatCalendar
|
||||||
@ -0,0 +1,7 @@
|
|||||||
|
import SafekatCalendar from "../../../components/SafekatCalendar.js"
|
||||||
|
|
||||||
|
$(() => {
|
||||||
|
let calendarFestivos = new SafekatCalendar('calendar');
|
||||||
|
calendarFestivos.init();
|
||||||
|
calendarFestivos.renderFestivos();
|
||||||
|
})
|
||||||
@ -16,6 +16,128 @@ let direction = 'ltr';
|
|||||||
if (isRtl) {
|
if (isRtl) {
|
||||||
direction = 'rtl';
|
direction = 'rtl';
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* App Calendar Events
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
let date = new Date();
|
||||||
|
let nextDay = new Date(new Date().getTime() + 24 * 60 * 60 * 1000);
|
||||||
|
// prettier-ignore
|
||||||
|
let nextMonth = date.getMonth() === 11 ? new Date(date.getFullYear() + 1, 0, 1) : new Date(date.getFullYear(), date.getMonth() + 1, 1);
|
||||||
|
// prettier-ignore
|
||||||
|
let prevMonth = date.getMonth() === 11 ? new Date(date.getFullYear() - 1, 0, 1) : new Date(date.getFullYear(), date.getMonth() - 1, 1);
|
||||||
|
|
||||||
|
let events = [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
url: '',
|
||||||
|
title: 'Design Review',
|
||||||
|
start: date,
|
||||||
|
end: nextDay,
|
||||||
|
allDay: false,
|
||||||
|
extendedProps: {
|
||||||
|
calendar: 'Business'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
url: '',
|
||||||
|
title: 'Meeting With Client',
|
||||||
|
start: new Date(date.getFullYear(), date.getMonth() + 1, -11),
|
||||||
|
end: new Date(date.getFullYear(), date.getMonth() + 1, -10),
|
||||||
|
allDay: true,
|
||||||
|
extendedProps: {
|
||||||
|
calendar: 'Business'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
url: '',
|
||||||
|
title: 'Family Trip',
|
||||||
|
allDay: true,
|
||||||
|
start: new Date(date.getFullYear(), date.getMonth() + 1, -9),
|
||||||
|
end: new Date(date.getFullYear(), date.getMonth() + 1, -7),
|
||||||
|
extendedProps: {
|
||||||
|
calendar: 'Holiday'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 4,
|
||||||
|
url: '',
|
||||||
|
title: "Doctor's Appointment",
|
||||||
|
start: new Date(date.getFullYear(), date.getMonth() + 1, -11),
|
||||||
|
end: new Date(date.getFullYear(), date.getMonth() + 1, -10),
|
||||||
|
extendedProps: {
|
||||||
|
calendar: 'Personal'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 5,
|
||||||
|
url: '',
|
||||||
|
title: 'Dart Game?',
|
||||||
|
start: new Date(date.getFullYear(), date.getMonth() + 1, -13),
|
||||||
|
end: new Date(date.getFullYear(), date.getMonth() + 1, -12),
|
||||||
|
allDay: true,
|
||||||
|
extendedProps: {
|
||||||
|
calendar: 'ETC'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 6,
|
||||||
|
url: '',
|
||||||
|
title: 'Meditation',
|
||||||
|
start: new Date(date.getFullYear(), date.getMonth() + 1, -13),
|
||||||
|
end: new Date(date.getFullYear(), date.getMonth() + 1, -12),
|
||||||
|
allDay: true,
|
||||||
|
extendedProps: {
|
||||||
|
calendar: 'Personal'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 7,
|
||||||
|
url: '',
|
||||||
|
title: 'Dinner',
|
||||||
|
start: new Date(date.getFullYear(), date.getMonth() + 1, -13),
|
||||||
|
end: new Date(date.getFullYear(), date.getMonth() + 1, -12),
|
||||||
|
extendedProps: {
|
||||||
|
calendar: 'Family'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 8,
|
||||||
|
url: '',
|
||||||
|
title: 'Product Review',
|
||||||
|
start: new Date(date.getFullYear(), date.getMonth() + 1, -13),
|
||||||
|
end: new Date(date.getFullYear(), date.getMonth() + 1, -12),
|
||||||
|
allDay: true,
|
||||||
|
extendedProps: {
|
||||||
|
calendar: 'Business'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 9,
|
||||||
|
url: '',
|
||||||
|
title: 'Monthly Meeting',
|
||||||
|
start: nextMonth,
|
||||||
|
end: nextMonth,
|
||||||
|
allDay: true,
|
||||||
|
extendedProps: {
|
||||||
|
calendar: 'Business'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 10,
|
||||||
|
url: '',
|
||||||
|
title: 'Monthly Checkup',
|
||||||
|
start: prevMonth,
|
||||||
|
end: prevMonth,
|
||||||
|
allDay: true,
|
||||||
|
extendedProps: {
|
||||||
|
calendar: 'Personal'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
document.addEventListener('DOMContentLoaded', function () {
|
document.addEventListener('DOMContentLoaded', function () {
|
||||||
(function () {
|
(function () {
|
||||||
|
|||||||
22
httpdocs/themes/vuexy/vendor/libs/fullcalendar/LICENSE.md
vendored
Normal file
22
httpdocs/themes/vuexy/vendor/libs/fullcalendar/LICENSE.md
vendored
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2021 Adam Shaw
|
||||||
|
|
||||||
|
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.
|
||||||
73
httpdocs/themes/vuexy/vendor/libs/fullcalendar/README.md
vendored
Normal file
73
httpdocs/themes/vuexy/vendor/libs/fullcalendar/README.md
vendored
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
# FullCalendar
|
||||||
|
|
||||||
|
Full-sized drag & drop calendar in JavaScript
|
||||||
|
|
||||||
|
- [Project Website](https://fullcalendar.io/)
|
||||||
|
- [Documentation](https://fullcalendar.io/docs)
|
||||||
|
- [Changelog](CHANGELOG.md)
|
||||||
|
- [Support](https://fullcalendar.io/support)
|
||||||
|
- [License](LICENSE.md)
|
||||||
|
- [Roadmap](https://fullcalendar.io/roadmap)
|
||||||
|
|
||||||
|
Connectors:
|
||||||
|
|
||||||
|
- [React](https://github.com/fullcalendar/fullcalendar-react)
|
||||||
|
- [Angular](https://github.com/fullcalendar/fullcalendar-angular)
|
||||||
|
- [Vue 3](https://github.com/fullcalendar/fullcalendar-vue) |
|
||||||
|
[2](https://github.com/fullcalendar/fullcalendar-vue2)
|
||||||
|
|
||||||
|
## Bundle
|
||||||
|
|
||||||
|
The [FullCalendar Standard Bundle](bundle) is easier to install than individual plugins, though filesize will be larger. It works well with a CDN.
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
Install the FullCalendar core package and any plugins you plan to use:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
npm install @fullcalendar/core @fullcalendar/interaction @fullcalendar/daygrid
|
||||||
|
```
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
Instantiate a Calendar with plugins and options:
|
||||||
|
|
||||||
|
```js
|
||||||
|
import { Calendar } from '@fullcalendar/core'
|
||||||
|
import interactionPlugin from '@fullcalendar/interaction'
|
||||||
|
import dayGridPlugin from '@fullcalendar/daygrid'
|
||||||
|
|
||||||
|
const calendarEl = document.getElementById('calendar')
|
||||||
|
const calendar = new Calendar(calendarEl, {
|
||||||
|
plugins: [
|
||||||
|
interactionPlugin,
|
||||||
|
dayGridPlugin
|
||||||
|
],
|
||||||
|
initialView: 'timeGridWeek',
|
||||||
|
editable: true,
|
||||||
|
events: [
|
||||||
|
{ title: 'Meeting', start: new Date() }
|
||||||
|
]
|
||||||
|
})
|
||||||
|
|
||||||
|
calendar.render()
|
||||||
|
```
|
||||||
|
|
||||||
|
## Development
|
||||||
|
|
||||||
|
You must install this repo with [PNPM](https://pnpm.io/):
|
||||||
|
|
||||||
|
```
|
||||||
|
pnpm install
|
||||||
|
```
|
||||||
|
|
||||||
|
Available scripts (via `pnpm run <script>`):
|
||||||
|
|
||||||
|
- `build` - build production-ready dist files
|
||||||
|
- `dev` - build & watch development dist files
|
||||||
|
- `test` - test headlessly
|
||||||
|
- `test:dev` - test interactively
|
||||||
|
- `lint`
|
||||||
|
- `clean`
|
||||||
|
|
||||||
|
[Info about contributing code »](CONTRIBUTING.md)
|
||||||
14775
httpdocs/themes/vuexy/vendor/libs/fullcalendar/dist/index.global.js
vendored
Normal file
14775
httpdocs/themes/vuexy/vendor/libs/fullcalendar/dist/index.global.js
vendored
Normal file
File diff suppressed because one or more lines are too long
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/dist/index.global.min.js
vendored
Normal file
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/dist/index.global.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
101
httpdocs/themes/vuexy/vendor/libs/fullcalendar/examples/background-events.html
vendored
Normal file
101
httpdocs/themes/vuexy/vendor/libs/fullcalendar/examples/background-events.html
vendored
Normal file
@ -0,0 +1,101 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset='utf-8' />
|
||||||
|
<script src='../dist/index.global.js'></script>
|
||||||
|
<script>
|
||||||
|
|
||||||
|
document.addEventListener('DOMContentLoaded', function() {
|
||||||
|
var calendarEl = document.getElementById('calendar');
|
||||||
|
|
||||||
|
var calendar = new FullCalendar.Calendar(calendarEl, {
|
||||||
|
headerToolbar: {
|
||||||
|
left: 'prev,next today',
|
||||||
|
center: 'title',
|
||||||
|
right: 'dayGridMonth,timeGridWeek,timeGridDay,listMonth'
|
||||||
|
},
|
||||||
|
initialDate: '2023-01-12',
|
||||||
|
navLinks: true, // can click day/week names to navigate views
|
||||||
|
businessHours: true, // display business hours
|
||||||
|
editable: true,
|
||||||
|
selectable: true,
|
||||||
|
events: [
|
||||||
|
{
|
||||||
|
title: 'Business Lunch',
|
||||||
|
start: '2023-01-03T13:00:00',
|
||||||
|
constraint: 'businessHours'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Meeting',
|
||||||
|
start: '2023-01-13T11:00:00',
|
||||||
|
constraint: 'availableForMeeting', // defined below
|
||||||
|
color: '#257e4a'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Conference',
|
||||||
|
start: '2023-01-18',
|
||||||
|
end: '2023-01-20'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Party',
|
||||||
|
start: '2023-01-29T20:00:00'
|
||||||
|
},
|
||||||
|
|
||||||
|
// areas where "Meeting" must be dropped
|
||||||
|
{
|
||||||
|
groupId: 'availableForMeeting',
|
||||||
|
start: '2023-01-11T10:00:00',
|
||||||
|
end: '2023-01-11T16:00:00',
|
||||||
|
display: 'background'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
groupId: 'availableForMeeting',
|
||||||
|
start: '2023-01-13T10:00:00',
|
||||||
|
end: '2023-01-13T16:00:00',
|
||||||
|
display: 'background'
|
||||||
|
},
|
||||||
|
|
||||||
|
// red areas where no events can be dropped
|
||||||
|
{
|
||||||
|
start: '2023-01-24',
|
||||||
|
end: '2023-01-28',
|
||||||
|
overlap: false,
|
||||||
|
display: 'background',
|
||||||
|
color: '#ff9f89'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
start: '2023-01-06',
|
||||||
|
end: '2023-01-08',
|
||||||
|
overlap: false,
|
||||||
|
display: 'background',
|
||||||
|
color: '#ff9f89'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
});
|
||||||
|
|
||||||
|
calendar.render();
|
||||||
|
});
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<style>
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 40px 10px;
|
||||||
|
padding: 0;
|
||||||
|
font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#calendar {
|
||||||
|
max-width: 1100px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id='calendar'></div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
104
httpdocs/themes/vuexy/vendor/libs/fullcalendar/examples/daygrid-views.html
vendored
Normal file
104
httpdocs/themes/vuexy/vendor/libs/fullcalendar/examples/daygrid-views.html
vendored
Normal file
@ -0,0 +1,104 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset='utf-8' />
|
||||||
|
<script src='../dist/index.global.js'></script>
|
||||||
|
<script>
|
||||||
|
|
||||||
|
document.addEventListener('DOMContentLoaded', function() {
|
||||||
|
var calendarEl = document.getElementById('calendar');
|
||||||
|
|
||||||
|
var calendar = new FullCalendar.Calendar(calendarEl, {
|
||||||
|
headerToolbar: {
|
||||||
|
left: 'prevYear,prev,next,nextYear today',
|
||||||
|
center: 'title',
|
||||||
|
right: 'dayGridMonth,dayGridWeek,dayGridDay'
|
||||||
|
},
|
||||||
|
initialDate: '2023-01-12',
|
||||||
|
navLinks: true, // can click day/week names to navigate views
|
||||||
|
editable: true,
|
||||||
|
dayMaxEvents: true, // allow "more" link when too many events
|
||||||
|
events: [
|
||||||
|
{
|
||||||
|
title: 'All Day Event',
|
||||||
|
start: '2023-01-01'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Long Event',
|
||||||
|
start: '2023-01-07',
|
||||||
|
end: '2023-01-10'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
groupId: 999,
|
||||||
|
title: 'Repeating Event',
|
||||||
|
start: '2023-01-09T16:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
groupId: 999,
|
||||||
|
title: 'Repeating Event',
|
||||||
|
start: '2023-01-16T16:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Conference',
|
||||||
|
start: '2023-01-11',
|
||||||
|
end: '2023-01-13'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Meeting',
|
||||||
|
start: '2023-01-12T10:30:00',
|
||||||
|
end: '2023-01-12T12:30:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Lunch',
|
||||||
|
start: '2023-01-12T12:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Meeting',
|
||||||
|
start: '2023-01-12T14:30:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Happy Hour',
|
||||||
|
start: '2023-01-12T17:30:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Dinner',
|
||||||
|
start: '2023-01-12T20:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Birthday Party',
|
||||||
|
start: '2023-01-13T07:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Click for Google',
|
||||||
|
url: 'http://google.com/',
|
||||||
|
start: '2023-01-28'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
});
|
||||||
|
|
||||||
|
calendar.render();
|
||||||
|
});
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<style>
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 40px 10px;
|
||||||
|
padding: 0;
|
||||||
|
font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#calendar {
|
||||||
|
max-width: 1100px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id='calendar'></div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
69
httpdocs/themes/vuexy/vendor/libs/fullcalendar/examples/external-dragging-2cals.html
vendored
Normal file
69
httpdocs/themes/vuexy/vendor/libs/fullcalendar/examples/external-dragging-2cals.html
vendored
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset='utf-8' />
|
||||||
|
<script src='../dist/index.global.js'></script>
|
||||||
|
<script>
|
||||||
|
|
||||||
|
document.addEventListener('DOMContentLoaded', function() {
|
||||||
|
var srcCalendarEl = document.getElementById('source-calendar');
|
||||||
|
var destCalendarEl = document.getElementById('destination-calendar');
|
||||||
|
|
||||||
|
var srcCalendar = new FullCalendar.Calendar(srcCalendarEl, {
|
||||||
|
editable: true,
|
||||||
|
initialDate: '2023-01-12',
|
||||||
|
events: [
|
||||||
|
{
|
||||||
|
title: 'event1',
|
||||||
|
start: '2023-01-11T10:00:00',
|
||||||
|
end: '2023-01-11T16:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'event2',
|
||||||
|
start: '2023-01-13T10:00:00',
|
||||||
|
end: '2023-01-13T16:00:00'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
eventLeave: function(info) {
|
||||||
|
console.log('event left!', info.event);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
var destCalendar = new FullCalendar.Calendar(destCalendarEl, {
|
||||||
|
initialDate: '2023-01-12',
|
||||||
|
editable: true,
|
||||||
|
droppable: true, // will let it receive events!
|
||||||
|
eventReceive: function(info) {
|
||||||
|
console.log('event received!', info.event);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
srcCalendar.render();
|
||||||
|
destCalendar.render();
|
||||||
|
});
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<style>
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 20px 0 0 20px;
|
||||||
|
font-size: 14px;
|
||||||
|
font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
#source-calendar,
|
||||||
|
#destination-calendar {
|
||||||
|
float: left;
|
||||||
|
width: 600px;
|
||||||
|
margin: 0 20px 20px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id='source-calendar'></div>
|
||||||
|
<div id='destination-calendar'></div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
149
httpdocs/themes/vuexy/vendor/libs/fullcalendar/examples/external-dragging-builtin.html
vendored
Normal file
149
httpdocs/themes/vuexy/vendor/libs/fullcalendar/examples/external-dragging-builtin.html
vendored
Normal file
@ -0,0 +1,149 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset='utf-8' />
|
||||||
|
<script src='../dist/index.global.js'></script>
|
||||||
|
<script>
|
||||||
|
|
||||||
|
document.addEventListener('DOMContentLoaded', function() {
|
||||||
|
|
||||||
|
/* initialize the external events
|
||||||
|
-----------------------------------------------------------------*/
|
||||||
|
|
||||||
|
var containerEl = document.getElementById('external-events-list');
|
||||||
|
new FullCalendar.Draggable(containerEl, {
|
||||||
|
itemSelector: '.fc-event',
|
||||||
|
eventData: function(eventEl) {
|
||||||
|
return {
|
||||||
|
title: eventEl.innerText.trim()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
//// the individual way to do it
|
||||||
|
// var containerEl = document.getElementById('external-events-list');
|
||||||
|
// var eventEls = Array.prototype.slice.call(
|
||||||
|
// containerEl.querySelectorAll('.fc-event')
|
||||||
|
// );
|
||||||
|
// eventEls.forEach(function(eventEl) {
|
||||||
|
// new FullCalendar.Draggable(eventEl, {
|
||||||
|
// eventData: {
|
||||||
|
// title: eventEl.innerText.trim(),
|
||||||
|
// }
|
||||||
|
// });
|
||||||
|
// });
|
||||||
|
|
||||||
|
/* initialize the calendar
|
||||||
|
-----------------------------------------------------------------*/
|
||||||
|
|
||||||
|
var calendarEl = document.getElementById('calendar');
|
||||||
|
var calendar = new FullCalendar.Calendar(calendarEl, {
|
||||||
|
headerToolbar: {
|
||||||
|
left: 'prev,next today',
|
||||||
|
center: 'title',
|
||||||
|
right: 'dayGridMonth,timeGridWeek,timeGridDay,listWeek'
|
||||||
|
},
|
||||||
|
editable: true,
|
||||||
|
droppable: true, // this allows things to be dropped onto the calendar
|
||||||
|
drop: function(arg) {
|
||||||
|
// is the "remove after drop" checkbox checked?
|
||||||
|
if (document.getElementById('drop-remove').checked) {
|
||||||
|
// if so, remove the element from the "Draggable Events" list
|
||||||
|
arg.draggedEl.parentNode.removeChild(arg.draggedEl);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
calendar.render();
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<style>
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin-top: 40px;
|
||||||
|
font-size: 14px;
|
||||||
|
font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
#external-events {
|
||||||
|
position: fixed;
|
||||||
|
left: 20px;
|
||||||
|
top: 20px;
|
||||||
|
width: 150px;
|
||||||
|
padding: 0 10px;
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
background: #eee;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
#external-events h4 {
|
||||||
|
font-size: 16px;
|
||||||
|
margin-top: 0;
|
||||||
|
padding-top: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#external-events .fc-event {
|
||||||
|
margin: 3px 0;
|
||||||
|
cursor: move;
|
||||||
|
}
|
||||||
|
|
||||||
|
#external-events p {
|
||||||
|
margin: 1.5em 0;
|
||||||
|
font-size: 11px;
|
||||||
|
color: #666;
|
||||||
|
}
|
||||||
|
|
||||||
|
#external-events p input {
|
||||||
|
margin: 0;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
#calendar-wrap {
|
||||||
|
margin-left: 200px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#calendar {
|
||||||
|
max-width: 1100px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id='wrap'>
|
||||||
|
|
||||||
|
<div id='external-events'>
|
||||||
|
<h4>Draggable Events</h4>
|
||||||
|
|
||||||
|
<div id='external-events-list'>
|
||||||
|
<div class='fc-event fc-h-event fc-daygrid-event fc-daygrid-block-event'>
|
||||||
|
<div class='fc-event-main'>My Event 1</div>
|
||||||
|
</div>
|
||||||
|
<div class='fc-event fc-h-event fc-daygrid-event fc-daygrid-block-event'>
|
||||||
|
<div class='fc-event-main'>My Event 2</div>
|
||||||
|
</div>
|
||||||
|
<div class='fc-event fc-h-event fc-daygrid-event fc-daygrid-block-event'>
|
||||||
|
<div class='fc-event-main'>My Event 3</div>
|
||||||
|
</div>
|
||||||
|
<div class='fc-event fc-h-event fc-daygrid-event fc-daygrid-block-event'>
|
||||||
|
<div class='fc-event-main'>My Event 4</div>
|
||||||
|
</div>
|
||||||
|
<div class='fc-event fc-h-event fc-daygrid-event fc-daygrid-block-event'>
|
||||||
|
<div class='fc-event-main'>My Event 5</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<input type='checkbox' id='drop-remove' />
|
||||||
|
<label for='drop-remove'>remove after drop</label>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id='calendar-wrap'>
|
||||||
|
<div id='calendar'></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
125
httpdocs/themes/vuexy/vendor/libs/fullcalendar/examples/full-height.html
vendored
Normal file
125
httpdocs/themes/vuexy/vendor/libs/fullcalendar/examples/full-height.html
vendored
Normal file
@ -0,0 +1,125 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset='utf-8' />
|
||||||
|
<script src='../dist/index.global.js'></script>
|
||||||
|
<script>
|
||||||
|
|
||||||
|
document.addEventListener('DOMContentLoaded', function() {
|
||||||
|
var calendarEl = document.getElementById('calendar');
|
||||||
|
|
||||||
|
var calendar = new FullCalendar.Calendar(calendarEl, {
|
||||||
|
height: '100%',
|
||||||
|
expandRows: true,
|
||||||
|
slotMinTime: '08:00',
|
||||||
|
slotMaxTime: '20:00',
|
||||||
|
headerToolbar: {
|
||||||
|
left: 'prev,next today',
|
||||||
|
center: 'title',
|
||||||
|
right: 'dayGridMonth,timeGridWeek,timeGridDay,listWeek'
|
||||||
|
},
|
||||||
|
initialView: 'dayGridMonth',
|
||||||
|
initialDate: '2023-01-12',
|
||||||
|
navLinks: true, // can click day/week names to navigate views
|
||||||
|
editable: true,
|
||||||
|
selectable: true,
|
||||||
|
nowIndicator: true,
|
||||||
|
dayMaxEvents: true, // allow "more" link when too many events
|
||||||
|
events: [
|
||||||
|
{
|
||||||
|
title: 'All Day Event',
|
||||||
|
start: '2023-01-01',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Long Event',
|
||||||
|
start: '2023-01-07',
|
||||||
|
end: '2023-01-10'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
groupId: 999,
|
||||||
|
title: 'Repeating Event',
|
||||||
|
start: '2023-01-09T16:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
groupId: 999,
|
||||||
|
title: 'Repeating Event',
|
||||||
|
start: '2023-01-16T16:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Conference',
|
||||||
|
start: '2023-01-11',
|
||||||
|
end: '2023-01-13'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Meeting',
|
||||||
|
start: '2023-01-12T10:30:00',
|
||||||
|
end: '2023-01-12T12:30:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Lunch',
|
||||||
|
start: '2023-01-12T12:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Meeting',
|
||||||
|
start: '2023-01-12T14:30:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Happy Hour',
|
||||||
|
start: '2023-01-12T17:30:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Dinner',
|
||||||
|
start: '2023-01-12T20:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Birthday Party',
|
||||||
|
start: '2023-01-13T07:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Click for Google',
|
||||||
|
url: 'http://google.com/',
|
||||||
|
start: '2023-01-28'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
});
|
||||||
|
|
||||||
|
calendar.render();
|
||||||
|
});
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<style>
|
||||||
|
|
||||||
|
html, body {
|
||||||
|
overflow: hidden; /* don't do scrollbars */
|
||||||
|
font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#calendar-container {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fc-header-toolbar {
|
||||||
|
/*
|
||||||
|
the calendar will be butting up against the edges,
|
||||||
|
but let's scoot in the header's buttons
|
||||||
|
*/
|
||||||
|
padding-top: 1em;
|
||||||
|
padding-left: 1em;
|
||||||
|
padding-right: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id='calendar-container'>
|
||||||
|
<div id='calendar'></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
76
httpdocs/themes/vuexy/vendor/libs/fullcalendar/examples/list-sticky-header.html
vendored
Normal file
76
httpdocs/themes/vuexy/vendor/libs/fullcalendar/examples/list-sticky-header.html
vendored
Normal file
@ -0,0 +1,76 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset='utf-8' />
|
||||||
|
<script src='../dist/index.global.js'></script>
|
||||||
|
<script>
|
||||||
|
|
||||||
|
document.addEventListener('DOMContentLoaded', function() {
|
||||||
|
var calendarEl = document.getElementById('calendar');
|
||||||
|
|
||||||
|
var calendar = new FullCalendar.Calendar(calendarEl, {
|
||||||
|
height: 'auto',
|
||||||
|
// stickyHeaderDates: false, // for disabling
|
||||||
|
|
||||||
|
headerToolbar: {
|
||||||
|
left: 'prev,next today',
|
||||||
|
center: 'title',
|
||||||
|
right: 'listMonth,listYear'
|
||||||
|
},
|
||||||
|
|
||||||
|
// customize the button names,
|
||||||
|
// otherwise they'd all just say "list"
|
||||||
|
views: {
|
||||||
|
listMonth: { buttonText: 'list month' },
|
||||||
|
listYear: { buttonText: 'list year' }
|
||||||
|
},
|
||||||
|
|
||||||
|
initialView: 'listYear',
|
||||||
|
initialDate: '2023-01-12',
|
||||||
|
navLinks: true, // can click day/week names to navigate views
|
||||||
|
editable: true,
|
||||||
|
events: [
|
||||||
|
{
|
||||||
|
title: 'repeating event 1',
|
||||||
|
daysOfWeek: [ 1, 2, 3 ],
|
||||||
|
duration: '00:30'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'repeating event 2',
|
||||||
|
daysOfWeek: [ 1, 2, 3 ],
|
||||||
|
duration: '00:30'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'repeating event 3',
|
||||||
|
daysOfWeek: [ 1, 2, 3 ],
|
||||||
|
duration: '00:30'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
});
|
||||||
|
|
||||||
|
calendar.render();
|
||||||
|
});
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<style>
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 40px 10px;
|
||||||
|
padding: 0;
|
||||||
|
font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#calendar {
|
||||||
|
max-width: 1100px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id='calendar'></div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
114
httpdocs/themes/vuexy/vendor/libs/fullcalendar/examples/list-views.html
vendored
Normal file
114
httpdocs/themes/vuexy/vendor/libs/fullcalendar/examples/list-views.html
vendored
Normal file
@ -0,0 +1,114 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset='utf-8' />
|
||||||
|
<script src='../dist/index.global.js'></script>
|
||||||
|
<script>
|
||||||
|
|
||||||
|
document.addEventListener('DOMContentLoaded', function() {
|
||||||
|
var calendarEl = document.getElementById('calendar');
|
||||||
|
|
||||||
|
var calendar = new FullCalendar.Calendar(calendarEl, {
|
||||||
|
|
||||||
|
headerToolbar: {
|
||||||
|
left: 'prev,next today',
|
||||||
|
center: 'title',
|
||||||
|
right: 'listDay,listWeek'
|
||||||
|
},
|
||||||
|
|
||||||
|
// customize the button names,
|
||||||
|
// otherwise they'd all just say "list"
|
||||||
|
views: {
|
||||||
|
listDay: { buttonText: 'list day' },
|
||||||
|
listWeek: { buttonText: 'list week' }
|
||||||
|
},
|
||||||
|
|
||||||
|
initialView: 'listWeek',
|
||||||
|
initialDate: '2023-01-12',
|
||||||
|
navLinks: true, // can click day/week names to navigate views
|
||||||
|
editable: true,
|
||||||
|
dayMaxEvents: true, // allow "more" link when too many events
|
||||||
|
events: [
|
||||||
|
{
|
||||||
|
title: 'All Day Event',
|
||||||
|
start: '2023-01-01'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Long Event',
|
||||||
|
start: '2023-01-07',
|
||||||
|
end: '2023-01-10'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
groupId: 999,
|
||||||
|
title: 'Repeating Event',
|
||||||
|
start: '2023-01-09T16:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
groupId: 999,
|
||||||
|
title: 'Repeating Event',
|
||||||
|
start: '2023-01-16T16:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Conference',
|
||||||
|
start: '2023-01-11',
|
||||||
|
end: '2023-01-13'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Meeting',
|
||||||
|
start: '2023-01-12T10:30:00',
|
||||||
|
end: '2023-01-12T12:30:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Lunch',
|
||||||
|
start: '2023-01-12T12:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Meeting',
|
||||||
|
start: '2023-01-12T14:30:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Happy Hour',
|
||||||
|
start: '2023-01-12T17:30:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Dinner',
|
||||||
|
start: '2023-01-12T20:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Birthday Party',
|
||||||
|
start: '2023-01-13T07:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Click for Google',
|
||||||
|
url: 'http://google.com/',
|
||||||
|
start: '2023-01-28'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
});
|
||||||
|
|
||||||
|
calendar.render();
|
||||||
|
});
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<style>
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 40px 10px;
|
||||||
|
padding: 0;
|
||||||
|
font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#calendar {
|
||||||
|
max-width: 1100px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id='calendar'></div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
100
httpdocs/themes/vuexy/vendor/libs/fullcalendar/examples/month-view.html
vendored
Normal file
100
httpdocs/themes/vuexy/vendor/libs/fullcalendar/examples/month-view.html
vendored
Normal file
@ -0,0 +1,100 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset='utf-8' />
|
||||||
|
<script src='../dist/index.global.js'></script>
|
||||||
|
<script>
|
||||||
|
|
||||||
|
document.addEventListener('DOMContentLoaded', function() {
|
||||||
|
var calendarEl = document.getElementById('calendar');
|
||||||
|
|
||||||
|
var calendar = new FullCalendar.Calendar(calendarEl, {
|
||||||
|
initialDate: '2023-01-12',
|
||||||
|
editable: true,
|
||||||
|
selectable: true,
|
||||||
|
businessHours: true,
|
||||||
|
dayMaxEvents: true, // allow "more" link when too many events
|
||||||
|
events: [
|
||||||
|
{
|
||||||
|
title: 'All Day Event',
|
||||||
|
start: '2023-01-01'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Long Event',
|
||||||
|
start: '2023-01-07',
|
||||||
|
end: '2023-01-10'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
groupId: 999,
|
||||||
|
title: 'Repeating Event',
|
||||||
|
start: '2023-01-09T16:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
groupId: 999,
|
||||||
|
title: 'Repeating Event',
|
||||||
|
start: '2023-01-16T16:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Conference',
|
||||||
|
start: '2023-01-11',
|
||||||
|
end: '2023-01-13'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Meeting',
|
||||||
|
start: '2023-01-12T10:30:00',
|
||||||
|
end: '2023-01-12T12:30:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Lunch',
|
||||||
|
start: '2023-01-12T12:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Meeting',
|
||||||
|
start: '2023-01-12T14:30:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Happy Hour',
|
||||||
|
start: '2023-01-12T17:30:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Dinner',
|
||||||
|
start: '2023-01-12T20:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Birthday Party',
|
||||||
|
start: '2023-01-13T07:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Click for Google',
|
||||||
|
url: 'http://google.com/',
|
||||||
|
start: '2023-01-28'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
});
|
||||||
|
|
||||||
|
calendar.render();
|
||||||
|
});
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<style>
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 40px 10px;
|
||||||
|
padding: 0;
|
||||||
|
font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#calendar {
|
||||||
|
max-width: 1100px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id='calendar'></div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
110
httpdocs/themes/vuexy/vendor/libs/fullcalendar/examples/multimonth-view.html
vendored
Normal file
110
httpdocs/themes/vuexy/vendor/libs/fullcalendar/examples/multimonth-view.html
vendored
Normal file
@ -0,0 +1,110 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset='utf-8' />
|
||||||
|
<script src='../dist/index.global.js'></script>
|
||||||
|
<script>
|
||||||
|
|
||||||
|
document.addEventListener('DOMContentLoaded', function() {
|
||||||
|
var calendarEl = document.getElementById('calendar');
|
||||||
|
|
||||||
|
var calendar = new FullCalendar.Calendar(calendarEl, {
|
||||||
|
headerToolbar: {
|
||||||
|
left: 'prev,next today',
|
||||||
|
center: 'title',
|
||||||
|
right: 'multiMonthYear,dayGridMonth,timeGridWeek'
|
||||||
|
},
|
||||||
|
initialView: 'multiMonthYear',
|
||||||
|
initialDate: '2023-01-12',
|
||||||
|
editable: true,
|
||||||
|
selectable: true,
|
||||||
|
dayMaxEvents: true, // allow "more" link when too many events
|
||||||
|
// multiMonthMaxColumns: 1, // guarantee single column
|
||||||
|
// showNonCurrentDates: true,
|
||||||
|
// fixedWeekCount: false,
|
||||||
|
// businessHours: true,
|
||||||
|
// weekends: false,
|
||||||
|
events: [
|
||||||
|
{
|
||||||
|
title: 'All Day Event',
|
||||||
|
start: '2023-01-01'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Long Event',
|
||||||
|
start: '2023-01-07',
|
||||||
|
end: '2023-01-10'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
groupId: 999,
|
||||||
|
title: 'Repeating Event',
|
||||||
|
start: '2023-01-09T16:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
groupId: 999,
|
||||||
|
title: 'Repeating Event',
|
||||||
|
start: '2023-01-16T16:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Conference',
|
||||||
|
start: '2023-01-11',
|
||||||
|
end: '2023-01-13'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Meeting',
|
||||||
|
start: '2023-01-12T10:30:00',
|
||||||
|
end: '2023-01-12T12:30:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Lunch',
|
||||||
|
start: '2023-01-12T12:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Meeting',
|
||||||
|
start: '2023-01-12T14:30:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Happy Hour',
|
||||||
|
start: '2023-01-12T17:30:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Dinner',
|
||||||
|
start: '2023-01-12T20:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Birthday Party',
|
||||||
|
start: '2023-01-13T07:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Click for Google',
|
||||||
|
url: 'http://google.com/',
|
||||||
|
start: '2023-01-28'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
});
|
||||||
|
|
||||||
|
calendar.render();
|
||||||
|
});
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<style>
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 40px 10px;
|
||||||
|
padding: 0;
|
||||||
|
font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#calendar {
|
||||||
|
max-width: 1200px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id='calendar'></div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
107
httpdocs/themes/vuexy/vendor/libs/fullcalendar/examples/multiweek-view.html
vendored
Normal file
107
httpdocs/themes/vuexy/vendor/libs/fullcalendar/examples/multiweek-view.html
vendored
Normal file
@ -0,0 +1,107 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset='utf-8' />
|
||||||
|
<script src='../dist/index.global.js'></script>
|
||||||
|
<script>
|
||||||
|
|
||||||
|
document.addEventListener('DOMContentLoaded', function() {
|
||||||
|
var calendarEl = document.getElementById('calendar');
|
||||||
|
|
||||||
|
var calendar = new FullCalendar.Calendar(calendarEl, {
|
||||||
|
headerToolbar: {
|
||||||
|
left: 'prev,next today',
|
||||||
|
center: 'title',
|
||||||
|
right: 'dayGridYear,dayGridMonth,timeGridWeek'
|
||||||
|
},
|
||||||
|
initialView: 'dayGridYear',
|
||||||
|
initialDate: '2023-01-12',
|
||||||
|
editable: true,
|
||||||
|
selectable: true,
|
||||||
|
dayMaxEvents: true, // allow "more" link when too many events
|
||||||
|
// businessHours: true,
|
||||||
|
// weekends: false,
|
||||||
|
events: [
|
||||||
|
{
|
||||||
|
title: 'All Day Event',
|
||||||
|
start: '2023-01-01'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Long Event',
|
||||||
|
start: '2023-01-07',
|
||||||
|
end: '2023-01-10'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
groupId: 999,
|
||||||
|
title: 'Repeating Event',
|
||||||
|
start: '2023-01-09T16:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
groupId: 999,
|
||||||
|
title: 'Repeating Event',
|
||||||
|
start: '2023-01-16T16:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Conference',
|
||||||
|
start: '2023-01-11',
|
||||||
|
end: '2023-01-13'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Meeting',
|
||||||
|
start: '2023-01-12T10:30:00',
|
||||||
|
end: '2023-01-12T12:30:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Lunch',
|
||||||
|
start: '2023-01-12T12:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Meeting',
|
||||||
|
start: '2023-01-12T14:30:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Happy Hour',
|
||||||
|
start: '2023-01-12T17:30:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Dinner',
|
||||||
|
start: '2023-01-12T20:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Birthday Party',
|
||||||
|
start: '2023-01-13T07:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Click for Google',
|
||||||
|
url: 'http://google.com/',
|
||||||
|
start: '2023-01-28'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
});
|
||||||
|
|
||||||
|
calendar.render();
|
||||||
|
});
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<style>
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 40px 10px;
|
||||||
|
padding: 0;
|
||||||
|
font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#calendar {
|
||||||
|
max-width: 1200px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id='calendar'></div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
108
httpdocs/themes/vuexy/vendor/libs/fullcalendar/examples/natural-height.html
vendored
Normal file
108
httpdocs/themes/vuexy/vendor/libs/fullcalendar/examples/natural-height.html
vendored
Normal file
@ -0,0 +1,108 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset='utf-8' />
|
||||||
|
<script src='../dist/index.global.js'></script>
|
||||||
|
<script>
|
||||||
|
|
||||||
|
document.addEventListener('DOMContentLoaded', function() {
|
||||||
|
var calendarEl = document.getElementById('calendar');
|
||||||
|
|
||||||
|
var calendar = new FullCalendar.Calendar(calendarEl, {
|
||||||
|
initialDate: '2023-01-12',
|
||||||
|
initialView: 'timeGridWeek',
|
||||||
|
headerToolbar: {
|
||||||
|
left: 'prev,next today',
|
||||||
|
center: 'title',
|
||||||
|
right: 'dayGridMonth,timeGridWeek,timeGridDay,listWeek'
|
||||||
|
},
|
||||||
|
height: 'auto',
|
||||||
|
navLinks: true, // can click day/week names to navigate views
|
||||||
|
editable: true,
|
||||||
|
selectable: true,
|
||||||
|
selectMirror: true,
|
||||||
|
nowIndicator: true,
|
||||||
|
events: [
|
||||||
|
{
|
||||||
|
title: 'All Day Event',
|
||||||
|
start: '2023-01-01',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Long Event',
|
||||||
|
start: '2023-01-07',
|
||||||
|
end: '2023-01-10'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
groupId: 999,
|
||||||
|
title: 'Repeating Event',
|
||||||
|
start: '2023-01-09T16:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
groupId: 999,
|
||||||
|
title: 'Repeating Event',
|
||||||
|
start: '2023-01-16T16:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Conference',
|
||||||
|
start: '2023-01-11',
|
||||||
|
end: '2023-01-13'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Meeting',
|
||||||
|
start: '2023-01-12T10:30:00',
|
||||||
|
end: '2023-01-12T12:30:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Lunch',
|
||||||
|
start: '2023-01-12T12:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Meeting',
|
||||||
|
start: '2023-01-12T14:30:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Happy Hour',
|
||||||
|
start: '2023-01-12T17:30:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Dinner',
|
||||||
|
start: '2023-01-12T20:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Birthday Party',
|
||||||
|
start: '2023-01-13T07:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Click for Google',
|
||||||
|
url: 'http://google.com/',
|
||||||
|
start: '2023-01-28'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
});
|
||||||
|
|
||||||
|
calendar.render();
|
||||||
|
});
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<style>
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 40px 10px;
|
||||||
|
padding: 0;
|
||||||
|
font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#calendar {
|
||||||
|
max-width: 1100px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id='calendar'></div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
123
httpdocs/themes/vuexy/vendor/libs/fullcalendar/examples/selectable.html
vendored
Normal file
123
httpdocs/themes/vuexy/vendor/libs/fullcalendar/examples/selectable.html
vendored
Normal file
@ -0,0 +1,123 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset='utf-8' />
|
||||||
|
<script src='../dist/index.global.js'></script>
|
||||||
|
<script>
|
||||||
|
|
||||||
|
document.addEventListener('DOMContentLoaded', function() {
|
||||||
|
var calendarEl = document.getElementById('calendar');
|
||||||
|
|
||||||
|
var calendar = new FullCalendar.Calendar(calendarEl, {
|
||||||
|
headerToolbar: {
|
||||||
|
left: 'prev,next today',
|
||||||
|
center: 'title',
|
||||||
|
right: 'dayGridMonth,timeGridWeek,timeGridDay'
|
||||||
|
},
|
||||||
|
initialDate: '2023-01-12',
|
||||||
|
navLinks: true, // can click day/week names to navigate views
|
||||||
|
selectable: true,
|
||||||
|
selectMirror: true,
|
||||||
|
select: function(arg) {
|
||||||
|
var title = prompt('Event Title:');
|
||||||
|
if (title) {
|
||||||
|
calendar.addEvent({
|
||||||
|
title: title,
|
||||||
|
start: arg.start,
|
||||||
|
end: arg.end,
|
||||||
|
allDay: arg.allDay
|
||||||
|
})
|
||||||
|
}
|
||||||
|
calendar.unselect()
|
||||||
|
},
|
||||||
|
eventClick: function(arg) {
|
||||||
|
if (confirm('Are you sure you want to delete this event?')) {
|
||||||
|
arg.event.remove()
|
||||||
|
}
|
||||||
|
},
|
||||||
|
editable: true,
|
||||||
|
dayMaxEvents: true, // allow "more" link when too many events
|
||||||
|
events: [
|
||||||
|
{
|
||||||
|
title: 'All Day Event',
|
||||||
|
start: '2023-01-01'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Long Event',
|
||||||
|
start: '2023-01-07',
|
||||||
|
end: '2023-01-10'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
groupId: 999,
|
||||||
|
title: 'Repeating Event',
|
||||||
|
start: '2023-01-09T16:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
groupId: 999,
|
||||||
|
title: 'Repeating Event',
|
||||||
|
start: '2023-01-16T16:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Conference',
|
||||||
|
start: '2023-01-11',
|
||||||
|
end: '2023-01-13'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Meeting',
|
||||||
|
start: '2023-01-12T10:30:00',
|
||||||
|
end: '2023-01-12T12:30:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Lunch',
|
||||||
|
start: '2023-01-12T12:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Meeting',
|
||||||
|
start: '2023-01-12T14:30:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Happy Hour',
|
||||||
|
start: '2023-01-12T17:30:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Dinner',
|
||||||
|
start: '2023-01-12T20:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Birthday Party',
|
||||||
|
start: '2023-01-13T07:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Click for Google',
|
||||||
|
url: 'http://google.com/',
|
||||||
|
start: '2023-01-28'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
});
|
||||||
|
|
||||||
|
calendar.render();
|
||||||
|
});
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<style>
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 40px 10px;
|
||||||
|
padding: 0;
|
||||||
|
font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#calendar {
|
||||||
|
max-width: 1100px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id='calendar'></div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
180
httpdocs/themes/vuexy/vendor/libs/fullcalendar/examples/timegrid-views-modal.html
vendored
Normal file
180
httpdocs/themes/vuexy/vendor/libs/fullcalendar/examples/timegrid-views-modal.html
vendored
Normal file
@ -0,0 +1,180 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset='utf-8' />
|
||||||
|
<script src='../dist/index.global.js'></script>
|
||||||
|
<script>
|
||||||
|
|
||||||
|
/*
|
||||||
|
From https://github.com/fullcalendar/fullcalendar/issues/5026
|
||||||
|
*/
|
||||||
|
|
||||||
|
document.addEventListener('DOMContentLoaded', function() {
|
||||||
|
var calendarOptions = {
|
||||||
|
initialDate: '2023-01-12',
|
||||||
|
initialView: 'timeGridWeek',
|
||||||
|
nowIndicator: true,
|
||||||
|
headerToolbar: {
|
||||||
|
left: 'prev,next today',
|
||||||
|
center: 'title',
|
||||||
|
right: 'dayGridMonth,timeGridWeek,timeGridDay,listWeek'
|
||||||
|
},
|
||||||
|
navLinks: true, // can click day/week names to navigate views
|
||||||
|
editable: true,
|
||||||
|
selectable: true,
|
||||||
|
selectMirror: true,
|
||||||
|
dayMaxEvents: true, // allow "more" link when too many events
|
||||||
|
events: [
|
||||||
|
{
|
||||||
|
title: 'All Day Event',
|
||||||
|
start: '2023-01-01',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Long Event',
|
||||||
|
start: '2023-01-07',
|
||||||
|
end: '2023-01-10'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
groupId: 999,
|
||||||
|
title: 'Repeating Event',
|
||||||
|
start: '2023-01-09T16:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
groupId: 999,
|
||||||
|
title: 'Repeating Event',
|
||||||
|
start: '2023-01-16T16:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Conference',
|
||||||
|
start: '2023-01-11',
|
||||||
|
end: '2023-01-13'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Meeting',
|
||||||
|
start: '2023-01-12T10:30:00',
|
||||||
|
end: '2023-01-12T12:30:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Lunch',
|
||||||
|
start: '2023-01-12T12:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Meeting',
|
||||||
|
start: '2023-01-12T14:30:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Happy Hour',
|
||||||
|
start: '2023-01-12T17:30:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Dinner',
|
||||||
|
start: '2023-01-12T20:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Birthday Party',
|
||||||
|
start: '2023-01-13T07:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Click for Google',
|
||||||
|
url: 'http://google.com/',
|
||||||
|
start: '2023-01-28'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
};
|
||||||
|
|
||||||
|
var calendar = new FullCalendar.Calendar(document.getElementById('calendar'), calendarOptions);
|
||||||
|
calendar.render();
|
||||||
|
|
||||||
|
var calendar2 = new FullCalendar.Calendar(document.getElementById('calendar2'), calendarOptions);
|
||||||
|
calendar2.render();
|
||||||
|
|
||||||
|
/*
|
||||||
|
Modal
|
||||||
|
*/
|
||||||
|
|
||||||
|
var modal = document.querySelector('.modal');
|
||||||
|
var modalTrigger = document.querySelector('.modal-trigger');
|
||||||
|
var modalOverlay = document.querySelector('.modal-overlay');
|
||||||
|
|
||||||
|
modalTrigger.addEventListener('click', function() {
|
||||||
|
modal.classList.add('is-visible');
|
||||||
|
calendar2.updateSize();
|
||||||
|
});
|
||||||
|
modalOverlay.addEventListener('click', function() {
|
||||||
|
modal.classList.remove('is-visible');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<style>
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 10px;
|
||||||
|
padding: 0;
|
||||||
|
font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#calendar {
|
||||||
|
max-width: 1100px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal {
|
||||||
|
display: none;
|
||||||
|
position: absolute;
|
||||||
|
z-index: 10000;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal.is-visible {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-overlay {
|
||||||
|
position: fixed;
|
||||||
|
z-index: 10;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background: hsla(0, 0%, 0%, 0.5);
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-wrapper {
|
||||||
|
position: absolute;
|
||||||
|
z-index: 9999;
|
||||||
|
top: 6em;
|
||||||
|
left: 50%;
|
||||||
|
width: 600px;
|
||||||
|
margin-left: -16em;
|
||||||
|
background-color: #fff;
|
||||||
|
box-shadow: 0 0 1.5em hsla(0, 0%, 0%, 0.35);
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-content {
|
||||||
|
padding: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<button class='modal-trigger'>Show modal</button>
|
||||||
|
|
||||||
|
<div id='calendar'></div>
|
||||||
|
|
||||||
|
<div class='modal'>
|
||||||
|
<div class='modal-overlay'></div>
|
||||||
|
<div class='modal-wrapper'>
|
||||||
|
<div class='modal-content'>
|
||||||
|
<div id='calendar2'></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
108
httpdocs/themes/vuexy/vendor/libs/fullcalendar/examples/timegrid-views.html
vendored
Normal file
108
httpdocs/themes/vuexy/vendor/libs/fullcalendar/examples/timegrid-views.html
vendored
Normal file
@ -0,0 +1,108 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset='utf-8' />
|
||||||
|
<script src='../dist/index.global.js'></script>
|
||||||
|
<script>
|
||||||
|
|
||||||
|
document.addEventListener('DOMContentLoaded', function() {
|
||||||
|
var calendarEl = document.getElementById('calendar');
|
||||||
|
|
||||||
|
var calendar = new FullCalendar.Calendar(calendarEl, {
|
||||||
|
initialDate: '2023-01-12',
|
||||||
|
initialView: 'timeGridWeek',
|
||||||
|
nowIndicator: true,
|
||||||
|
headerToolbar: {
|
||||||
|
left: 'prev,next today',
|
||||||
|
center: 'title',
|
||||||
|
right: 'dayGridMonth,timeGridWeek,timeGridDay,listWeek'
|
||||||
|
},
|
||||||
|
navLinks: true, // can click day/week names to navigate views
|
||||||
|
editable: true,
|
||||||
|
selectable: true,
|
||||||
|
selectMirror: true,
|
||||||
|
dayMaxEvents: true, // allow "more" link when too many events
|
||||||
|
events: [
|
||||||
|
{
|
||||||
|
title: 'All Day Event',
|
||||||
|
start: '2023-01-01',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Long Event',
|
||||||
|
start: '2023-01-07',
|
||||||
|
end: '2023-01-10'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
groupId: 999,
|
||||||
|
title: 'Repeating Event',
|
||||||
|
start: '2023-01-09T16:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
groupId: 999,
|
||||||
|
title: 'Repeating Event',
|
||||||
|
start: '2023-01-16T16:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Conference',
|
||||||
|
start: '2023-01-11',
|
||||||
|
end: '2023-01-13'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Meeting',
|
||||||
|
start: '2023-01-12T10:30:00',
|
||||||
|
end: '2023-01-12T12:30:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Lunch',
|
||||||
|
start: '2023-01-12T12:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Meeting',
|
||||||
|
start: '2023-01-12T14:30:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Happy Hour',
|
||||||
|
start: '2023-01-12T17:30:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Dinner',
|
||||||
|
start: '2023-01-12T20:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Birthday Party',
|
||||||
|
start: '2023-01-13T07:00:00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Click for Google',
|
||||||
|
url: 'http://google.com/',
|
||||||
|
start: '2023-01-28'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
});
|
||||||
|
|
||||||
|
calendar.render();
|
||||||
|
});
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<style>
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 40px 10px;
|
||||||
|
padding: 0;
|
||||||
|
font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#calendar {
|
||||||
|
max-width: 1100px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id='calendar'></div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@ -1,430 +0,0 @@
|
|||||||
.fc .fc-toolbar {
|
|
||||||
flex-wrap: wrap;
|
|
||||||
}
|
|
||||||
.fc .fc-toolbar .fc-prev-button,
|
|
||||||
.fc .fc-toolbar .fc-next-button {
|
|
||||||
display: inline-block;
|
|
||||||
background-color: transparent;
|
|
||||||
border-color: transparent;
|
|
||||||
}
|
|
||||||
.fc .fc-toolbar .fc-prev-button:hover, .fc .fc-toolbar .fc-prev-button:active, .fc .fc-toolbar .fc-prev-button:focus,
|
|
||||||
.fc .fc-toolbar .fc-next-button:hover,
|
|
||||||
.fc .fc-toolbar .fc-next-button:active,
|
|
||||||
.fc .fc-toolbar .fc-next-button:focus {
|
|
||||||
background-color: transparent !important;
|
|
||||||
border-color: transparent !important;
|
|
||||||
box-shadow: none !important;
|
|
||||||
}
|
|
||||||
.fc .fc-toolbar .fc-prev-button {
|
|
||||||
padding-left: 0 !important;
|
|
||||||
}
|
|
||||||
.fc .fc-toolbar .fc-button:not(.fc-next-button):not(.fc-prev-button) {
|
|
||||||
padding: 0.485rem 1.25rem;
|
|
||||||
}
|
|
||||||
.fc .fc-toolbar .fc-button:not(.fc-next-button):not(.fc-prev-button):active, .fc .fc-toolbar .fc-button:not(.fc-next-button):not(.fc-prev-button):focus {
|
|
||||||
box-shadow: none !important;
|
|
||||||
}
|
|
||||||
.fc .fc-toolbar > * > :not(:first-child) {
|
|
||||||
margin-left: 0 !important;
|
|
||||||
}
|
|
||||||
[dir=rtl] .fc .fc-toolbar > * > :not(:first-child) {
|
|
||||||
margin-right: 0 !important;
|
|
||||||
}
|
|
||||||
.fc .fc-toolbar .fc-toolbar-chunk {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
.fc .fc-toolbar .fc-button-group .fc-button {
|
|
||||||
text-transform: capitalize;
|
|
||||||
}
|
|
||||||
.fc .fc-toolbar .fc-button-group + div {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
}
|
|
||||||
.fc .fc-toolbar .fc--button:empty,
|
|
||||||
.fc .fc-toolbar .fc-toolbar-chunk:empty {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
.fc .fc-toolbar .fc-sidebarToggle-button + div {
|
|
||||||
margin-left: 0;
|
|
||||||
}
|
|
||||||
.fc .fc-view-harness {
|
|
||||||
min-height: 650px;
|
|
||||||
}
|
|
||||||
.fc .fc-view-harness .fc-col-header-cell-cushion {
|
|
||||||
padding-bottom: 3px;
|
|
||||||
padding-top: 3px;
|
|
||||||
}
|
|
||||||
html:not([dir=rtl]) .fc .fc-view-harness .fc-scrollgrid-section-header > * {
|
|
||||||
border-inline-end-width: 0px;
|
|
||||||
}
|
|
||||||
[dir=rtl] .fc .fc-view-harness .fc-scrollgrid-section-header > * {
|
|
||||||
border-inline-start-width: 0px;
|
|
||||||
}
|
|
||||||
.fc .fc-view-harness .fc-timegrid-event .fc-event-time {
|
|
||||||
font-size: 0.6875rem;
|
|
||||||
}
|
|
||||||
.fc .fc-view-harness .fc-v-event .fc-event-title {
|
|
||||||
font-size: 0.8125rem;
|
|
||||||
padding-top: 0.2rem;
|
|
||||||
font-weight: 600;
|
|
||||||
}
|
|
||||||
.fc .fc-view-harness .fc-timegrid-event .fc-event-main {
|
|
||||||
padding: 0.216rem 0.5rem 0;
|
|
||||||
}
|
|
||||||
.fc .fc-h-event .fc-event-main,
|
|
||||||
.fc .fc-v-event .fc-event-main {
|
|
||||||
color: inherit !important;
|
|
||||||
}
|
|
||||||
.fc .fc-daygrid-body-natural .fc-daygrid-day-events {
|
|
||||||
margin-top: 0.5rem !important;
|
|
||||||
margin-bottom: 0.5rem !important;
|
|
||||||
}
|
|
||||||
.fc .fc-view-harness {
|
|
||||||
margin: 0 -1.5rem;
|
|
||||||
}
|
|
||||||
.fc .fc-view-harness .fc-daygrid-body .fc-daygrid-day .fc-daygrid-day-top {
|
|
||||||
flex-direction: row;
|
|
||||||
}
|
|
||||||
.fc .fc-view-harness .fc-daygrid-body .fc-daygrid-day .fc-daygrid-day-top .fc-daygrid-day-number {
|
|
||||||
float: left;
|
|
||||||
margin-left: 0.5rem;
|
|
||||||
}
|
|
||||||
.fc .fc-view-harness .fc-event {
|
|
||||||
font-size: 0.8125rem;
|
|
||||||
font-weight: 600;
|
|
||||||
padding: 0.216rem 0.5rem;
|
|
||||||
border: 0;
|
|
||||||
}
|
|
||||||
.fc .fc-view-harness .fc-daygrid-event-harness .fc-event.private-event {
|
|
||||||
background-color: transparent !important;
|
|
||||||
border-color: transparent !important;
|
|
||||||
}
|
|
||||||
.fc .fc-view-harness .fc-event .fc-daygrid-event-dot {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
.fc .fc-timegrid .fc-timegrid-divider {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
.fc .fc-daygrid-event-harness + .fc-daygrid-event-harness {
|
|
||||||
margin-top: 0.3rem !important;
|
|
||||||
}
|
|
||||||
.fc .fc-popover {
|
|
||||||
z-index: 1090 !important;
|
|
||||||
}
|
|
||||||
.fc .fc-popover .fc-popover-header {
|
|
||||||
padding: 0.566rem;
|
|
||||||
}
|
|
||||||
.fc .fc-event-primary:not(.fc-list-event) {
|
|
||||||
border: 0;
|
|
||||||
}
|
|
||||||
.fc.fc-theme-standard .fc-list-day-cushion {
|
|
||||||
background-color: unset;
|
|
||||||
}
|
|
||||||
.fc .fc-daygrid-body-natural .fc-daygrid-day-events {
|
|
||||||
margin-top: 0.5rem !important;
|
|
||||||
margin-bottom: 0.5rem !important;
|
|
||||||
}
|
|
||||||
.fc .fc-timegrid-event-harness-inset .fc-timegrid-event,
|
|
||||||
.fc .fc-timegrid-event.fc-event-mirror,
|
|
||||||
.fc .fc-timegrid-more-link {
|
|
||||||
box-shadow: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fc-theme-standard .fc-list {
|
|
||||||
border: 0 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.light-style .fc .fc-toolbar .fc-prev-button .fc-icon,
|
|
||||||
.light-style .fc .fc-toolbar .fc-next-button .fc-icon {
|
|
||||||
color: #6f6b7d;
|
|
||||||
}
|
|
||||||
.light-style .fc table.fc-scrollgrid {
|
|
||||||
border-color: #dbdade;
|
|
||||||
}
|
|
||||||
.light-style .fc table.fc-scrollgrid .fc-col-header tbody {
|
|
||||||
border: none;
|
|
||||||
}
|
|
||||||
.light-style .fc table.fc-scrollgrid .fc-col-header .fc-col-header-cell {
|
|
||||||
border-color: #dbdade;
|
|
||||||
}
|
|
||||||
.light-style .fc table.fc-scrollgrid td {
|
|
||||||
border-color: #dbdade;
|
|
||||||
}
|
|
||||||
.light-style .fc .private-event .fc-event-time,
|
|
||||||
.light-style .fc .private-event .fc-event-title {
|
|
||||||
color: #ea5455;
|
|
||||||
}
|
|
||||||
.light-style .fc .fc-day-today {
|
|
||||||
background-color: #f1f0f2 !important;
|
|
||||||
}
|
|
||||||
.light-style .fc .fc-day-today .fc-popover-body {
|
|
||||||
background-color: #fff !important;
|
|
||||||
}
|
|
||||||
.light-style .fc .fc-popover .fc-popover-header {
|
|
||||||
background: #f8f7fa;
|
|
||||||
}
|
|
||||||
.light-style .fc .fc-list .fc-list-table {
|
|
||||||
border-top: 1px solid #dbdade;
|
|
||||||
}
|
|
||||||
.light-style .fc .fc-list .fc-list-table th {
|
|
||||||
border: 0;
|
|
||||||
background: #f8f8f8;
|
|
||||||
}
|
|
||||||
.light-style .fc .fc-list .fc-list-table .fc-list-event {
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
.light-style .fc .fc-list .fc-list-table .fc-list-event:hover td {
|
|
||||||
background-color: rgba(75, 70, 92, 0.04);
|
|
||||||
}
|
|
||||||
.light-style .fc .fc-list .fc-list-table .fc-list-event td {
|
|
||||||
border-color: #dbdade;
|
|
||||||
}
|
|
||||||
.light-style .fc .fc-list .fc-list-empty {
|
|
||||||
background-color: #f8f7fa;
|
|
||||||
}
|
|
||||||
.light-style .fc table,
|
|
||||||
.light-style .fc tbody,
|
|
||||||
.light-style .fc thead,
|
|
||||||
.light-style .fc tbody td {
|
|
||||||
border-color: #dbdade;
|
|
||||||
}
|
|
||||||
.light-style .fc .fc-timegrid-axis-cushion.fc-scrollgrid-shrink-cushion {
|
|
||||||
color: #a5a3ae;
|
|
||||||
}
|
|
||||||
.light-style .fc .fc-day-disabled {
|
|
||||||
background-color: rgba(75, 70, 92, 0.16);
|
|
||||||
}
|
|
||||||
.light-style .fc-event-primary:not(.fc-list-event) {
|
|
||||||
background-color: #eae8fd !important;
|
|
||||||
color: #7367f0 !important;
|
|
||||||
}
|
|
||||||
.light-style .fc-event-primary.fc-list-event .fc-list-event-dot {
|
|
||||||
border-color: #7367f0 !important;
|
|
||||||
}
|
|
||||||
.light-style .fc-event-secondary:not(.fc-list-event) {
|
|
||||||
background-color: #f2f2f3 !important;
|
|
||||||
color: #a8aaae !important;
|
|
||||||
}
|
|
||||||
.light-style .fc-event-secondary.fc-list-event .fc-list-event-dot {
|
|
||||||
border-color: #a8aaae !important;
|
|
||||||
}
|
|
||||||
.light-style .fc-event-success:not(.fc-list-event) {
|
|
||||||
background-color: #dff7e9 !important;
|
|
||||||
color: #28c76f !important;
|
|
||||||
}
|
|
||||||
.light-style .fc-event-success.fc-list-event .fc-list-event-dot {
|
|
||||||
border-color: #28c76f !important;
|
|
||||||
}
|
|
||||||
.light-style .fc-event-info:not(.fc-list-event) {
|
|
||||||
background-color: #d9f8fc !important;
|
|
||||||
color: #00cfe8 !important;
|
|
||||||
}
|
|
||||||
.light-style .fc-event-info.fc-list-event .fc-list-event-dot {
|
|
||||||
border-color: #00cfe8 !important;
|
|
||||||
}
|
|
||||||
.light-style .fc-event-warning:not(.fc-list-event) {
|
|
||||||
background-color: #fff1e3 !important;
|
|
||||||
color: #ff9f43 !important;
|
|
||||||
}
|
|
||||||
.light-style .fc-event-warning.fc-list-event .fc-list-event-dot {
|
|
||||||
border-color: #ff9f43 !important;
|
|
||||||
}
|
|
||||||
.light-style .fc-event-danger:not(.fc-list-event) {
|
|
||||||
background-color: #fce5e6 !important;
|
|
||||||
color: #ea5455 !important;
|
|
||||||
}
|
|
||||||
.light-style .fc-event-danger.fc-list-event .fc-list-event-dot {
|
|
||||||
border-color: #ea5455 !important;
|
|
||||||
}
|
|
||||||
.light-style .fc-event-light:not(.fc-list-event) {
|
|
||||||
background-color: #fafafb !important;
|
|
||||||
color: #dfdfe3 !important;
|
|
||||||
}
|
|
||||||
.light-style .fc-event-light.fc-list-event .fc-list-event-dot {
|
|
||||||
border-color: #dfdfe3 !important;
|
|
||||||
}
|
|
||||||
.light-style .fc-event-dark:not(.fc-list-event) {
|
|
||||||
background-color: #e4e4e4 !important;
|
|
||||||
color: #4b4b4b !important;
|
|
||||||
}
|
|
||||||
.light-style .fc-event-dark.fc-list-event .fc-list-event-dot {
|
|
||||||
border-color: #4b4b4b !important;
|
|
||||||
}
|
|
||||||
.light-style .fc-event-gray:not(.fc-list-event) {
|
|
||||||
background-color: rgba(254, 254, 254, 0.8575) !important;
|
|
||||||
color: rgba(75, 70, 92, 0.05) !important;
|
|
||||||
}
|
|
||||||
.light-style .fc-event-gray.fc-list-event .fc-list-event-dot {
|
|
||||||
border-color: rgba(75, 70, 92, 0.05) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dark-style .fc .fc-toolbar .fc-prev-button .fc-icon,
|
|
||||||
.dark-style .fc .fc-toolbar .fc-next-button .fc-icon {
|
|
||||||
color: #b6bee3;
|
|
||||||
}
|
|
||||||
.dark-style .fc .fc-toolbar .fc-sidebarToggle-button {
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
.dark-style .fc table.fc-scrollgrid {
|
|
||||||
border-color: #434968;
|
|
||||||
}
|
|
||||||
.dark-style .fc table.fc-scrollgrid .fc-col-header tbody {
|
|
||||||
border: none;
|
|
||||||
}
|
|
||||||
.dark-style .fc table.fc-scrollgrid .fc-col-header .fc-col-header-cell {
|
|
||||||
border-color: #434968;
|
|
||||||
}
|
|
||||||
.dark-style .fc table.fc-scrollgrid td {
|
|
||||||
border-color: #434968;
|
|
||||||
}
|
|
||||||
.dark-style .fc .private-event .fc-event-time,
|
|
||||||
.dark-style .fc .private-event .fc-event-title {
|
|
||||||
color: #ea5455;
|
|
||||||
}
|
|
||||||
.dark-style .fc .fc-day-today {
|
|
||||||
background-color: #363b54 !important;
|
|
||||||
}
|
|
||||||
.dark-style .fc .fc-day-today .fc-popover-body {
|
|
||||||
background-color: #2f3349 !important;
|
|
||||||
}
|
|
||||||
.dark-style .fc .fc-divider {
|
|
||||||
background: #434968;
|
|
||||||
border-color: #434968;
|
|
||||||
}
|
|
||||||
.dark-style .fc .fc-popover {
|
|
||||||
background-color: #25293c;
|
|
||||||
border: 0;
|
|
||||||
}
|
|
||||||
.dark-style .fc .fc-popover .fc-popover-header {
|
|
||||||
background-color: #d7d8de;
|
|
||||||
}
|
|
||||||
.dark-style .fc .fc-list .fc-list-table {
|
|
||||||
border-top: 1px solid #434968;
|
|
||||||
}
|
|
||||||
.dark-style .fc .fc-list .fc-list-table th {
|
|
||||||
border: 0;
|
|
||||||
background: #343951;
|
|
||||||
}
|
|
||||||
.dark-style .fc .fc-list .fc-list-table .fc-list-event {
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
.dark-style .fc .fc-list .fc-list-table .fc-list-event:hover td {
|
|
||||||
background-color: rgba(134, 146, 208, 0.08);
|
|
||||||
}
|
|
||||||
.dark-style .fc .fc-list .fc-list-table .fc-list-event td {
|
|
||||||
border-color: #434968;
|
|
||||||
}
|
|
||||||
.dark-style .fc .fc-list .fc-list-empty {
|
|
||||||
background-color: #25293c;
|
|
||||||
}
|
|
||||||
.dark-style .fc table,
|
|
||||||
.dark-style .fc .fc-timegrid-axis,
|
|
||||||
.dark-style .fc tbody,
|
|
||||||
.dark-style .fc thead,
|
|
||||||
.dark-style .fc tbody td {
|
|
||||||
border-color: #434968;
|
|
||||||
}
|
|
||||||
.dark-style .fc .fc-timegrid-axis-cushion.fc-scrollgrid-shrink-cushion {
|
|
||||||
color: #7983bb;
|
|
||||||
}
|
|
||||||
.dark-style .fc .fc-day-disabled {
|
|
||||||
background-color: rgba(134, 146, 208, 0.16);
|
|
||||||
}
|
|
||||||
.dark-style .fc-event-primary:not(.fc-list-event) {
|
|
||||||
background-color: #3a3b64 !important;
|
|
||||||
color: #7367f0 !important;
|
|
||||||
}
|
|
||||||
.dark-style .fc-event-primary:not(.fc-list-event) {
|
|
||||||
box-shadow: none;
|
|
||||||
}
|
|
||||||
.dark-style .fc-event-primary.fc-list-event .fc-list-event-dot {
|
|
||||||
border-color: #7367f0 !important;
|
|
||||||
}
|
|
||||||
.dark-style .fc-event-secondary:not(.fc-list-event) {
|
|
||||||
background-color: #424659 !important;
|
|
||||||
color: #a8aaae !important;
|
|
||||||
}
|
|
||||||
.dark-style .fc-event-secondary:not(.fc-list-event) {
|
|
||||||
box-shadow: none;
|
|
||||||
}
|
|
||||||
.dark-style .fc-event-secondary.fc-list-event .fc-list-event-dot {
|
|
||||||
border-color: #a8aaae !important;
|
|
||||||
}
|
|
||||||
.dark-style .fc-event-success:not(.fc-list-event) {
|
|
||||||
background-color: #2e4b4f !important;
|
|
||||||
color: #28c76f !important;
|
|
||||||
}
|
|
||||||
.dark-style .fc-event-success:not(.fc-list-event) {
|
|
||||||
box-shadow: none;
|
|
||||||
}
|
|
||||||
.dark-style .fc-event-success.fc-list-event .fc-list-event-dot {
|
|
||||||
border-color: #28c76f !important;
|
|
||||||
}
|
|
||||||
.dark-style .fc-event-info:not(.fc-list-event) {
|
|
||||||
background-color: #274c62 !important;
|
|
||||||
color: #00cfe8 !important;
|
|
||||||
}
|
|
||||||
.dark-style .fc-event-info:not(.fc-list-event) {
|
|
||||||
box-shadow: none;
|
|
||||||
}
|
|
||||||
.dark-style .fc-event-info.fc-list-event .fc-list-event-dot {
|
|
||||||
border-color: #00cfe8 !important;
|
|
||||||
}
|
|
||||||
.dark-style .fc-event-warning:not(.fc-list-event) {
|
|
||||||
background-color: #504448 !important;
|
|
||||||
color: #ff9f43 !important;
|
|
||||||
}
|
|
||||||
.dark-style .fc-event-warning:not(.fc-list-event) {
|
|
||||||
box-shadow: none;
|
|
||||||
}
|
|
||||||
.dark-style .fc-event-warning.fc-list-event .fc-list-event-dot {
|
|
||||||
border-color: #ff9f43 !important;
|
|
||||||
}
|
|
||||||
.dark-style .fc-event-danger:not(.fc-list-event) {
|
|
||||||
background-color: #4d384b !important;
|
|
||||||
color: #ea5455 !important;
|
|
||||||
}
|
|
||||||
.dark-style .fc-event-danger:not(.fc-list-event) {
|
|
||||||
box-shadow: none;
|
|
||||||
}
|
|
||||||
.dark-style .fc-event-danger.fc-list-event .fc-list-event-dot {
|
|
||||||
border-color: #ea5455 !important;
|
|
||||||
}
|
|
||||||
.dark-style .fc-event-light:not(.fc-list-event) {
|
|
||||||
background-color: #32364c !important;
|
|
||||||
color: #44475b !important;
|
|
||||||
}
|
|
||||||
.dark-style .fc-event-light:not(.fc-list-event) {
|
|
||||||
box-shadow: none;
|
|
||||||
}
|
|
||||||
.dark-style .fc-event-light.fc-list-event .fc-list-event-dot {
|
|
||||||
border-color: #44475b !important;
|
|
||||||
}
|
|
||||||
.dark-style .fc-event-dark:not(.fc-list-event) {
|
|
||||||
background-color: #4a4d61 !important;
|
|
||||||
color: #d7d8de !important;
|
|
||||||
}
|
|
||||||
.dark-style .fc-event-dark:not(.fc-list-event) {
|
|
||||||
box-shadow: none;
|
|
||||||
}
|
|
||||||
.dark-style .fc-event-dark.fc-list-event .fc-list-event-dot {
|
|
||||||
border-color: #d7d8de !important;
|
|
||||||
}
|
|
||||||
.dark-style .fc-event-gray:not(.fc-list-event) {
|
|
||||||
background-color: rgba(70, 74, 94, 0.968) !important;
|
|
||||||
color: rgba(255, 255, 255, 0.8) !important;
|
|
||||||
}
|
|
||||||
.dark-style .fc-event-gray:not(.fc-list-event) {
|
|
||||||
box-shadow: none;
|
|
||||||
}
|
|
||||||
.dark-style .fc-event-gray.fc-list-event .fc-list-event-dot {
|
|
||||||
border-color: rgba(255, 255, 255, 0.8) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 575.98px) {
|
|
||||||
.fc .fc-header-toolbar .fc-toolbar-chunk + .fc-toolbar-chunk {
|
|
||||||
margin-top: 1rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
File diff suppressed because one or more lines are too long
64
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/bootstrap4/index.global.js
vendored
Normal file
64
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/bootstrap4/index.global.js
vendored
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Bootstrap 4 Plugin v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io/docs/bootstrap4
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
FullCalendar.Bootstrap = (function (exports, core, internal$1) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
class BootstrapTheme extends internal$1.Theme {
|
||||||
|
}
|
||||||
|
BootstrapTheme.prototype.classes = {
|
||||||
|
root: 'fc-theme-bootstrap',
|
||||||
|
table: 'table-bordered',
|
||||||
|
tableCellShaded: 'table-active',
|
||||||
|
buttonGroup: 'btn-group',
|
||||||
|
button: 'btn btn-primary',
|
||||||
|
buttonActive: 'active',
|
||||||
|
popover: 'popover',
|
||||||
|
popoverHeader: 'popover-header',
|
||||||
|
popoverContent: 'popover-body',
|
||||||
|
};
|
||||||
|
BootstrapTheme.prototype.baseIconClass = 'fa';
|
||||||
|
BootstrapTheme.prototype.iconClasses = {
|
||||||
|
close: 'fa-times',
|
||||||
|
prev: 'fa-chevron-left',
|
||||||
|
next: 'fa-chevron-right',
|
||||||
|
prevYear: 'fa-angle-double-left',
|
||||||
|
nextYear: 'fa-angle-double-right',
|
||||||
|
};
|
||||||
|
BootstrapTheme.prototype.rtlIconClasses = {
|
||||||
|
prev: 'fa-chevron-right',
|
||||||
|
next: 'fa-chevron-left',
|
||||||
|
prevYear: 'fa-angle-double-right',
|
||||||
|
nextYear: 'fa-angle-double-left',
|
||||||
|
};
|
||||||
|
BootstrapTheme.prototype.iconOverrideOption = 'bootstrapFontAwesome'; // TODO: make TS-friendly. move the option-processing into this plugin
|
||||||
|
BootstrapTheme.prototype.iconOverrideCustomButtonOption = 'bootstrapFontAwesome';
|
||||||
|
BootstrapTheme.prototype.iconOverridePrefix = 'fa-';
|
||||||
|
|
||||||
|
var css_248z = ".fc-theme-bootstrap a:not([href]){color:inherit}.fc-theme-bootstrap .fc-more-link:hover{text-decoration:none}";
|
||||||
|
internal$1.injectStyles(css_248z);
|
||||||
|
|
||||||
|
var plugin = core.createPlugin({
|
||||||
|
name: '@fullcalendar/bootstrap',
|
||||||
|
themeClasses: {
|
||||||
|
bootstrap: BootstrapTheme,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
var internal = {
|
||||||
|
__proto__: null,
|
||||||
|
BootstrapTheme: BootstrapTheme
|
||||||
|
};
|
||||||
|
|
||||||
|
core.globalPlugins.push(plugin);
|
||||||
|
|
||||||
|
exports.Internal = internal;
|
||||||
|
exports["default"] = plugin;
|
||||||
|
|
||||||
|
Object.defineProperty(exports, '__esModule', { value: true });
|
||||||
|
|
||||||
|
return exports;
|
||||||
|
|
||||||
|
})({}, FullCalendar, FullCalendar.Internal);
|
||||||
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/bootstrap4/index.global.min.js
vendored
Normal file
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/bootstrap4/index.global.min.js
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Bootstrap 4 Plugin v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io/docs/bootstrap4
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
FullCalendar.Bootstrap=function(e,t,o){"use strict";class r extends o.Theme{}r.prototype.classes={root:"fc-theme-bootstrap",table:"table-bordered",tableCellShaded:"table-active",buttonGroup:"btn-group",button:"btn btn-primary",buttonActive:"active",popover:"popover",popoverHeader:"popover-header",popoverContent:"popover-body"},r.prototype.baseIconClass="fa",r.prototype.iconClasses={close:"fa-times",prev:"fa-chevron-left",next:"fa-chevron-right",prevYear:"fa-angle-double-left",nextYear:"fa-angle-double-right"},r.prototype.rtlIconClasses={prev:"fa-chevron-right",next:"fa-chevron-left",prevYear:"fa-angle-double-right",nextYear:"fa-angle-double-left"},r.prototype.iconOverrideOption="bootstrapFontAwesome",r.prototype.iconOverrideCustomButtonOption="bootstrapFontAwesome",r.prototype.iconOverridePrefix="fa-";o.injectStyles(".fc-theme-bootstrap a:not([href]){color:inherit}.fc-theme-bootstrap .fc-more-link:hover{text-decoration:none}");var a=t.createPlugin({name:"@fullcalendar/bootstrap",themeClasses:{bootstrap:r}}),n={__proto__:null,BootstrapTheme:r};return t.globalPlugins.push(a),e.Internal=n,e.default=a,Object.defineProperty(e,"__esModule",{value:!0}),e}({},FullCalendar,FullCalendar.Internal);
|
||||||
64
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/bootstrap5/index.global.js
vendored
Normal file
64
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/bootstrap5/index.global.js
vendored
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Bootstrap 5 Plugin v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io/docs/bootstrap5
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
FullCalendar.Bootstrap5 = (function (exports, core, internal$1) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
class BootstrapTheme extends internal$1.Theme {
|
||||||
|
}
|
||||||
|
BootstrapTheme.prototype.classes = {
|
||||||
|
root: 'fc-theme-bootstrap5',
|
||||||
|
tableCellShaded: 'fc-theme-bootstrap5-shaded',
|
||||||
|
buttonGroup: 'btn-group',
|
||||||
|
button: 'btn btn-primary',
|
||||||
|
buttonActive: 'active',
|
||||||
|
popover: 'popover',
|
||||||
|
popoverHeader: 'popover-header',
|
||||||
|
popoverContent: 'popover-body',
|
||||||
|
};
|
||||||
|
BootstrapTheme.prototype.baseIconClass = 'bi';
|
||||||
|
BootstrapTheme.prototype.iconClasses = {
|
||||||
|
close: 'bi-x-lg',
|
||||||
|
prev: 'bi-chevron-left',
|
||||||
|
next: 'bi-chevron-right',
|
||||||
|
prevYear: 'bi-chevron-double-left',
|
||||||
|
nextYear: 'bi-chevron-double-right',
|
||||||
|
};
|
||||||
|
BootstrapTheme.prototype.rtlIconClasses = {
|
||||||
|
prev: 'bi-chevron-right',
|
||||||
|
next: 'bi-chevron-left',
|
||||||
|
prevYear: 'bi-chevron-double-right',
|
||||||
|
nextYear: 'bi-chevron-double-left',
|
||||||
|
};
|
||||||
|
// wtf
|
||||||
|
BootstrapTheme.prototype.iconOverrideOption = 'buttonIcons'; // TODO: make TS-friendly
|
||||||
|
BootstrapTheme.prototype.iconOverrideCustomButtonOption = 'icon';
|
||||||
|
BootstrapTheme.prototype.iconOverridePrefix = 'bi-';
|
||||||
|
|
||||||
|
var css_248z = ".fc-theme-bootstrap5 a:not([href]){color:inherit;text-decoration:inherit}.fc-theme-bootstrap5 .fc-list,.fc-theme-bootstrap5 .fc-scrollgrid,.fc-theme-bootstrap5 td,.fc-theme-bootstrap5 th{border:1px solid var(--bs-gray-400)}.fc-theme-bootstrap5 .fc-scrollgrid{border-bottom-width:0;border-right-width:0}.fc-theme-bootstrap5-shaded{background-color:var(--bs-gray-200)}";
|
||||||
|
internal$1.injectStyles(css_248z);
|
||||||
|
|
||||||
|
var plugin = core.createPlugin({
|
||||||
|
name: '@fullcalendar/bootstrap5',
|
||||||
|
themeClasses: {
|
||||||
|
bootstrap5: BootstrapTheme,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
var internal = {
|
||||||
|
__proto__: null,
|
||||||
|
BootstrapTheme: BootstrapTheme
|
||||||
|
};
|
||||||
|
|
||||||
|
core.globalPlugins.push(plugin);
|
||||||
|
|
||||||
|
exports.Internal = internal;
|
||||||
|
exports["default"] = plugin;
|
||||||
|
|
||||||
|
Object.defineProperty(exports, '__esModule', { value: true });
|
||||||
|
|
||||||
|
return exports;
|
||||||
|
|
||||||
|
})({}, FullCalendar, FullCalendar.Internal);
|
||||||
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/bootstrap5/index.global.min.js
vendored
Normal file
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/bootstrap5/index.global.min.js
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Bootstrap 5 Plugin v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io/docs/bootstrap5
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
FullCalendar.Bootstrap5=function(e,t,o){"use strict";class r extends o.Theme{}r.prototype.classes={root:"fc-theme-bootstrap5",tableCellShaded:"fc-theme-bootstrap5-shaded",buttonGroup:"btn-group",button:"btn btn-primary",buttonActive:"active",popover:"popover",popoverHeader:"popover-header",popoverContent:"popover-body"},r.prototype.baseIconClass="bi",r.prototype.iconClasses={close:"bi-x-lg",prev:"bi-chevron-left",next:"bi-chevron-right",prevYear:"bi-chevron-double-left",nextYear:"bi-chevron-double-right"},r.prototype.rtlIconClasses={prev:"bi-chevron-right",next:"bi-chevron-left",prevYear:"bi-chevron-double-right",nextYear:"bi-chevron-double-left"},r.prototype.iconOverrideOption="buttonIcons",r.prototype.iconOverrideCustomButtonOption="icon",r.prototype.iconOverridePrefix="bi-";o.injectStyles(".fc-theme-bootstrap5 a:not([href]){color:inherit;text-decoration:inherit}.fc-theme-bootstrap5 .fc-list,.fc-theme-bootstrap5 .fc-scrollgrid,.fc-theme-bootstrap5 td,.fc-theme-bootstrap5 th{border:1px solid var(--bs-gray-400)}.fc-theme-bootstrap5 .fc-scrollgrid{border-bottom-width:0;border-right-width:0}.fc-theme-bootstrap5-shaded{background-color:var(--bs-gray-200)}");var a=t.createPlugin({name:"@fullcalendar/bootstrap5",themeClasses:{bootstrap5:r}}),n={__proto__:null,BootstrapTheme:r};return t.globalPlugins.push(a),e.Internal=n,e.default=a,Object.defineProperty(e,"__esModule",{value:!0}),e}({},FullCalendar,FullCalendar.Internal);
|
||||||
9929
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/index.global.js
vendored
Normal file
9929
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/index.global.js
vendored
Normal file
File diff suppressed because one or more lines are too long
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/index.global.min.js
vendored
Normal file
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/index.global.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1933
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales-all.global.js
vendored
Normal file
1933
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales-all.global.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales-all.global.min.js
vendored
Normal file
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales-all.global.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
32
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/af.global.js
vendored
Normal file
32
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/af.global.js
vendored
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
(function (index_js) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var locale = {
|
||||||
|
code: 'af',
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4, // Die week wat die 4de Januarie bevat is die eerste week van die jaar.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: 'Vorige',
|
||||||
|
next: 'Volgende',
|
||||||
|
today: 'Vandag',
|
||||||
|
year: 'Jaar',
|
||||||
|
month: 'Maand',
|
||||||
|
week: 'Week',
|
||||||
|
day: 'Dag',
|
||||||
|
list: 'Agenda',
|
||||||
|
},
|
||||||
|
allDayText: 'Heeldag',
|
||||||
|
moreLinkText: 'Addisionele',
|
||||||
|
noEventsText: 'Daar is geen gebeurtenisse nie',
|
||||||
|
};
|
||||||
|
|
||||||
|
index_js.globalLocales.push(locale);
|
||||||
|
|
||||||
|
})(FullCalendar);
|
||||||
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/af.global.min.js
vendored
Normal file
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/af.global.min.js
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
!function(e){"use strict";FullCalendar.globalLocales.push({code:"af",week:{dow:1,doy:4},buttonText:{prev:"Vorige",next:"Volgende",today:"Vandag",year:"Jaar",month:"Maand",week:"Week",day:"Dag",list:"Agenda"},allDayText:"Heeldag",moreLinkText:"Addisionele",noEventsText:"Daar is geen gebeurtenisse nie"})}();
|
||||||
34
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/ar-dz.global.js
vendored
Normal file
34
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/ar-dz.global.js
vendored
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
(function (index_js) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var locale = {
|
||||||
|
code: 'ar-dz',
|
||||||
|
week: {
|
||||||
|
dow: 0,
|
||||||
|
doy: 4, // The week that contains Jan 1st is the first week of the year.
|
||||||
|
},
|
||||||
|
direction: 'rtl',
|
||||||
|
buttonText: {
|
||||||
|
prev: 'السابق',
|
||||||
|
next: 'التالي',
|
||||||
|
today: 'اليوم',
|
||||||
|
year: 'سنة',
|
||||||
|
month: 'شهر',
|
||||||
|
week: 'أسبوع',
|
||||||
|
day: 'يوم',
|
||||||
|
list: 'أجندة',
|
||||||
|
},
|
||||||
|
weekText: 'أسبوع',
|
||||||
|
allDayText: 'اليوم كله',
|
||||||
|
moreLinkText: 'أخرى',
|
||||||
|
noEventsText: 'أي أحداث لعرض',
|
||||||
|
};
|
||||||
|
|
||||||
|
index_js.globalLocales.push(locale);
|
||||||
|
|
||||||
|
})(FullCalendar);
|
||||||
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/ar-dz.global.min.js
vendored
Normal file
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/ar-dz.global.min.js
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
!function(e){"use strict";FullCalendar.globalLocales.push({code:"ar-dz",week:{dow:0,doy:4},direction:"rtl",buttonText:{prev:"السابق",next:"التالي",today:"اليوم",year:"سنة",month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},weekText:"أسبوع",allDayText:"اليوم كله",moreLinkText:"أخرى",noEventsText:"أي أحداث لعرض"})}();
|
||||||
34
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/ar-kw.global.js
vendored
Normal file
34
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/ar-kw.global.js
vendored
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
(function (index_js) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var locale = {
|
||||||
|
code: 'ar-kw',
|
||||||
|
week: {
|
||||||
|
dow: 0,
|
||||||
|
doy: 12, // The week that contains Jan 1st is the first week of the year.
|
||||||
|
},
|
||||||
|
direction: 'rtl',
|
||||||
|
buttonText: {
|
||||||
|
prev: 'السابق',
|
||||||
|
next: 'التالي',
|
||||||
|
today: 'اليوم',
|
||||||
|
year: 'سنة',
|
||||||
|
month: 'شهر',
|
||||||
|
week: 'أسبوع',
|
||||||
|
day: 'يوم',
|
||||||
|
list: 'أجندة',
|
||||||
|
},
|
||||||
|
weekText: 'أسبوع',
|
||||||
|
allDayText: 'اليوم كله',
|
||||||
|
moreLinkText: 'أخرى',
|
||||||
|
noEventsText: 'أي أحداث لعرض',
|
||||||
|
};
|
||||||
|
|
||||||
|
index_js.globalLocales.push(locale);
|
||||||
|
|
||||||
|
})(FullCalendar);
|
||||||
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/ar-kw.global.min.js
vendored
Normal file
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/ar-kw.global.min.js
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
!function(e){"use strict";FullCalendar.globalLocales.push({code:"ar-kw",week:{dow:0,doy:12},direction:"rtl",buttonText:{prev:"السابق",next:"التالي",today:"اليوم",year:"سنة",month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},weekText:"أسبوع",allDayText:"اليوم كله",moreLinkText:"أخرى",noEventsText:"أي أحداث لعرض"})}();
|
||||||
34
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/ar-ly.global.js
vendored
Normal file
34
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/ar-ly.global.js
vendored
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
(function (index_js) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var locale = {
|
||||||
|
code: 'ar-ly',
|
||||||
|
week: {
|
||||||
|
dow: 6,
|
||||||
|
doy: 12, // The week that contains Jan 1st is the first week of the year.
|
||||||
|
},
|
||||||
|
direction: 'rtl',
|
||||||
|
buttonText: {
|
||||||
|
prev: 'السابق',
|
||||||
|
next: 'التالي',
|
||||||
|
today: 'اليوم',
|
||||||
|
year: 'سنة',
|
||||||
|
month: 'شهر',
|
||||||
|
week: 'أسبوع',
|
||||||
|
day: 'يوم',
|
||||||
|
list: 'أجندة',
|
||||||
|
},
|
||||||
|
weekText: 'أسبوع',
|
||||||
|
allDayText: 'اليوم كله',
|
||||||
|
moreLinkText: 'أخرى',
|
||||||
|
noEventsText: 'أي أحداث لعرض',
|
||||||
|
};
|
||||||
|
|
||||||
|
index_js.globalLocales.push(locale);
|
||||||
|
|
||||||
|
})(FullCalendar);
|
||||||
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/ar-ly.global.min.js
vendored
Normal file
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/ar-ly.global.min.js
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
!function(e){"use strict";FullCalendar.globalLocales.push({code:"ar-ly",week:{dow:6,doy:12},direction:"rtl",buttonText:{prev:"السابق",next:"التالي",today:"اليوم",year:"سنة",month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},weekText:"أسبوع",allDayText:"اليوم كله",moreLinkText:"أخرى",noEventsText:"أي أحداث لعرض"})}();
|
||||||
34
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/ar-ma.global.js
vendored
Normal file
34
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/ar-ma.global.js
vendored
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
(function (index_js) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var locale = {
|
||||||
|
code: 'ar-ma',
|
||||||
|
week: {
|
||||||
|
dow: 6,
|
||||||
|
doy: 12, // The week that contains Jan 1st is the first week of the year.
|
||||||
|
},
|
||||||
|
direction: 'rtl',
|
||||||
|
buttonText: {
|
||||||
|
prev: 'السابق',
|
||||||
|
next: 'التالي',
|
||||||
|
today: 'اليوم',
|
||||||
|
year: 'سنة',
|
||||||
|
month: 'شهر',
|
||||||
|
week: 'أسبوع',
|
||||||
|
day: 'يوم',
|
||||||
|
list: 'أجندة',
|
||||||
|
},
|
||||||
|
weekText: 'أسبوع',
|
||||||
|
allDayText: 'اليوم كله',
|
||||||
|
moreLinkText: 'أخرى',
|
||||||
|
noEventsText: 'أي أحداث لعرض',
|
||||||
|
};
|
||||||
|
|
||||||
|
index_js.globalLocales.push(locale);
|
||||||
|
|
||||||
|
})(FullCalendar);
|
||||||
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/ar-ma.global.min.js
vendored
Normal file
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/ar-ma.global.min.js
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
!function(e){"use strict";FullCalendar.globalLocales.push({code:"ar-ma",week:{dow:6,doy:12},direction:"rtl",buttonText:{prev:"السابق",next:"التالي",today:"اليوم",year:"سنة",month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},weekText:"أسبوع",allDayText:"اليوم كله",moreLinkText:"أخرى",noEventsText:"أي أحداث لعرض"})}();
|
||||||
34
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/ar-sa.global.js
vendored
Normal file
34
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/ar-sa.global.js
vendored
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
(function (index_js) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var locale = {
|
||||||
|
code: 'ar-sa',
|
||||||
|
week: {
|
||||||
|
dow: 0,
|
||||||
|
doy: 6, // The week that contains Jan 1st is the first week of the year.
|
||||||
|
},
|
||||||
|
direction: 'rtl',
|
||||||
|
buttonText: {
|
||||||
|
prev: 'السابق',
|
||||||
|
next: 'التالي',
|
||||||
|
today: 'اليوم',
|
||||||
|
year: 'سنة',
|
||||||
|
month: 'شهر',
|
||||||
|
week: 'أسبوع',
|
||||||
|
day: 'يوم',
|
||||||
|
list: 'أجندة',
|
||||||
|
},
|
||||||
|
weekText: 'أسبوع',
|
||||||
|
allDayText: 'اليوم كله',
|
||||||
|
moreLinkText: 'أخرى',
|
||||||
|
noEventsText: 'أي أحداث لعرض',
|
||||||
|
};
|
||||||
|
|
||||||
|
index_js.globalLocales.push(locale);
|
||||||
|
|
||||||
|
})(FullCalendar);
|
||||||
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/ar-sa.global.min.js
vendored
Normal file
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/ar-sa.global.min.js
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
!function(e){"use strict";FullCalendar.globalLocales.push({code:"ar-sa",week:{dow:0,doy:6},direction:"rtl",buttonText:{prev:"السابق",next:"التالي",today:"اليوم",year:"سنة",month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},weekText:"أسبوع",allDayText:"اليوم كله",moreLinkText:"أخرى",noEventsText:"أي أحداث لعرض"})}();
|
||||||
34
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/ar-tn.global.js
vendored
Normal file
34
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/ar-tn.global.js
vendored
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
(function (index_js) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var locale = {
|
||||||
|
code: 'ar-tn',
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
direction: 'rtl',
|
||||||
|
buttonText: {
|
||||||
|
prev: 'السابق',
|
||||||
|
next: 'التالي',
|
||||||
|
today: 'اليوم',
|
||||||
|
year: 'سنة',
|
||||||
|
month: 'شهر',
|
||||||
|
week: 'أسبوع',
|
||||||
|
day: 'يوم',
|
||||||
|
list: 'أجندة',
|
||||||
|
},
|
||||||
|
weekText: 'أسبوع',
|
||||||
|
allDayText: 'اليوم كله',
|
||||||
|
moreLinkText: 'أخرى',
|
||||||
|
noEventsText: 'أي أحداث لعرض',
|
||||||
|
};
|
||||||
|
|
||||||
|
index_js.globalLocales.push(locale);
|
||||||
|
|
||||||
|
})(FullCalendar);
|
||||||
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/ar-tn.global.min.js
vendored
Normal file
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/ar-tn.global.min.js
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
!function(e){"use strict";FullCalendar.globalLocales.push({code:"ar-tn",week:{dow:1,doy:4},direction:"rtl",buttonText:{prev:"السابق",next:"التالي",today:"اليوم",year:"سنة",month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},weekText:"أسبوع",allDayText:"اليوم كله",moreLinkText:"أخرى",noEventsText:"أي أحداث لعرض"})}();
|
||||||
34
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/ar.global.js
vendored
Normal file
34
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/ar.global.js
vendored
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
(function (index_js) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var locale = {
|
||||||
|
code: 'ar',
|
||||||
|
week: {
|
||||||
|
dow: 6,
|
||||||
|
doy: 12, // The week that contains Jan 1st is the first week of the year.
|
||||||
|
},
|
||||||
|
direction: 'rtl',
|
||||||
|
buttonText: {
|
||||||
|
prev: 'السابق',
|
||||||
|
next: 'التالي',
|
||||||
|
today: 'اليوم',
|
||||||
|
year: 'سنة',
|
||||||
|
month: 'شهر',
|
||||||
|
week: 'أسبوع',
|
||||||
|
day: 'يوم',
|
||||||
|
list: 'أجندة',
|
||||||
|
},
|
||||||
|
weekText: 'أسبوع',
|
||||||
|
allDayText: 'اليوم كله',
|
||||||
|
moreLinkText: 'أخرى',
|
||||||
|
noEventsText: 'أي أحداث لعرض',
|
||||||
|
};
|
||||||
|
|
||||||
|
index_js.globalLocales.push(locale);
|
||||||
|
|
||||||
|
})(FullCalendar);
|
||||||
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/ar.global.min.js
vendored
Normal file
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/ar.global.min.js
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
!function(e){"use strict";FullCalendar.globalLocales.push({code:"ar",week:{dow:6,doy:12},direction:"rtl",buttonText:{prev:"السابق",next:"التالي",today:"اليوم",year:"سنة",month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},weekText:"أسبوع",allDayText:"اليوم كله",moreLinkText:"أخرى",noEventsText:"أي أحداث لعرض"})}();
|
||||||
35
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/az.global.js
vendored
Normal file
35
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/az.global.js
vendored
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
(function (index_js) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var locale = {
|
||||||
|
code: 'az',
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: 'Əvvəl',
|
||||||
|
next: 'Sonra',
|
||||||
|
today: 'Bu Gün',
|
||||||
|
year: 'Il',
|
||||||
|
month: 'Ay',
|
||||||
|
week: 'Həftə',
|
||||||
|
day: 'Gün',
|
||||||
|
list: 'Gündəm',
|
||||||
|
},
|
||||||
|
weekText: 'Həftə',
|
||||||
|
allDayText: 'Bütün Gün',
|
||||||
|
moreLinkText(n) {
|
||||||
|
return '+ daha çox ' + n;
|
||||||
|
},
|
||||||
|
noEventsText: 'Göstərmək üçün hadisə yoxdur',
|
||||||
|
};
|
||||||
|
|
||||||
|
index_js.globalLocales.push(locale);
|
||||||
|
|
||||||
|
})(FullCalendar);
|
||||||
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/az.global.min.js
vendored
Normal file
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/az.global.min.js
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
!function(e){"use strict";var t={code:"az",week:{dow:1,doy:4},buttonText:{prev:"Əvvəl",next:"Sonra",today:"Bu Gün",year:"Il",month:"Ay",week:"Həftə",day:"Gün",list:"Gündəm"},weekText:"Həftə",allDayText:"Bütün Gün",moreLinkText:e=>"+ daha çox "+e,noEventsText:"Göstərmək üçün hadisə yoxdur"};FullCalendar.globalLocales.push(t)}();
|
||||||
34
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/bg.global.js
vendored
Normal file
34
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/bg.global.js
vendored
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
(function (index_js) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var locale = {
|
||||||
|
code: 'bg',
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: 'назад',
|
||||||
|
next: 'напред',
|
||||||
|
today: 'днес',
|
||||||
|
year: 'година',
|
||||||
|
month: 'Месец',
|
||||||
|
week: 'Седмица',
|
||||||
|
day: 'Ден',
|
||||||
|
list: 'График',
|
||||||
|
},
|
||||||
|
allDayText: 'Цял ден',
|
||||||
|
moreLinkText(n) {
|
||||||
|
return '+още ' + n;
|
||||||
|
},
|
||||||
|
noEventsText: 'Няма събития за показване',
|
||||||
|
};
|
||||||
|
|
||||||
|
index_js.globalLocales.push(locale);
|
||||||
|
|
||||||
|
})(FullCalendar);
|
||||||
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/bg.global.min.js
vendored
Normal file
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/bg.global.min.js
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
!function(e){"use strict";var t={code:"bg",week:{dow:1,doy:4},buttonText:{prev:"назад",next:"напред",today:"днес",year:"година",month:"Месец",week:"Седмица",day:"Ден",list:"График"},allDayText:"Цял ден",moreLinkText:e=>"+още "+e,noEventsText:"Няма събития за показване"};FullCalendar.globalLocales.push(t)}();
|
||||||
35
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/bn.global.js
vendored
Normal file
35
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/bn.global.js
vendored
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
(function (index_js) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var locale = {
|
||||||
|
code: 'bn',
|
||||||
|
week: {
|
||||||
|
dow: 0,
|
||||||
|
doy: 6, // The week that contains Jan 1st is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: 'পেছনে',
|
||||||
|
next: 'সামনে',
|
||||||
|
today: 'আজ',
|
||||||
|
year: 'বছর',
|
||||||
|
month: 'মাস',
|
||||||
|
week: 'সপ্তাহ',
|
||||||
|
day: 'দিন',
|
||||||
|
list: 'তালিকা',
|
||||||
|
},
|
||||||
|
weekText: 'সপ্তাহ',
|
||||||
|
allDayText: 'সারাদিন',
|
||||||
|
moreLinkText(n) {
|
||||||
|
return '+অন্যান্য ' + n;
|
||||||
|
},
|
||||||
|
noEventsText: 'কোনো ইভেন্ট নেই',
|
||||||
|
};
|
||||||
|
|
||||||
|
index_js.globalLocales.push(locale);
|
||||||
|
|
||||||
|
})(FullCalendar);
|
||||||
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/bn.global.min.js
vendored
Normal file
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/bn.global.min.js
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
!function(e){"use strict";var t={code:"bn",week:{dow:0,doy:6},buttonText:{prev:"পেছনে",next:"সামনে",today:"আজ",year:"বছর",month:"মাস",week:"সপ্তাহ",day:"দিন",list:"তালিকা"},weekText:"সপ্তাহ",allDayText:"সারাদিন",moreLinkText:e=>"+অন্যান্য "+e,noEventsText:"কোনো ইভেন্ট নেই"};FullCalendar.globalLocales.push(t)}();
|
||||||
35
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/bs.global.js
vendored
Normal file
35
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/bs.global.js
vendored
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
(function (index_js) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var locale = {
|
||||||
|
code: 'bs',
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 7, // The week that contains Jan 1st is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: 'Prošli',
|
||||||
|
next: 'Sljedeći',
|
||||||
|
today: 'Danas',
|
||||||
|
year: 'Godina',
|
||||||
|
month: 'Mjesec',
|
||||||
|
week: 'Sedmica',
|
||||||
|
day: 'Dan',
|
||||||
|
list: 'Raspored',
|
||||||
|
},
|
||||||
|
weekText: 'Sed',
|
||||||
|
allDayText: 'Cijeli dan',
|
||||||
|
moreLinkText(n) {
|
||||||
|
return '+ još ' + n;
|
||||||
|
},
|
||||||
|
noEventsText: 'Nema događaja za prikazivanje',
|
||||||
|
};
|
||||||
|
|
||||||
|
index_js.globalLocales.push(locale);
|
||||||
|
|
||||||
|
})(FullCalendar);
|
||||||
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/bs.global.min.js
vendored
Normal file
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/bs.global.min.js
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
!function(e){"use strict";var a={code:"bs",week:{dow:1,doy:7},buttonText:{prev:"Prošli",next:"Sljedeći",today:"Danas",year:"Godina",month:"Mjesec",week:"Sedmica",day:"Dan",list:"Raspored"},weekText:"Sed",allDayText:"Cijeli dan",moreLinkText:e=>"+ još "+e,noEventsText:"Nema događaja za prikazivanje"};FullCalendar.globalLocales.push(a)}();
|
||||||
33
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/ca.global.js
vendored
Normal file
33
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/ca.global.js
vendored
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
(function (index_js) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var locale = {
|
||||||
|
code: 'ca',
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: 'Anterior',
|
||||||
|
next: 'Següent',
|
||||||
|
today: 'Avui',
|
||||||
|
year: 'Any',
|
||||||
|
month: 'Mes',
|
||||||
|
week: 'Setmana',
|
||||||
|
day: 'Dia',
|
||||||
|
list: 'Agenda',
|
||||||
|
},
|
||||||
|
weekText: 'Set',
|
||||||
|
allDayText: 'Tot el dia',
|
||||||
|
moreLinkText: 'més',
|
||||||
|
noEventsText: 'No hi ha esdeveniments per mostrar',
|
||||||
|
};
|
||||||
|
|
||||||
|
index_js.globalLocales.push(locale);
|
||||||
|
|
||||||
|
})(FullCalendar);
|
||||||
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/ca.global.min.js
vendored
Normal file
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/ca.global.min.js
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
!function(e){"use strict";FullCalendar.globalLocales.push({code:"ca",week:{dow:1,doy:4},buttonText:{prev:"Anterior",next:"Següent",today:"Avui",year:"Any",month:"Mes",week:"Setmana",day:"Dia",list:"Agenda"},weekText:"Set",allDayText:"Tot el dia",moreLinkText:"més",noEventsText:"No hi ha esdeveniments per mostrar"})}();
|
||||||
35
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/cs.global.js
vendored
Normal file
35
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/cs.global.js
vendored
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
(function (index_js) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var locale = {
|
||||||
|
code: 'cs',
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: 'Dříve',
|
||||||
|
next: 'Později',
|
||||||
|
today: 'Nyní',
|
||||||
|
year: 'Rok',
|
||||||
|
month: 'Měsíc',
|
||||||
|
week: 'Týden',
|
||||||
|
day: 'Den',
|
||||||
|
list: 'Agenda',
|
||||||
|
},
|
||||||
|
weekText: 'Týd',
|
||||||
|
allDayText: 'Celý den',
|
||||||
|
moreLinkText(n) {
|
||||||
|
return '+další: ' + n;
|
||||||
|
},
|
||||||
|
noEventsText: 'Žádné akce k zobrazení',
|
||||||
|
};
|
||||||
|
|
||||||
|
index_js.globalLocales.push(locale);
|
||||||
|
|
||||||
|
})(FullCalendar);
|
||||||
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/cs.global.min.js
vendored
Normal file
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/cs.global.min.js
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
!function(e){"use strict";var n={code:"cs",week:{dow:1,doy:4},buttonText:{prev:"Dříve",next:"Později",today:"Nyní",year:"Rok",month:"Měsíc",week:"Týden",day:"Den",list:"Agenda"},weekText:"Týd",allDayText:"Celý den",moreLinkText:e=>"+další: "+e,noEventsText:"Žádné akce k zobrazení"};FullCalendar.globalLocales.push(n)}();
|
||||||
33
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/cy.global.js
vendored
Normal file
33
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/cy.global.js
vendored
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
(function (index_js) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var locale = {
|
||||||
|
code: 'cy',
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: 'Blaenorol',
|
||||||
|
next: 'Nesaf',
|
||||||
|
today: 'Heddiw',
|
||||||
|
year: 'Blwyddyn',
|
||||||
|
month: 'Mis',
|
||||||
|
week: 'Wythnos',
|
||||||
|
day: 'Dydd',
|
||||||
|
list: 'Rhestr',
|
||||||
|
},
|
||||||
|
weekText: 'Wythnos',
|
||||||
|
allDayText: 'Trwy\'r dydd',
|
||||||
|
moreLinkText: 'Mwy',
|
||||||
|
noEventsText: 'Dim digwyddiadau',
|
||||||
|
};
|
||||||
|
|
||||||
|
index_js.globalLocales.push(locale);
|
||||||
|
|
||||||
|
})(FullCalendar);
|
||||||
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/cy.global.min.js
vendored
Normal file
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/cy.global.min.js
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
!function(e){"use strict";FullCalendar.globalLocales.push({code:"cy",week:{dow:1,doy:4},buttonText:{prev:"Blaenorol",next:"Nesaf",today:"Heddiw",year:"Blwyddyn",month:"Mis",week:"Wythnos",day:"Dydd",list:"Rhestr"},weekText:"Wythnos",allDayText:"Trwy'r dydd",moreLinkText:"Mwy",noEventsText:"Dim digwyddiadau"})}();
|
||||||
33
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/da.global.js
vendored
Normal file
33
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/da.global.js
vendored
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
(function (index_js) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var locale = {
|
||||||
|
code: 'da',
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: 'Forrige',
|
||||||
|
next: 'Næste',
|
||||||
|
today: 'I dag',
|
||||||
|
year: 'År',
|
||||||
|
month: 'Måned',
|
||||||
|
week: 'Uge',
|
||||||
|
day: 'Dag',
|
||||||
|
list: 'Agenda',
|
||||||
|
},
|
||||||
|
weekText: 'Uge',
|
||||||
|
allDayText: 'Hele dagen',
|
||||||
|
moreLinkText: 'flere',
|
||||||
|
noEventsText: 'Ingen arrangementer at vise',
|
||||||
|
};
|
||||||
|
|
||||||
|
index_js.globalLocales.push(locale);
|
||||||
|
|
||||||
|
})(FullCalendar);
|
||||||
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/da.global.min.js
vendored
Normal file
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/da.global.min.js
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
!function(e){"use strict";FullCalendar.globalLocales.push({code:"da",week:{dow:1,doy:4},buttonText:{prev:"Forrige",next:"Næste",today:"I dag",year:"År",month:"Måned",week:"Uge",day:"Dag",list:"Agenda"},weekText:"Uge",allDayText:"Hele dagen",moreLinkText:"flere",noEventsText:"Ingen arrangementer at vise"})}();
|
||||||
69
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/de-at.global.js
vendored
Normal file
69
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/de-at.global.js
vendored
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
(function (index_js) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
function affix(buttonText) {
|
||||||
|
return (buttonText === 'Tag' || buttonText === 'Monat') ? 'r' :
|
||||||
|
buttonText === 'Jahr' ? 's' : '';
|
||||||
|
}
|
||||||
|
var locale = {
|
||||||
|
code: 'de-at',
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: 'Zurück',
|
||||||
|
next: 'Vor',
|
||||||
|
today: 'Heute',
|
||||||
|
year: 'Jahr',
|
||||||
|
month: 'Monat',
|
||||||
|
week: 'Woche',
|
||||||
|
day: 'Tag',
|
||||||
|
list: 'Terminübersicht',
|
||||||
|
},
|
||||||
|
weekText: 'KW',
|
||||||
|
weekTextLong: 'Woche',
|
||||||
|
allDayText: 'Ganztägig',
|
||||||
|
moreLinkText(n) {
|
||||||
|
return '+ weitere ' + n;
|
||||||
|
},
|
||||||
|
noEventsText: 'Keine Ereignisse anzuzeigen',
|
||||||
|
buttonHints: {
|
||||||
|
prev(buttonText) {
|
||||||
|
return `Vorherige${affix(buttonText)} ${buttonText}`;
|
||||||
|
},
|
||||||
|
next(buttonText) {
|
||||||
|
return `Nächste${affix(buttonText)} ${buttonText}`;
|
||||||
|
},
|
||||||
|
today(buttonText) {
|
||||||
|
// → Heute, Diese Woche, Dieser Monat, Dieses Jahr
|
||||||
|
if (buttonText === 'Tag') {
|
||||||
|
return 'Heute';
|
||||||
|
}
|
||||||
|
return `Diese${affix(buttonText)} ${buttonText}`;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
viewHint(buttonText) {
|
||||||
|
// → Tagesansicht, Wochenansicht, Monatsansicht, Jahresansicht
|
||||||
|
const glue = buttonText === 'Woche' ? 'n' : buttonText === 'Monat' ? 's' : 'es';
|
||||||
|
return buttonText + glue + 'ansicht';
|
||||||
|
},
|
||||||
|
navLinkHint: 'Gehe zu $0',
|
||||||
|
moreLinkHint(eventCnt) {
|
||||||
|
return 'Zeige ' + (eventCnt === 1 ?
|
||||||
|
'ein weiteres Ereignis' :
|
||||||
|
eventCnt + ' weitere Ereignisse');
|
||||||
|
},
|
||||||
|
closeHint: 'Schließen',
|
||||||
|
timeHint: 'Uhrzeit',
|
||||||
|
eventHint: 'Ereignis',
|
||||||
|
};
|
||||||
|
|
||||||
|
index_js.globalLocales.push(locale);
|
||||||
|
|
||||||
|
})(FullCalendar);
|
||||||
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/de-at.global.min.js
vendored
Normal file
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/de-at.global.min.js
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
!function(e){"use strict";function t(e){return"Tag"===e||"Monat"===e?"r":"Jahr"===e?"s":""}var n={code:"de-at",week:{dow:1,doy:4},buttonText:{prev:"Zurück",next:"Vor",today:"Heute",year:"Jahr",month:"Monat",week:"Woche",day:"Tag",list:"Terminübersicht"},weekText:"KW",weekTextLong:"Woche",allDayText:"Ganztägig",moreLinkText:e=>"+ weitere "+e,noEventsText:"Keine Ereignisse anzuzeigen",buttonHints:{prev:e=>`Vorherige${t(e)} ${e}`,next:e=>`Nächste${t(e)} ${e}`,today:e=>"Tag"===e?"Heute":`Diese${t(e)} ${e}`},viewHint:e=>e+("Woche"===e?"n":"Monat"===e?"s":"es")+"ansicht",navLinkHint:"Gehe zu $0",moreLinkHint:e=>"Zeige "+(1===e?"ein weiteres Ereignis":e+" weitere Ereignisse"),closeHint:"Schließen",timeHint:"Uhrzeit",eventHint:"Ereignis"};FullCalendar.globalLocales.push(n)}();
|
||||||
69
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/de.global.js
vendored
Normal file
69
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/de.global.js
vendored
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
(function (index_js) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
function affix(buttonText) {
|
||||||
|
return (buttonText === 'Tag' || buttonText === 'Monat') ? 'r' :
|
||||||
|
buttonText === 'Jahr' ? 's' : '';
|
||||||
|
}
|
||||||
|
var locale = {
|
||||||
|
code: 'de',
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: 'Zurück',
|
||||||
|
next: 'Vor',
|
||||||
|
today: 'Heute',
|
||||||
|
year: 'Jahr',
|
||||||
|
month: 'Monat',
|
||||||
|
week: 'Woche',
|
||||||
|
day: 'Tag',
|
||||||
|
list: 'Terminübersicht',
|
||||||
|
},
|
||||||
|
weekText: 'KW',
|
||||||
|
weekTextLong: 'Woche',
|
||||||
|
allDayText: 'Ganztägig',
|
||||||
|
moreLinkText(n) {
|
||||||
|
return '+ weitere ' + n;
|
||||||
|
},
|
||||||
|
noEventsText: 'Keine Ereignisse anzuzeigen',
|
||||||
|
buttonHints: {
|
||||||
|
prev(buttonText) {
|
||||||
|
return `Vorherige${affix(buttonText)} ${buttonText}`;
|
||||||
|
},
|
||||||
|
next(buttonText) {
|
||||||
|
return `Nächste${affix(buttonText)} ${buttonText}`;
|
||||||
|
},
|
||||||
|
today(buttonText) {
|
||||||
|
// → Heute, Diese Woche, Dieser Monat, Dieses Jahr
|
||||||
|
if (buttonText === 'Tag') {
|
||||||
|
return 'Heute';
|
||||||
|
}
|
||||||
|
return `Diese${affix(buttonText)} ${buttonText}`;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
viewHint(buttonText) {
|
||||||
|
// → Tagesansicht, Wochenansicht, Monatsansicht, Jahresansicht
|
||||||
|
const glue = buttonText === 'Woche' ? 'n' : buttonText === 'Monat' ? 's' : 'es';
|
||||||
|
return buttonText + glue + 'ansicht';
|
||||||
|
},
|
||||||
|
navLinkHint: 'Gehe zu $0',
|
||||||
|
moreLinkHint(eventCnt) {
|
||||||
|
return 'Zeige ' + (eventCnt === 1 ?
|
||||||
|
'ein weiteres Ereignis' :
|
||||||
|
eventCnt + ' weitere Ereignisse');
|
||||||
|
},
|
||||||
|
closeHint: 'Schließen',
|
||||||
|
timeHint: 'Uhrzeit',
|
||||||
|
eventHint: 'Ereignis',
|
||||||
|
};
|
||||||
|
|
||||||
|
index_js.globalLocales.push(locale);
|
||||||
|
|
||||||
|
})(FullCalendar);
|
||||||
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/de.global.min.js
vendored
Normal file
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/de.global.min.js
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
!function(e){"use strict";function t(e){return"Tag"===e||"Monat"===e?"r":"Jahr"===e?"s":""}var n={code:"de",week:{dow:1,doy:4},buttonText:{prev:"Zurück",next:"Vor",today:"Heute",year:"Jahr",month:"Monat",week:"Woche",day:"Tag",list:"Terminübersicht"},weekText:"KW",weekTextLong:"Woche",allDayText:"Ganztägig",moreLinkText:e=>"+ weitere "+e,noEventsText:"Keine Ereignisse anzuzeigen",buttonHints:{prev:e=>`Vorherige${t(e)} ${e}`,next:e=>`Nächste${t(e)} ${e}`,today:e=>"Tag"===e?"Heute":`Diese${t(e)} ${e}`},viewHint:e=>e+("Woche"===e?"n":"Monat"===e?"s":"es")+"ansicht",navLinkHint:"Gehe zu $0",moreLinkHint:e=>"Zeige "+(1===e?"ein weiteres Ereignis":e+" weitere Ereignisse"),closeHint:"Schließen",timeHint:"Uhrzeit",eventHint:"Ereignis"};FullCalendar.globalLocales.push(n)}();
|
||||||
33
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/el.global.js
vendored
Normal file
33
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/el.global.js
vendored
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
(function (index_js) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var locale = {
|
||||||
|
code: 'el',
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4, // The week that contains Jan 4st is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: 'Προηγούμενος',
|
||||||
|
next: 'Επόμενος',
|
||||||
|
today: 'Σήμερα',
|
||||||
|
year: 'Ετος',
|
||||||
|
month: 'Μήνας',
|
||||||
|
week: 'Εβδομάδα',
|
||||||
|
day: 'Ημέρα',
|
||||||
|
list: 'Ατζέντα',
|
||||||
|
},
|
||||||
|
weekText: 'Εβδ',
|
||||||
|
allDayText: 'Ολοήμερο',
|
||||||
|
moreLinkText: 'περισσότερα',
|
||||||
|
noEventsText: 'Δεν υπάρχουν γεγονότα προς εμφάνιση',
|
||||||
|
};
|
||||||
|
|
||||||
|
index_js.globalLocales.push(locale);
|
||||||
|
|
||||||
|
})(FullCalendar);
|
||||||
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/el.global.min.js
vendored
Normal file
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/el.global.min.js
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
!function(e){"use strict";FullCalendar.globalLocales.push({code:"el",week:{dow:1,doy:4},buttonText:{prev:"Προηγούμενος",next:"Επόμενος",today:"Σήμερα",year:"Ετος",month:"Μήνας",week:"Εβδομάδα",day:"Ημέρα",list:"Ατζέντα"},weekText:"Εβδ",allDayText:"Ολοήμερο",moreLinkText:"περισσότερα",noEventsText:"Δεν υπάρχουν γεγονότα προς εμφάνιση"})}();
|
||||||
29
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/en-au.global.js
vendored
Normal file
29
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/en-au.global.js
vendored
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
(function (index_js) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var locale = {
|
||||||
|
code: 'en-au',
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonHints: {
|
||||||
|
prev: 'Previous $0',
|
||||||
|
next: 'Next $0',
|
||||||
|
today: 'This $0',
|
||||||
|
},
|
||||||
|
viewHint: '$0 view',
|
||||||
|
navLinkHint: 'Go to $0',
|
||||||
|
moreLinkHint(eventCnt) {
|
||||||
|
return `Show ${eventCnt} more event${eventCnt === 1 ? '' : 's'}`;
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
index_js.globalLocales.push(locale);
|
||||||
|
|
||||||
|
})(FullCalendar);
|
||||||
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/en-au.global.min.js
vendored
Normal file
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/en-au.global.min.js
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
!function(e){"use strict";var n={code:"en-au",week:{dow:1,doy:4},buttonHints:{prev:"Previous $0",next:"Next $0",today:"This $0"},viewHint:"$0 view",navLinkHint:"Go to $0",moreLinkHint:e=>`Show ${e} more event${1===e?"":"s"}`};FullCalendar.globalLocales.push(n)}();
|
||||||
29
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/en-gb.global.js
vendored
Normal file
29
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/en-gb.global.js
vendored
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
(function (index_js) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var locale = {
|
||||||
|
code: 'en-gb',
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonHints: {
|
||||||
|
prev: 'Previous $0',
|
||||||
|
next: 'Next $0',
|
||||||
|
today: 'This $0',
|
||||||
|
},
|
||||||
|
viewHint: '$0 view',
|
||||||
|
navLinkHint: 'Go to $0',
|
||||||
|
moreLinkHint(eventCnt) {
|
||||||
|
return `Show ${eventCnt} more event${eventCnt === 1 ? '' : 's'}`;
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
index_js.globalLocales.push(locale);
|
||||||
|
|
||||||
|
})(FullCalendar);
|
||||||
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/en-gb.global.min.js
vendored
Normal file
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/en-gb.global.min.js
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
!function(e){"use strict";var n={code:"en-gb",week:{dow:1,doy:4},buttonHints:{prev:"Previous $0",next:"Next $0",today:"This $0"},viewHint:"$0 view",navLinkHint:"Go to $0",moreLinkHint:e=>`Show ${e} more event${1===e?"":"s"}`};FullCalendar.globalLocales.push(n)}();
|
||||||
29
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/en-nz.global.js
vendored
Normal file
29
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/en-nz.global.js
vendored
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
(function (index_js) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var locale = {
|
||||||
|
code: 'en-nz',
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonHints: {
|
||||||
|
prev: 'Previous $0',
|
||||||
|
next: 'Next $0',
|
||||||
|
today: 'This $0',
|
||||||
|
},
|
||||||
|
viewHint: '$0 view',
|
||||||
|
navLinkHint: 'Go to $0',
|
||||||
|
moreLinkHint(eventCnt) {
|
||||||
|
return `Show ${eventCnt} more event${eventCnt === 1 ? '' : 's'}`;
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
index_js.globalLocales.push(locale);
|
||||||
|
|
||||||
|
})(FullCalendar);
|
||||||
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/en-nz.global.min.js
vendored
Normal file
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/en-nz.global.min.js
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
!function(e){"use strict";var n={code:"en-nz",week:{dow:1,doy:4},buttonHints:{prev:"Previous $0",next:"Next $0",today:"This $0"},viewHint:"$0 view",navLinkHint:"Go to $0",moreLinkHint:e=>`Show ${e} more event${1===e?"":"s"}`};FullCalendar.globalLocales.push(n)}();
|
||||||
33
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/eo.global.js
vendored
Normal file
33
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/eo.global.js
vendored
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
(function (index_js) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var locale = {
|
||||||
|
code: 'eo',
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: 'Antaŭa',
|
||||||
|
next: 'Sekva',
|
||||||
|
today: 'Hodiaŭ',
|
||||||
|
year: 'Jaro',
|
||||||
|
month: 'Monato',
|
||||||
|
week: 'Semajno',
|
||||||
|
day: 'Tago',
|
||||||
|
list: 'Tagordo',
|
||||||
|
},
|
||||||
|
weekText: 'Sm',
|
||||||
|
allDayText: 'Tuta tago',
|
||||||
|
moreLinkText: 'pli',
|
||||||
|
noEventsText: 'Neniuj eventoj por montri',
|
||||||
|
};
|
||||||
|
|
||||||
|
index_js.globalLocales.push(locale);
|
||||||
|
|
||||||
|
})(FullCalendar);
|
||||||
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/eo.global.min.js
vendored
Normal file
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/eo.global.min.js
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
!function(e){"use strict";FullCalendar.globalLocales.push({code:"eo",week:{dow:1,doy:4},buttonText:{prev:"Antaŭa",next:"Sekva",today:"Hodiaŭ",year:"Jaro",month:"Monato",week:"Semajno",day:"Tago",list:"Tagordo"},weekText:"Sm",allDayText:"Tuta tago",moreLinkText:"pli",noEventsText:"Neniuj eventoj por montri"})}();
|
||||||
33
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/es-us.global.js
vendored
Normal file
33
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/es-us.global.js
vendored
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
(function (index_js) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var locale = {
|
||||||
|
code: 'es',
|
||||||
|
week: {
|
||||||
|
dow: 0,
|
||||||
|
doy: 6, // The week that contains Jan 1st is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: 'Ant',
|
||||||
|
next: 'Sig',
|
||||||
|
today: 'Hoy',
|
||||||
|
year: 'Año',
|
||||||
|
month: 'Mes',
|
||||||
|
week: 'Semana',
|
||||||
|
day: 'Día',
|
||||||
|
list: 'Agenda',
|
||||||
|
},
|
||||||
|
weekText: 'Sm',
|
||||||
|
allDayText: 'Todo el día',
|
||||||
|
moreLinkText: 'más',
|
||||||
|
noEventsText: 'No hay eventos para mostrar',
|
||||||
|
};
|
||||||
|
|
||||||
|
index_js.globalLocales.push(locale);
|
||||||
|
|
||||||
|
})(FullCalendar);
|
||||||
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/es-us.global.min.js
vendored
Normal file
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/es-us.global.min.js
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
!function(e){"use strict";FullCalendar.globalLocales.push({code:"es",week:{dow:0,doy:6},buttonText:{prev:"Ant",next:"Sig",today:"Hoy",year:"Año",month:"Mes",week:"Semana",day:"Día",list:"Agenda"},weekText:"Sm",allDayText:"Todo el día",moreLinkText:"más",noEventsText:"No hay eventos para mostrar"})}();
|
||||||
52
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/es.global.js
vendored
Normal file
52
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/es.global.js
vendored
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
(function (index_js) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var locale = {
|
||||||
|
code: 'es',
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: 'Ant',
|
||||||
|
next: 'Sig',
|
||||||
|
today: 'Hoy',
|
||||||
|
year: 'Año',
|
||||||
|
month: 'Mes',
|
||||||
|
week: 'Semana',
|
||||||
|
day: 'Día',
|
||||||
|
list: 'Agenda',
|
||||||
|
},
|
||||||
|
buttonHints: {
|
||||||
|
prev: '$0 antes',
|
||||||
|
next: '$0 siguiente',
|
||||||
|
today(buttonText) {
|
||||||
|
return (buttonText === 'Día') ? 'Hoy' :
|
||||||
|
((buttonText === 'Semana') ? 'Esta' : 'Este') + ' ' + buttonText.toLocaleLowerCase();
|
||||||
|
},
|
||||||
|
},
|
||||||
|
viewHint(buttonText) {
|
||||||
|
return 'Vista ' + (buttonText === 'Semana' ? 'de la' : 'del') + ' ' + buttonText.toLocaleLowerCase();
|
||||||
|
},
|
||||||
|
weekText: 'Sm',
|
||||||
|
weekTextLong: 'Semana',
|
||||||
|
allDayText: 'Todo el día',
|
||||||
|
moreLinkText: 'más',
|
||||||
|
moreLinkHint(eventCnt) {
|
||||||
|
return `Mostrar ${eventCnt} eventos más`;
|
||||||
|
},
|
||||||
|
noEventsText: 'No hay eventos para mostrar',
|
||||||
|
navLinkHint: 'Ir al $0',
|
||||||
|
closeHint: 'Cerrar',
|
||||||
|
timeHint: 'La hora',
|
||||||
|
eventHint: 'Evento',
|
||||||
|
};
|
||||||
|
|
||||||
|
index_js.globalLocales.push(locale);
|
||||||
|
|
||||||
|
})(FullCalendar);
|
||||||
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/es.global.min.js
vendored
Normal file
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/es.global.min.js
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
!function(e){"use strict";var t={code:"es",week:{dow:1,doy:4},buttonText:{prev:"Ant",next:"Sig",today:"Hoy",year:"Año",month:"Mes",week:"Semana",day:"Día",list:"Agenda"},buttonHints:{prev:"$0 antes",next:"$0 siguiente",today:e=>"Día"===e?"Hoy":("Semana"===e?"Esta":"Este")+" "+e.toLocaleLowerCase()},viewHint:e=>"Vista "+("Semana"===e?"de la":"del")+" "+e.toLocaleLowerCase(),weekText:"Sm",weekTextLong:"Semana",allDayText:"Todo el día",moreLinkText:"más",moreLinkHint:e=>`Mostrar ${e} eventos más`,noEventsText:"No hay eventos para mostrar",navLinkHint:"Ir al $0",closeHint:"Cerrar",timeHint:"La hora",eventHint:"Evento"};FullCalendar.globalLocales.push(t)}();
|
||||||
35
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/et.global.js
vendored
Normal file
35
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/et.global.js
vendored
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
(function (index_js) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var locale = {
|
||||||
|
code: 'et',
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: 'Eelnev',
|
||||||
|
next: 'Järgnev',
|
||||||
|
today: 'Täna',
|
||||||
|
year: 'Aasta',
|
||||||
|
month: 'Kuu',
|
||||||
|
week: 'Nädal',
|
||||||
|
day: 'Päev',
|
||||||
|
list: 'Päevakord',
|
||||||
|
},
|
||||||
|
weekText: 'näd',
|
||||||
|
allDayText: 'Kogu päev',
|
||||||
|
moreLinkText(n) {
|
||||||
|
return '+ veel ' + n;
|
||||||
|
},
|
||||||
|
noEventsText: 'Kuvamiseks puuduvad sündmused',
|
||||||
|
};
|
||||||
|
|
||||||
|
index_js.globalLocales.push(locale);
|
||||||
|
|
||||||
|
})(FullCalendar);
|
||||||
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/et.global.min.js
vendored
Normal file
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/et.global.min.js
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
!function(e){"use strict";var a={code:"et",week:{dow:1,doy:4},buttonText:{prev:"Eelnev",next:"Järgnev",today:"Täna",year:"Aasta",month:"Kuu",week:"Nädal",day:"Päev",list:"Päevakord"},weekText:"näd",allDayText:"Kogu päev",moreLinkText:e=>"+ veel "+e,noEventsText:"Kuvamiseks puuduvad sündmused"};FullCalendar.globalLocales.push(a)}();
|
||||||
33
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/eu.global.js
vendored
Normal file
33
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/eu.global.js
vendored
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
(function (index_js) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var locale = {
|
||||||
|
code: 'eu',
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 7, // The week that contains Jan 1st is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: 'Aur',
|
||||||
|
next: 'Hur',
|
||||||
|
today: 'Gaur',
|
||||||
|
year: 'Urtea',
|
||||||
|
month: 'Hilabetea',
|
||||||
|
week: 'Astea',
|
||||||
|
day: 'Eguna',
|
||||||
|
list: 'Agenda',
|
||||||
|
},
|
||||||
|
weekText: 'As',
|
||||||
|
allDayText: 'Egun osoa',
|
||||||
|
moreLinkText: 'gehiago',
|
||||||
|
noEventsText: 'Ez dago ekitaldirik erakusteko',
|
||||||
|
};
|
||||||
|
|
||||||
|
index_js.globalLocales.push(locale);
|
||||||
|
|
||||||
|
})(FullCalendar);
|
||||||
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/eu.global.min.js
vendored
Normal file
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/eu.global.min.js
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
!function(e){"use strict";FullCalendar.globalLocales.push({code:"eu",week:{dow:1,doy:7},buttonText:{prev:"Aur",next:"Hur",today:"Gaur",year:"Urtea",month:"Hilabetea",week:"Astea",day:"Eguna",list:"Agenda"},weekText:"As",allDayText:"Egun osoa",moreLinkText:"gehiago",noEventsText:"Ez dago ekitaldirik erakusteko"})}();
|
||||||
36
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/fa.global.js
vendored
Normal file
36
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/fa.global.js
vendored
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
(function (index_js) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var locale = {
|
||||||
|
code: 'fa',
|
||||||
|
week: {
|
||||||
|
dow: 6,
|
||||||
|
doy: 12, // The week that contains Jan 1st is the first week of the year.
|
||||||
|
},
|
||||||
|
direction: 'rtl',
|
||||||
|
buttonText: {
|
||||||
|
prev: 'قبلی',
|
||||||
|
next: 'بعدی',
|
||||||
|
today: 'امروز',
|
||||||
|
year: 'سال',
|
||||||
|
month: 'ماه',
|
||||||
|
week: 'هفته',
|
||||||
|
day: 'روز',
|
||||||
|
list: 'برنامه',
|
||||||
|
},
|
||||||
|
weekText: 'هف',
|
||||||
|
allDayText: 'تمام روز',
|
||||||
|
moreLinkText(n) {
|
||||||
|
return 'بیش از ' + n;
|
||||||
|
},
|
||||||
|
noEventsText: 'هیچ رویدادی به نمایش',
|
||||||
|
};
|
||||||
|
|
||||||
|
index_js.globalLocales.push(locale);
|
||||||
|
|
||||||
|
})(FullCalendar);
|
||||||
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/fa.global.min.js
vendored
Normal file
6
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/fa.global.min.js
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
!function(e){"use strict";var t={code:"fa",week:{dow:6,doy:12},direction:"rtl",buttonText:{prev:"قبلی",next:"بعدی",today:"امروز",year:"سال",month:"ماه",week:"هفته",day:"روز",list:"برنامه"},weekText:"هف",allDayText:"تمام روز",moreLinkText:e=>"بیش از "+e,noEventsText:"هیچ رویدادی به نمایش"};FullCalendar.globalLocales.push(t)}();
|
||||||
33
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/fi.global.js
vendored
Normal file
33
httpdocs/themes/vuexy/vendor/libs/fullcalendar/packages/core/locales/fi.global.js
vendored
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Core v6.1.17
|
||||||
|
Docs & License: https://fullcalendar.io
|
||||||
|
(c) 2024 Adam Shaw
|
||||||
|
*/
|
||||||
|
(function (index_js) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var locale = {
|
||||||
|
code: 'fi',
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: 'Edellinen',
|
||||||
|
next: 'Seuraava',
|
||||||
|
today: 'Tänään',
|
||||||
|
year: 'Vuosi',
|
||||||
|
month: 'Kuukausi',
|
||||||
|
week: 'Viikko',
|
||||||
|
day: 'Päivä',
|
||||||
|
list: 'Tapahtumat',
|
||||||
|
},
|
||||||
|
weekText: 'Vk',
|
||||||
|
allDayText: 'Koko päivä',
|
||||||
|
moreLinkText: 'lisää',
|
||||||
|
noEventsText: 'Ei näytettäviä tapahtumia',
|
||||||
|
};
|
||||||
|
|
||||||
|
index_js.globalLocales.push(locale);
|
||||||
|
|
||||||
|
})(FullCalendar);
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user