début implémentation light-mode avec son script : remplacement de tout les valeur de couleur par varriable corespondante, text-shadow autour de du logo pour le contour, changement de fonctionnement pour que svg puisse changer de couleur
This commit is contained in:
parent
8f9e75126e
commit
0585421854
56 changed files with 492 additions and 6978 deletions
|
|
@ -1,12 +1,12 @@
|
||||||
.k-panel-menu {
|
.k-panel-menu {
|
||||||
background-color: #000;
|
background-color: var(--color-primary);
|
||||||
}
|
}
|
||||||
.k-panel-menu * {
|
.k-panel-menu * {
|
||||||
color: #fff;
|
color: var(--color-background);
|
||||||
}
|
}
|
||||||
|
|
||||||
.k-panel-menu-button[aria-current] * {
|
.k-panel-menu-button[aria-current] * {
|
||||||
color: #000;
|
color: var(--color-primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
.k-panel[data-template="year"] .k-list-items .k-item:first-child {
|
.k-panel[data-template="year"] .k-list-items .k-item:first-child {
|
||||||
|
|
@ -20,6 +20,6 @@
|
||||||
border-radius: var(--rounded-md) var(--rounded-md) 0 0;
|
border-radius: var(--rounded-md) var(--rounded-md) 0 0;
|
||||||
transform: translateY(0.3rem);
|
transform: translateY(0.3rem);
|
||||||
|
|
||||||
background-color: #000;
|
background-color: var(--color-primary);
|
||||||
color: #fff;
|
color: var(--color-background);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@ article #main-content #chapo::after {
|
||||||
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 1px;
|
height: 1px;
|
||||||
background-color: #fff;
|
background-color: var(--color-background);
|
||||||
}
|
}
|
||||||
|
|
||||||
article #main-content li:not(.text) {
|
article #main-content li:not(.text) {
|
||||||
|
|
|
||||||
|
|
@ -32,9 +32,9 @@
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
outline: none;
|
outline: none;
|
||||||
border-top: 1px solid #fff;
|
border-top: 1px solid var(--color-background);
|
||||||
font-size: var(--font-size-m);
|
font-size: var(--font-size-m);
|
||||||
background-color: #000;
|
background-color: var(--color-primary);
|
||||||
padding: calc(var(--unit--vertical) / 2) var(--unit--horizontal);
|
padding: calc(var(--unit--vertical) / 2) var(--unit--horizontal);
|
||||||
margin-bottom: env(safe-area-inset-bottom);
|
margin-bottom: env(safe-area-inset-bottom);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -44,6 +44,16 @@ main article > div {
|
||||||
#logo #actuel {
|
#logo #actuel {
|
||||||
font-weight: 550;
|
font-weight: 550;
|
||||||
}
|
}
|
||||||
|
[data-theme="light"] #logo #actuel {
|
||||||
|
font-weight: 550;
|
||||||
|
color: white;
|
||||||
|
/*diag*/
|
||||||
|
/* text-shadow: -1px -1px var(--color-primary), 1px 1px var(--color-primary); */
|
||||||
|
/*difus*/
|
||||||
|
/* text-shadow: -2px 0 5px var(--color-primary), 2px 0 5px var(--color-primary); */
|
||||||
|
/*partout*/
|
||||||
|
text-shadow: -1px 0 var(--color-primary), 1px 0 var(--color-primary), 0 -1px var(--color-primary),0 1px var(--color-primary);
|
||||||
|
}
|
||||||
|
|
||||||
#logo #actuel,
|
#logo #actuel,
|
||||||
#logo #inactuel {
|
#logo #inactuel {
|
||||||
|
|
@ -53,6 +63,9 @@ main article > div {
|
||||||
#logo #inactuel {
|
#logo #inactuel {
|
||||||
transition: margin-top 0.3s ease-in-out, transform 0.3s ease-in-out;
|
transition: margin-top 0.3s ease-in-out, transform 0.3s ease-in-out;
|
||||||
}
|
}
|
||||||
|
[data-theme="light"] #logo #inactuel {
|
||||||
|
mix-blend-mode: difference;
|
||||||
|
}
|
||||||
|
|
||||||
#main-header.minimized #inactuel {
|
#main-header.minimized #inactuel {
|
||||||
margin-top: -20vw;
|
margin-top: -20vw;
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@ html {
|
||||||
|
|
||||||
* {
|
* {
|
||||||
scrollbar-width: thin;
|
scrollbar-width: thin;
|
||||||
scrollbar-color: rgba(255, 255, 255) transparent;
|
scrollbar-color: var(--color-primary) transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Works on Chrome, Edge, and Safari */
|
/* Works on Chrome, Edge, and Safari */
|
||||||
|
|
@ -54,7 +54,7 @@ html {
|
||||||
}
|
}
|
||||||
|
|
||||||
*::-webkit-scrollbar-thumb {
|
*::-webkit-scrollbar-thumb {
|
||||||
background-color: rgba(255, 255, 255);
|
background-color: var(--color-primary);
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
#nav-overlay {
|
#nav-overlay {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
inset: 0;
|
inset: 0;
|
||||||
background-color: #000;
|
background-color: var(--color-background);
|
||||||
opacity: 0.7;
|
opacity: 0.7;
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
cursor: w-resize;
|
cursor: w-resize;
|
||||||
|
|
@ -17,8 +17,8 @@
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
height: 100dvh;
|
height: 100dvh;
|
||||||
top: 0;
|
top: 0;
|
||||||
background-color: #000;
|
background-color: var(--color-background);
|
||||||
outline: 1px solid #fff;
|
outline: 1px solid var(--color-primary);
|
||||||
transition: all 0.5s var(--curve-sine);
|
transition: all 0.5s var(--curve-sine);
|
||||||
z-index: 3;
|
z-index: 3;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
|
@ -34,7 +34,7 @@
|
||||||
position: sticky;
|
position: sticky;
|
||||||
top: 0;
|
top: 0;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
background-color: #000;
|
background-color: var(--color-background);
|
||||||
padding: var(--unit--vertical) var(--unit--horizontal);
|
padding: var(--unit--vertical) var(--unit--horizontal);
|
||||||
padding-bottom: 0;
|
padding-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
@ -64,10 +64,13 @@
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin-top: var(--unit--vertical);
|
margin-top: var(--unit--vertical);
|
||||||
background-color: #000;
|
background-color: var(--color-background);
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
top: 0;
|
top: 0;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
border-bottom: 1px solid var(--color-primary);
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
}
|
}
|
||||||
.search__input {
|
.search__input {
|
||||||
all: unset;
|
all: unset;
|
||||||
|
|
@ -75,23 +78,31 @@
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
padding: calc(var(--unit--vertical) / 4) 0;
|
padding: calc(var(--unit--vertical) / 4) 0;
|
||||||
border: none;
|
border: none;
|
||||||
border-bottom: 1px solid #fff;
|
border-bottom: 1px solid var(--color-background);
|
||||||
color: #fff;
|
color: var(--color-background);
|
||||||
font-size: var(--font-size-m);
|
font-size: var(--font-size-m);
|
||||||
font-weight: var(--font-weight-light);
|
font-weight: var(--font-weight-light);
|
||||||
}
|
}
|
||||||
.search__input::placeholder {
|
.search__input::placeholder {
|
||||||
font-size: var(--font-size-sm);
|
font-size: var(--font-size-sm);
|
||||||
letter-spacing: 1px;
|
letter-spacing: 1px;
|
||||||
|
color: var(--color-primary);
|
||||||
|
opacity: 0.55;
|
||||||
}
|
}
|
||||||
.search__icon {
|
.search__icon {
|
||||||
all: unset;
|
all: unset;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
width: 1.2rem;
|
width: 0.2rem;
|
||||||
height: 1.2rem;
|
height: 0.2rem;
|
||||||
padding: 0.5rem;
|
padding: 0.5rem;
|
||||||
right: 0;
|
right: 0;
|
||||||
transform: translateX(0.5rem) translateY(0.2rem);
|
/* transform: translateY(0.2rem); */
|
||||||
|
|
||||||
|
background-color: var(--color-primary);
|
||||||
|
mask: var(--icon-search) no-repeat center;
|
||||||
|
mask-size: contain;
|
||||||
|
-webkit-mask: var(--icon-search) no-repeat center;
|
||||||
|
-webkit-mask-size: contain;
|
||||||
}
|
}
|
||||||
button.search__icon {
|
button.search__icon {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
@ -114,9 +125,9 @@ footer {
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
outline: none;
|
outline: none;
|
||||||
border-top: 1px solid #fff;
|
border-top: 1px solid var(--color-background);
|
||||||
font-size: var(--font-size-m);
|
font-size: var(--font-size-m);
|
||||||
background-color: #000;
|
background-color: var(--color-primary);
|
||||||
padding: calc(var(--unit--vertical) / 2) var(--unit--horizontal);
|
padding: calc(var(--unit--vertical) / 2) var(--unit--horizontal);
|
||||||
margin-bottom: env(safe-area-inset-bottom);
|
margin-bottom: env(safe-area-inset-bottom);
|
||||||
}
|
}
|
||||||
|
|
@ -180,7 +191,7 @@ button.see-more {
|
||||||
top: 0;
|
top: 0;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: 1px;
|
width: 1px;
|
||||||
background-color: #fff;
|
background-color: var(--color-background);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (min-width: 640px) {
|
@media screen and (min-width: 640px) {
|
||||||
|
|
|
||||||
|
|
@ -11,18 +11,18 @@
|
||||||
#subscribe-form input {
|
#subscribe-form input {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
border: none;
|
border: none;
|
||||||
border-bottom: 1px solid #fff;
|
border-bottom: 1px solid var(--color-background);
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
padding-bottom: 0.3rem;
|
padding-bottom: 0.3rem;
|
||||||
padding-right: 2rem;
|
padding-right: 2rem;
|
||||||
color: #fff;
|
color: var(--color-background);
|
||||||
width: 15rem;
|
width: 15rem;
|
||||||
}
|
}
|
||||||
#subscribe-form input:focus-visible {
|
#subscribe-form input:focus-visible {
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
#subscribe-form button[type="submit"] {
|
#subscribe-form button[type="submit"] {
|
||||||
color: #fff;
|
color: var(--color-background);
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,7 @@
|
||||||
|
|
||||||
body {
|
body {
|
||||||
padding-top: 4rem;
|
padding-top: 4rem;
|
||||||
color: #000;
|
color: var(--color-primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel {
|
.panel {
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
#logo #actuel {
|
#logo #actuel {
|
||||||
color: #000;
|
color: var(--color-primary);
|
||||||
opacity: 0.8;
|
opacity: 0.8;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -56,7 +56,7 @@ button.toggle.right.open::before {
|
||||||
|
|
||||||
.active-tab {
|
.active-tab {
|
||||||
scrollbar-width: thin;
|
scrollbar-width: thin;
|
||||||
scrollbar-color: #fff transparent;
|
scrollbar-color: var(--color-background) transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Works on Chrome, Edge, and Safari */
|
/* Works on Chrome, Edge, and Safari */
|
||||||
|
|
@ -71,7 +71,7 @@ button.toggle.right.open::before {
|
||||||
}
|
}
|
||||||
|
|
||||||
.active-tab::-webkit-scrollbar-thumb {
|
.active-tab::-webkit-scrollbar-thumb {
|
||||||
background-color: #fff;
|
background-color: var(--color-background);
|
||||||
border-radius: 1px;
|
border-radius: 1px;
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -11,9 +11,11 @@
|
||||||
@import url("src/newsletter.css");
|
@import url("src/newsletter.css");
|
||||||
@import url("src/footer.css");
|
@import url("src/footer.css");
|
||||||
@import url("src/print.css");
|
@import url("src/print.css");
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--color-background: #000;
|
|
||||||
--color-primary: #ffffff;
|
|
||||||
--color-primary--transparent: rgba(255, 255, 255, 0.86);
|
--color-primary--transparent: rgba(255, 255, 255, 0.86);
|
||||||
|
|
||||||
/* --color-secondary-rgb: 120, 171, 150;
|
/* --color-secondary-rgb: 120, 171, 150;
|
||||||
|
|
@ -56,6 +58,19 @@
|
||||||
--curve-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
|
--curve-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[data-theme="dark"] {
|
||||||
|
--color-background: #000;
|
||||||
|
--color-primary: #ffffff;
|
||||||
|
}
|
||||||
|
[data-theme="light"] {
|
||||||
|
--color-background: #ffffff;
|
||||||
|
--color-primary: #000;
|
||||||
|
|
||||||
|
--color-secondary-rgb: 140, 140, 140;
|
||||||
|
/* --color-secondary--light: rgba(var(--color-secondary-rgb), 0.4);
|
||||||
|
--color-secondary--x-light: rgb(var(--color-secondary-rgb), 0.25); */
|
||||||
|
}
|
||||||
|
|
||||||
@media screen and (min-width: 640px) {
|
@media screen and (min-width: 640px) {
|
||||||
:root {
|
:root {
|
||||||
--unit--horizontal: 2.5vw;
|
--unit--horizontal: 2.5vw;
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
:root {
|
:root {
|
||||||
--fc-border: 2px solid #000;
|
--fc-border: 2px solid var(--color-primary);
|
||||||
--fc-border-light: 1px solid #999;
|
--fc-border-light: 1px solid #999;
|
||||||
--fc-font-size-m: 1.2rem;
|
--fc-font-size-m: 1.2rem;
|
||||||
--fc-font-size-s: calc(var(--fc-font-size-m) / 1.3);
|
--fc-font-size-s: calc(var(--fc-font-size-m) / 1.3);
|
||||||
|
|
@ -91,7 +91,7 @@
|
||||||
.fc__edition-panel textarea {
|
.fc__edition-panel textarea {
|
||||||
position: relative !important;
|
position: relative !important;
|
||||||
resize: none !important;
|
resize: none !important;
|
||||||
color: #000 !important;
|
color: var(--color-primary) !important;
|
||||||
font-family: sans-serif !important;
|
font-family: sans-serif !important;
|
||||||
font-weight: 100 !important;
|
font-weight: 100 !important;
|
||||||
|
|
||||||
|
|
@ -108,14 +108,14 @@
|
||||||
|
|
||||||
.fc__edition-panel__btns {
|
.fc__edition-panel__btns {
|
||||||
display: flex;
|
display: flex;
|
||||||
background-color: #fff;
|
background-color: var(--color-background);
|
||||||
margin-top: 0.5rem;
|
margin-top: 0.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fc__edition-panel__btns button {
|
.fc__edition-panel__btns button {
|
||||||
all: initial;
|
all: initial;
|
||||||
|
|
||||||
color: #000;
|
color: var(--color-primary);
|
||||||
font-family: sans-serif;
|
font-family: sans-serif;
|
||||||
font-weight: 100;
|
font-weight: 100;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
@ -124,7 +124,7 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 0.5rem;
|
padding: 0.5rem;
|
||||||
border: var(--fc-border) !important;
|
border: var(--fc-border) !important;
|
||||||
background-color: #fff;
|
background-color: var(--color-background);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
.fc__edition-panel__btns button:first-child {
|
.fc__edition-panel__btns button:first-child {
|
||||||
|
|
@ -145,7 +145,7 @@
|
||||||
height: 2.9rem;
|
height: 2.9rem;
|
||||||
scroll-margin-top: 6rem;
|
scroll-margin-top: 6rem;
|
||||||
|
|
||||||
color: #000;
|
color: var(--color-primary);
|
||||||
font-family: sans-serif;
|
font-family: sans-serif;
|
||||||
font-size: var(--fc-font-size-m);
|
font-size: var(--fc-font-size-m);
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
|
|
@ -162,12 +162,12 @@
|
||||||
|
|
||||||
width: 20rem;
|
width: 20rem;
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
background-color: #fff;
|
background-color: var(--color-background);
|
||||||
border: var(--fc-border) !important;
|
border: var(--fc-border) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fc__comment * {
|
.fc__comment * {
|
||||||
color: #000 !important;
|
color: var(--color-primary) !important;
|
||||||
font-family: sans-serif !important;
|
font-family: sans-serif !important;
|
||||||
font-weight: 100 !important;
|
font-weight: 100 !important;
|
||||||
}
|
}
|
||||||
|
|
@ -248,20 +248,20 @@
|
||||||
.fc__context-item:not(:last-child) {
|
.fc__context-item:not(:last-child) {
|
||||||
padding-bottom: 0.5rem;
|
padding-bottom: 0.5rem;
|
||||||
margin-bottom: 0.5rem;
|
margin-bottom: 0.5rem;
|
||||||
border-bottom: 1px dotted #000;
|
border-bottom: 1px dotted var(--color-primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
.fc__open-window {
|
.fc__open-window {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
border: 1px solid #000;
|
border: 1px solid var(--color-primary);
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fc__open-window:hover {
|
.fc__open-window:hover {
|
||||||
background-color: #000;
|
background-color: var(--color-primary);
|
||||||
color: #fff !important;
|
color: var(--color-background) !important;
|
||||||
}
|
}
|
||||||
/* ================= END CONTEXT ================= */
|
/* ================= END CONTEXT ================= */
|
||||||
|
|
||||||
|
|
@ -281,8 +281,8 @@
|
||||||
border: var(--fc-border);
|
border: var(--fc-border);
|
||||||
}
|
}
|
||||||
.fc__suggestion:hover {
|
.fc__suggestion:hover {
|
||||||
color: #fff;
|
color: var(--color-background);
|
||||||
background-color: #000;
|
background-color: var(--color-primary);
|
||||||
}
|
}
|
||||||
.fc__suggestion--edit {
|
.fc__suggestion--edit {
|
||||||
background-color: rgba(0, 0, 0, 0.1) !important;
|
background-color: rgba(0, 0, 0, 0.1) !important;
|
||||||
|
|
@ -292,8 +292,8 @@
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: 999;
|
z-index: 999;
|
||||||
width: 20vw;
|
width: 20vw;
|
||||||
background-color: #fff;
|
background-color: var(--color-background);
|
||||||
color: #000;
|
color: var(--color-primary);
|
||||||
border: var(--fc-border);
|
border: var(--fc-border);
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
left: -0.1rem;
|
left: -0.1rem;
|
||||||
|
|
|
||||||
27
assets/js/light-mode.js
Normal file
27
assets/js/light-mode.js
Normal file
|
|
@ -0,0 +1,27 @@
|
||||||
|
(function () {
|
||||||
|
const root = document.documentElement;
|
||||||
|
|
||||||
|
function toggleDarkMode() {
|
||||||
|
const currentTheme = root.getAttribute("data-theme");
|
||||||
|
const newTheme = currentTheme === "dark" ? "light" : "dark";
|
||||||
|
root.setAttribute("data-theme", newTheme);
|
||||||
|
localStorage.setItem("theme", newTheme);
|
||||||
|
console.log("tets");
|
||||||
|
}
|
||||||
|
|
||||||
|
function init() {
|
||||||
|
const storedPreference = localStorage.getItem("theme");
|
||||||
|
const systemPrefersDark = window.matchMedia("(prefers-color-scheme: dark)").matches;
|
||||||
|
const theme = storedPreference || (systemPrefersDark ? "dark" : "light");
|
||||||
|
root.setAttribute("data-theme", theme);
|
||||||
|
}
|
||||||
|
|
||||||
|
init();
|
||||||
|
|
||||||
|
document.addEventListener("DOMContentLoaded", function () {
|
||||||
|
const togglers = document.querySelectorAll("[data-theme-toggler]");
|
||||||
|
togglers.forEach((toggler) => {
|
||||||
|
toggler.addEventListener("click", toggleDarkMode);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
})();
|
||||||
387
composer.lock
generated
387
composer.lock
generated
|
|
@ -334,16 +334,16 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "filp/whoops",
|
"name": "filp/whoops",
|
||||||
"version": "2.17.0",
|
"version": "2.18.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/filp/whoops.git",
|
"url": "https://github.com/filp/whoops.git",
|
||||||
"reference": "075bc0c26631110584175de6523ab3f1652eb28e"
|
"reference": "a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/filp/whoops/zipball/075bc0c26631110584175de6523ab3f1652eb28e",
|
"url": "https://api.github.com/repos/filp/whoops/zipball/a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e",
|
||||||
"reference": "075bc0c26631110584175de6523ab3f1652eb28e",
|
"reference": "a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
|
@ -393,7 +393,7 @@
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/filp/whoops/issues",
|
"issues": "https://github.com/filp/whoops/issues",
|
||||||
"source": "https://github.com/filp/whoops/tree/2.17.0"
|
"source": "https://github.com/filp/whoops/tree/2.18.0"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
|
@ -401,20 +401,20 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2025-01-25T12:00:00+00:00"
|
"time": "2025-03-15T12:00:00+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "getkirby/cms",
|
"name": "getkirby/cms",
|
||||||
"version": "4.6.0",
|
"version": "4.8.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/getkirby/kirby.git",
|
"url": "https://github.com/getkirby/kirby.git",
|
||||||
"reference": "994556ca78eab3c11415702870b6388e8472addc"
|
"reference": "5292c17832dd34b0e5f3e98dea837a357ef037b6"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/getkirby/kirby/zipball/994556ca78eab3c11415702870b6388e8472addc",
|
"url": "https://api.github.com/repos/getkirby/kirby/zipball/5292c17832dd34b0e5f3e98dea837a357ef037b6",
|
||||||
"reference": "994556ca78eab3c11415702870b6388e8472addc",
|
"reference": "5292c17832dd34b0e5f3e98dea837a357ef037b6",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
|
@ -432,15 +432,15 @@
|
||||||
"ext-mbstring": "*",
|
"ext-mbstring": "*",
|
||||||
"ext-openssl": "*",
|
"ext-openssl": "*",
|
||||||
"ext-simplexml": "*",
|
"ext-simplexml": "*",
|
||||||
"filp/whoops": "2.17.0",
|
"filp/whoops": "2.18.0",
|
||||||
"getkirby/composer-installer": "^1.2.1",
|
"getkirby/composer-installer": "^1.2.1",
|
||||||
"laminas/laminas-escaper": "2.15.0",
|
"laminas/laminas-escaper": "2.17.0",
|
||||||
"michelf/php-smartypants": "1.8.1",
|
"michelf/php-smartypants": "1.8.1",
|
||||||
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
|
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
|
||||||
"phpmailer/phpmailer": "6.9.3",
|
"phpmailer/phpmailer": "6.10.0",
|
||||||
"symfony/polyfill-intl-idn": "1.31.0",
|
"symfony/polyfill-intl-idn": "1.32.0",
|
||||||
"symfony/polyfill-mbstring": "1.31.0",
|
"symfony/polyfill-mbstring": "1.32.0",
|
||||||
"symfony/yaml": "6.4.18"
|
"symfony/yaml": "6.4.21"
|
||||||
},
|
},
|
||||||
"replace": {
|
"replace": {
|
||||||
"symfony/polyfill-php72": "*"
|
"symfony/polyfill-php72": "*"
|
||||||
|
|
@ -504,7 +504,7 @@
|
||||||
"type": "custom"
|
"type": "custom"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2025-01-30T11:02:53+00:00"
|
"time": "2025-06-03T09:52:03+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "getkirby/composer-installer",
|
"name": "getkirby/composer-installer",
|
||||||
|
|
@ -555,22 +555,22 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "guzzlehttp/guzzle",
|
"name": "guzzlehttp/guzzle",
|
||||||
"version": "7.9.2",
|
"version": "7.10.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/guzzle/guzzle.git",
|
"url": "https://github.com/guzzle/guzzle.git",
|
||||||
"reference": "d281ed313b989f213357e3be1a179f02196ac99b"
|
"reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
|
"url": "https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
|
||||||
"reference": "d281ed313b989f213357e3be1a179f02196ac99b",
|
"reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"ext-json": "*",
|
"ext-json": "*",
|
||||||
"guzzlehttp/promises": "^1.5.3 || ^2.0.3",
|
"guzzlehttp/promises": "^2.3",
|
||||||
"guzzlehttp/psr7": "^2.7.0",
|
"guzzlehttp/psr7": "^2.8",
|
||||||
"php": "^7.2.5 || ^8.0",
|
"php": "^7.2.5 || ^8.0",
|
||||||
"psr/http-client": "^1.0",
|
"psr/http-client": "^1.0",
|
||||||
"symfony/deprecation-contracts": "^2.2 || ^3.0"
|
"symfony/deprecation-contracts": "^2.2 || ^3.0"
|
||||||
|
|
@ -661,7 +661,7 @@
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/guzzle/guzzle/issues",
|
"issues": "https://github.com/guzzle/guzzle/issues",
|
||||||
"source": "https://github.com/guzzle/guzzle/tree/7.9.2"
|
"source": "https://github.com/guzzle/guzzle/tree/7.10.0"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
|
@ -677,20 +677,20 @@
|
||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2024-07-24T11:22:20+00:00"
|
"time": "2025-08-23T22:36:01+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "guzzlehttp/promises",
|
"name": "guzzlehttp/promises",
|
||||||
"version": "2.0.4",
|
"version": "2.3.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/guzzle/promises.git",
|
"url": "https://github.com/guzzle/promises.git",
|
||||||
"reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
|
"reference": "481557b130ef3790cf82b713667b43030dc9c957"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
|
"url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957",
|
||||||
"reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
|
"reference": "481557b130ef3790cf82b713667b43030dc9c957",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
|
@ -698,7 +698,7 @@
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"bamarni/composer-bin-plugin": "^1.8.2",
|
"bamarni/composer-bin-plugin": "^1.8.2",
|
||||||
"phpunit/phpunit": "^8.5.39 || ^9.6.20"
|
"phpunit/phpunit": "^8.5.44 || ^9.6.25"
|
||||||
},
|
},
|
||||||
"type": "library",
|
"type": "library",
|
||||||
"extra": {
|
"extra": {
|
||||||
|
|
@ -744,7 +744,7 @@
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/guzzle/promises/issues",
|
"issues": "https://github.com/guzzle/promises/issues",
|
||||||
"source": "https://github.com/guzzle/promises/tree/2.0.4"
|
"source": "https://github.com/guzzle/promises/tree/2.3.0"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
|
@ -760,20 +760,20 @@
|
||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2024-10-17T10:06:22+00:00"
|
"time": "2025-08-22T14:34:08+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "guzzlehttp/psr7",
|
"name": "guzzlehttp/psr7",
|
||||||
"version": "2.7.0",
|
"version": "2.8.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/guzzle/psr7.git",
|
"url": "https://github.com/guzzle/psr7.git",
|
||||||
"reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
|
"reference": "21dc724a0583619cd1652f673303492272778051"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
|
"url": "https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051",
|
||||||
"reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
|
"reference": "21dc724a0583619cd1652f673303492272778051",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
|
@ -789,7 +789,7 @@
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"bamarni/composer-bin-plugin": "^1.8.2",
|
"bamarni/composer-bin-plugin": "^1.8.2",
|
||||||
"http-interop/http-factory-tests": "0.9.0",
|
"http-interop/http-factory-tests": "0.9.0",
|
||||||
"phpunit/phpunit": "^8.5.39 || ^9.6.20"
|
"phpunit/phpunit": "^8.5.44 || ^9.6.25"
|
||||||
},
|
},
|
||||||
"suggest": {
|
"suggest": {
|
||||||
"laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
|
"laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
|
||||||
|
|
@ -860,7 +860,7 @@
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/guzzle/psr7/issues",
|
"issues": "https://github.com/guzzle/psr7/issues",
|
||||||
"source": "https://github.com/guzzle/psr7/tree/2.7.0"
|
"source": "https://github.com/guzzle/psr7/tree/2.8.0"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
|
@ -876,20 +876,20 @@
|
||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2024-07-18T11:15:46+00:00"
|
"time": "2025-08-23T21:21:41+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "illuminate/collections",
|
"name": "illuminate/collections",
|
||||||
"version": "v11.41.3",
|
"version": "v11.46.1",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/illuminate/collections.git",
|
"url": "https://github.com/illuminate/collections.git",
|
||||||
"reference": "80c85f81573cc4c024da05312119f9149a6b64c1"
|
"reference": "856b1da953e46281ba61d7c82d337072d3ee1825"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/illuminate/collections/zipball/80c85f81573cc4c024da05312119f9149a6b64c1",
|
"url": "https://api.github.com/repos/illuminate/collections/zipball/856b1da953e46281ba61d7c82d337072d3ee1825",
|
||||||
"reference": "80c85f81573cc4c024da05312119f9149a6b64c1",
|
"reference": "856b1da953e46281ba61d7c82d337072d3ee1825",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
|
@ -932,20 +932,20 @@
|
||||||
"issues": "https://github.com/laravel/framework/issues",
|
"issues": "https://github.com/laravel/framework/issues",
|
||||||
"source": "https://github.com/laravel/framework"
|
"source": "https://github.com/laravel/framework"
|
||||||
},
|
},
|
||||||
"time": "2025-01-24T15:40:32+00:00"
|
"time": "2025-03-24T11:54:20+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "illuminate/conditionable",
|
"name": "illuminate/conditionable",
|
||||||
"version": "v11.41.3",
|
"version": "v11.46.1",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/illuminate/conditionable.git",
|
"url": "https://github.com/illuminate/conditionable.git",
|
||||||
"reference": "911df1bda950a3b799cf80671764e34eede131c6"
|
"reference": "319b717e0587bd7c8a3b44464f0e27867b4bcda9"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/illuminate/conditionable/zipball/911df1bda950a3b799cf80671764e34eede131c6",
|
"url": "https://api.github.com/repos/illuminate/conditionable/zipball/319b717e0587bd7c8a3b44464f0e27867b4bcda9",
|
||||||
"reference": "911df1bda950a3b799cf80671764e34eede131c6",
|
"reference": "319b717e0587bd7c8a3b44464f0e27867b4bcda9",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
|
@ -978,20 +978,20 @@
|
||||||
"issues": "https://github.com/laravel/framework/issues",
|
"issues": "https://github.com/laravel/framework/issues",
|
||||||
"source": "https://github.com/laravel/framework"
|
"source": "https://github.com/laravel/framework"
|
||||||
},
|
},
|
||||||
"time": "2024-11-21T16:28:56+00:00"
|
"time": "2025-03-24T11:54:20+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "illuminate/contracts",
|
"name": "illuminate/contracts",
|
||||||
"version": "v11.41.3",
|
"version": "v11.46.1",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/illuminate/contracts.git",
|
"url": "https://github.com/illuminate/contracts.git",
|
||||||
"reference": "534b697fc1dd9fbdd9fbf2f33fc9dcbb943dea75"
|
"reference": "4b2a67d1663f50085bc91e6371492697a5d2d4e8"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/illuminate/contracts/zipball/534b697fc1dd9fbdd9fbf2f33fc9dcbb943dea75",
|
"url": "https://api.github.com/repos/illuminate/contracts/zipball/4b2a67d1663f50085bc91e6371492697a5d2d4e8",
|
||||||
"reference": "534b697fc1dd9fbdd9fbf2f33fc9dcbb943dea75",
|
"reference": "4b2a67d1663f50085bc91e6371492697a5d2d4e8",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
|
@ -1026,11 +1026,11 @@
|
||||||
"issues": "https://github.com/laravel/framework/issues",
|
"issues": "https://github.com/laravel/framework/issues",
|
||||||
"source": "https://github.com/laravel/framework"
|
"source": "https://github.com/laravel/framework"
|
||||||
},
|
},
|
||||||
"time": "2025-01-10T20:57:00+00:00"
|
"time": "2025-03-24T11:54:20+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "illuminate/macroable",
|
"name": "illuminate/macroable",
|
||||||
"version": "v11.41.3",
|
"version": "v11.46.1",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/illuminate/macroable.git",
|
"url": "https://github.com/illuminate/macroable.git",
|
||||||
|
|
@ -1076,16 +1076,16 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "laminas/laminas-escaper",
|
"name": "laminas/laminas-escaper",
|
||||||
"version": "2.15.0",
|
"version": "2.17.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/laminas/laminas-escaper.git",
|
"url": "https://github.com/laminas/laminas-escaper.git",
|
||||||
"reference": "c612b0488ae486284c39885efca494c180f16351"
|
"reference": "df1ef9503299a8e3920079a16263b578eaf7c3ba"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/c612b0488ae486284c39885efca494c180f16351",
|
"url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/df1ef9503299a8e3920079a16263b578eaf7c3ba",
|
||||||
"reference": "c612b0488ae486284c39885efca494c180f16351",
|
"reference": "df1ef9503299a8e3920079a16263b578eaf7c3ba",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
|
@ -1097,12 +1097,11 @@
|
||||||
"zendframework/zend-escaper": "*"
|
"zendframework/zend-escaper": "*"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"infection/infection": "^0.27.11",
|
"infection/infection": "^0.29.8",
|
||||||
"laminas/laminas-coding-standard": "~3.0.1",
|
"laminas/laminas-coding-standard": "~3.0.1",
|
||||||
"maglnet/composer-require-checker": "^3.8.0",
|
"phpunit/phpunit": "^10.5.45",
|
||||||
"phpunit/phpunit": "^9.6.22",
|
"psalm/plugin-phpunit": "^0.19.2",
|
||||||
"psalm/plugin-phpunit": "^0.19.0",
|
"vimeo/psalm": "^6.6.2"
|
||||||
"vimeo/psalm": "^5.26.1"
|
|
||||||
},
|
},
|
||||||
"type": "library",
|
"type": "library",
|
||||||
"autoload": {
|
"autoload": {
|
||||||
|
|
@ -1134,7 +1133,7 @@
|
||||||
"type": "community_bridge"
|
"type": "community_bridge"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2024-12-17T19:39:54+00:00"
|
"time": "2025-05-06T19:29:36+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "league/color-extractor",
|
"name": "league/color-extractor",
|
||||||
|
|
@ -1783,16 +1782,16 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "phpmailer/phpmailer",
|
"name": "phpmailer/phpmailer",
|
||||||
"version": "v6.9.3",
|
"version": "v6.10.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/PHPMailer/PHPMailer.git",
|
"url": "https://github.com/PHPMailer/PHPMailer.git",
|
||||||
"reference": "2f5c94fe7493efc213f643c23b1b1c249d40f47e"
|
"reference": "bf74d75a1fde6beaa34a0ddae2ec5fce0f72a144"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/2f5c94fe7493efc213f643c23b1b1c249d40f47e",
|
"url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/bf74d75a1fde6beaa34a0ddae2ec5fce0f72a144",
|
||||||
"reference": "2f5c94fe7493efc213f643c23b1b1c249d40f47e",
|
"reference": "bf74d75a1fde6beaa34a0ddae2ec5fce0f72a144",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
|
@ -1852,7 +1851,7 @@
|
||||||
"description": "PHPMailer is a full-featured email creation and transfer class for PHP",
|
"description": "PHPMailer is a full-featured email creation and transfer class for PHP",
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/PHPMailer/PHPMailer/issues",
|
"issues": "https://github.com/PHPMailer/PHPMailer/issues",
|
||||||
"source": "https://github.com/PHPMailer/PHPMailer/tree/v6.9.3"
|
"source": "https://github.com/PHPMailer/PHPMailer/tree/v6.10.0"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
|
@ -1860,7 +1859,7 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2024-11-24T18:04:13+00:00"
|
"time": "2025-04-24T15:19:31+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "psr/container",
|
"name": "psr/container",
|
||||||
|
|
@ -2295,20 +2294,20 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "sylvainjule/code-editor",
|
"name": "sylvainjule/code-editor",
|
||||||
"version": "1.0.3",
|
"version": "1.1.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/sylvainjule/kirby-code-editor.git",
|
"url": "https://github.com/sylvainjule/kirby-code-editor.git",
|
||||||
"reference": "9795565acbf64f92c46423ed4cb5c94bb8a738ea"
|
"reference": "adbc2c8a728994cc57ea72a7f8628f27d202b8df"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/sylvainjule/kirby-code-editor/zipball/9795565acbf64f92c46423ed4cb5c94bb8a738ea",
|
"url": "https://api.github.com/repos/sylvainjule/kirby-code-editor/zipball/adbc2c8a728994cc57ea72a7f8628f27d202b8df",
|
||||||
"reference": "9795565acbf64f92c46423ed4cb5c94bb8a738ea",
|
"reference": "adbc2c8a728994cc57ea72a7f8628f27d202b8df",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"getkirby/composer-installer": "^1.1"
|
"getkirby/composer-installer": "^1.2"
|
||||||
},
|
},
|
||||||
"type": "kirby-plugin",
|
"type": "kirby-plugin",
|
||||||
"extra": {
|
"extra": {
|
||||||
|
|
@ -2324,25 +2323,25 @@
|
||||||
"email": "contact@sylvain-jule.fr"
|
"email": "contact@sylvain-jule.fr"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "Code editor field for Kirby 3 and 4",
|
"description": "Code editor field for Kirby 3, 4 and 5",
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/sylvainjule/kirby-code-editor/issues",
|
"issues": "https://github.com/sylvainjule/kirby-code-editor/issues",
|
||||||
"source": "https://github.com/sylvainjule/kirby-code-editor/tree/1.0.3"
|
"source": "https://github.com/sylvainjule/kirby-code-editor/tree/1.1.0"
|
||||||
},
|
},
|
||||||
"time": "2024-03-06T18:19:23+00:00"
|
"time": "2025-08-04T17:32:08+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/deprecation-contracts",
|
"name": "symfony/deprecation-contracts",
|
||||||
"version": "v3.5.1",
|
"version": "v3.6.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/deprecation-contracts.git",
|
"url": "https://github.com/symfony/deprecation-contracts.git",
|
||||||
"reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
|
"reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
|
"url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
|
||||||
"reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
|
"reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
|
@ -2355,7 +2354,7 @@
|
||||||
"name": "symfony/contracts"
|
"name": "symfony/contracts"
|
||||||
},
|
},
|
||||||
"branch-alias": {
|
"branch-alias": {
|
||||||
"dev-main": "3.5-dev"
|
"dev-main": "3.6-dev"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
|
|
@ -2380,7 +2379,7 @@
|
||||||
"description": "A generic function and convention to trigger deprecation notices",
|
"description": "A generic function and convention to trigger deprecation notices",
|
||||||
"homepage": "https://symfony.com",
|
"homepage": "https://symfony.com",
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
|
"source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
|
@ -2396,20 +2395,20 @@
|
||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2024-09-25T14:20:29+00:00"
|
"time": "2024-09-25T14:21:43+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/http-client",
|
"name": "symfony/http-client",
|
||||||
"version": "v7.2.3",
|
"version": "v7.3.4",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/http-client.git",
|
"url": "https://github.com/symfony/http-client.git",
|
||||||
"reference": "7ce6078c79a4a7afff931c413d2959d3bffbfb8d"
|
"reference": "4b62871a01c49457cf2a8e560af7ee8a94b87a62"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/http-client/zipball/7ce6078c79a4a7afff931c413d2959d3bffbfb8d",
|
"url": "https://api.github.com/repos/symfony/http-client/zipball/4b62871a01c49457cf2a8e560af7ee8a94b87a62",
|
||||||
"reference": "7ce6078c79a4a7afff931c413d2959d3bffbfb8d",
|
"reference": "4b62871a01c49457cf2a8e560af7ee8a94b87a62",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
|
@ -2417,10 +2416,12 @@
|
||||||
"psr/log": "^1|^2|^3",
|
"psr/log": "^1|^2|^3",
|
||||||
"symfony/deprecation-contracts": "^2.5|^3",
|
"symfony/deprecation-contracts": "^2.5|^3",
|
||||||
"symfony/http-client-contracts": "~3.4.4|^3.5.2",
|
"symfony/http-client-contracts": "~3.4.4|^3.5.2",
|
||||||
|
"symfony/polyfill-php83": "^1.29",
|
||||||
"symfony/service-contracts": "^2.5|^3"
|
"symfony/service-contracts": "^2.5|^3"
|
||||||
},
|
},
|
||||||
"conflict": {
|
"conflict": {
|
||||||
"amphp/amp": "<2.5",
|
"amphp/amp": "<2.5",
|
||||||
|
"amphp/socket": "<1.1",
|
||||||
"php-http/discovery": "<1.15",
|
"php-http/discovery": "<1.15",
|
||||||
"symfony/http-foundation": "<6.4"
|
"symfony/http-foundation": "<6.4"
|
||||||
},
|
},
|
||||||
|
|
@ -2433,7 +2434,6 @@
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"amphp/http-client": "^4.2.1|^5.0",
|
"amphp/http-client": "^4.2.1|^5.0",
|
||||||
"amphp/http-tunnel": "^1.0|^2.0",
|
"amphp/http-tunnel": "^1.0|^2.0",
|
||||||
"amphp/socket": "^1.1",
|
|
||||||
"guzzlehttp/promises": "^1.4|^2.0",
|
"guzzlehttp/promises": "^1.4|^2.0",
|
||||||
"nyholm/psr7": "^1.0",
|
"nyholm/psr7": "^1.0",
|
||||||
"php-http/httplug": "^1.0|^2.0",
|
"php-http/httplug": "^1.0|^2.0",
|
||||||
|
|
@ -2475,7 +2475,7 @@
|
||||||
"http"
|
"http"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/http-client/tree/v7.2.3"
|
"source": "https://github.com/symfony/http-client/tree/v7.3.4"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
|
@ -2486,25 +2486,29 @@
|
||||||
"url": "https://github.com/fabpot",
|
"url": "https://github.com/fabpot",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"url": "https://github.com/nicolas-grekas",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2025-01-28T15:51:35+00:00"
|
"time": "2025-09-11T10:12:26+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/http-client-contracts",
|
"name": "symfony/http-client-contracts",
|
||||||
"version": "v3.5.2",
|
"version": "v3.6.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/http-client-contracts.git",
|
"url": "https://github.com/symfony/http-client-contracts.git",
|
||||||
"reference": "ee8d807ab20fcb51267fdace50fbe3494c31e645"
|
"reference": "75d7043853a42837e68111812f4d964b01e5101c"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/ee8d807ab20fcb51267fdace50fbe3494c31e645",
|
"url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/75d7043853a42837e68111812f4d964b01e5101c",
|
||||||
"reference": "ee8d807ab20fcb51267fdace50fbe3494c31e645",
|
"reference": "75d7043853a42837e68111812f4d964b01e5101c",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
|
@ -2517,7 +2521,7 @@
|
||||||
"name": "symfony/contracts"
|
"name": "symfony/contracts"
|
||||||
},
|
},
|
||||||
"branch-alias": {
|
"branch-alias": {
|
||||||
"dev-main": "3.5-dev"
|
"dev-main": "3.6-dev"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
|
|
@ -2553,7 +2557,7 @@
|
||||||
"standards"
|
"standards"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/http-client-contracts/tree/v3.5.2"
|
"source": "https://github.com/symfony/http-client-contracts/tree/v3.6.0"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
|
@ -2569,20 +2573,20 @@
|
||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2024-12-07T08:49:48+00:00"
|
"time": "2025-04-29T11:18:49+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/options-resolver",
|
"name": "symfony/options-resolver",
|
||||||
"version": "v7.2.0",
|
"version": "v7.3.3",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/options-resolver.git",
|
"url": "https://github.com/symfony/options-resolver.git",
|
||||||
"reference": "7da8fbac9dcfef75ffc212235d76b2754ce0cf50"
|
"reference": "0ff2f5c3df08a395232bbc3c2eb7e84912df911d"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/options-resolver/zipball/7da8fbac9dcfef75ffc212235d76b2754ce0cf50",
|
"url": "https://api.github.com/repos/symfony/options-resolver/zipball/0ff2f5c3df08a395232bbc3c2eb7e84912df911d",
|
||||||
"reference": "7da8fbac9dcfef75ffc212235d76b2754ce0cf50",
|
"reference": "0ff2f5c3df08a395232bbc3c2eb7e84912df911d",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
|
@ -2620,7 +2624,7 @@
|
||||||
"options"
|
"options"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/options-resolver/tree/v7.2.0"
|
"source": "https://github.com/symfony/options-resolver/tree/v7.3.3"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
|
@ -2631,16 +2635,20 @@
|
||||||
"url": "https://github.com/fabpot",
|
"url": "https://github.com/fabpot",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"url": "https://github.com/nicolas-grekas",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2024-11-20T11:17:29+00:00"
|
"time": "2025-08-05T10:16:07+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/polyfill-ctype",
|
"name": "symfony/polyfill-ctype",
|
||||||
"version": "v1.31.0",
|
"version": "v1.33.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/polyfill-ctype.git",
|
"url": "https://github.com/symfony/polyfill-ctype.git",
|
||||||
|
|
@ -2699,7 +2707,7 @@
|
||||||
"portable"
|
"portable"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
|
"source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
|
@ -2710,6 +2718,10 @@
|
||||||
"url": "https://github.com/fabpot",
|
"url": "https://github.com/fabpot",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"url": "https://github.com/nicolas-grekas",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
|
|
@ -2719,16 +2731,16 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/polyfill-intl-idn",
|
"name": "symfony/polyfill-intl-idn",
|
||||||
"version": "v1.31.0",
|
"version": "v1.32.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/polyfill-intl-idn.git",
|
"url": "https://github.com/symfony/polyfill-intl-idn.git",
|
||||||
"reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
|
"reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
|
"url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
|
||||||
"reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
|
"reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
|
@ -2782,7 +2794,7 @@
|
||||||
"shim"
|
"shim"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
|
"source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.32.0"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
|
@ -2798,11 +2810,11 @@
|
||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2024-09-09T11:45:10+00:00"
|
"time": "2024-09-10T14:38:51+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/polyfill-intl-normalizer",
|
"name": "symfony/polyfill-intl-normalizer",
|
||||||
"version": "v1.31.0",
|
"version": "v1.33.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/polyfill-intl-normalizer.git",
|
"url": "https://github.com/symfony/polyfill-intl-normalizer.git",
|
||||||
|
|
@ -2863,7 +2875,7 @@
|
||||||
"shim"
|
"shim"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
|
"source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
|
@ -2874,6 +2886,10 @@
|
||||||
"url": "https://github.com/fabpot",
|
"url": "https://github.com/fabpot",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"url": "https://github.com/nicolas-grekas",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
|
|
@ -2883,19 +2899,20 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/polyfill-mbstring",
|
"name": "symfony/polyfill-mbstring",
|
||||||
"version": "v1.31.0",
|
"version": "v1.32.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/polyfill-mbstring.git",
|
"url": "https://github.com/symfony/polyfill-mbstring.git",
|
||||||
"reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
|
"reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
|
"url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
|
||||||
"reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
|
"reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
"ext-iconv": "*",
|
||||||
"php": ">=7.2"
|
"php": ">=7.2"
|
||||||
},
|
},
|
||||||
"provide": {
|
"provide": {
|
||||||
|
|
@ -2943,7 +2960,7 @@
|
||||||
"shim"
|
"shim"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
|
"source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
|
@ -2959,20 +2976,20 @@
|
||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2024-09-09T11:45:10+00:00"
|
"time": "2024-12-23T08:48:59+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/polyfill-php80",
|
"name": "symfony/polyfill-php80",
|
||||||
"version": "v1.31.0",
|
"version": "v1.33.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/polyfill-php80.git",
|
"url": "https://github.com/symfony/polyfill-php80.git",
|
||||||
"reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
|
"reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
|
"url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
|
||||||
"reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
|
"reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
|
@ -3023,7 +3040,7 @@
|
||||||
"shim"
|
"shim"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
|
"source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
|
@ -3034,25 +3051,109 @@
|
||||||
"url": "https://github.com/fabpot",
|
"url": "https://github.com/fabpot",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"url": "https://github.com/nicolas-grekas",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2024-09-09T11:45:10+00:00"
|
"time": "2025-01-02T08:10:11+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/service-contracts",
|
"name": "symfony/polyfill-php83",
|
||||||
"version": "v3.5.1",
|
"version": "v1.33.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/service-contracts.git",
|
"url": "https://github.com/symfony/polyfill-php83.git",
|
||||||
"reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
|
"reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
|
"url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5",
|
||||||
"reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
|
"reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"php": ">=7.2"
|
||||||
|
},
|
||||||
|
"type": "library",
|
||||||
|
"extra": {
|
||||||
|
"thanks": {
|
||||||
|
"url": "https://github.com/symfony/polyfill",
|
||||||
|
"name": "symfony/polyfill"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"autoload": {
|
||||||
|
"files": [
|
||||||
|
"bootstrap.php"
|
||||||
|
],
|
||||||
|
"psr-4": {
|
||||||
|
"Symfony\\Polyfill\\Php83\\": ""
|
||||||
|
},
|
||||||
|
"classmap": [
|
||||||
|
"Resources/stubs"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"MIT"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Nicolas Grekas",
|
||||||
|
"email": "p@tchwork.com"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Symfony Community",
|
||||||
|
"homepage": "https://symfony.com/contributors"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
|
||||||
|
"homepage": "https://symfony.com",
|
||||||
|
"keywords": [
|
||||||
|
"compatibility",
|
||||||
|
"polyfill",
|
||||||
|
"portable",
|
||||||
|
"shim"
|
||||||
|
],
|
||||||
|
"support": {
|
||||||
|
"source": "https://github.com/symfony/polyfill-php83/tree/v1.33.0"
|
||||||
|
},
|
||||||
|
"funding": [
|
||||||
|
{
|
||||||
|
"url": "https://symfony.com/sponsor",
|
||||||
|
"type": "custom"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://github.com/fabpot",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://github.com/nicolas-grekas",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
||||||
|
"type": "tidelift"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"time": "2025-07-08T02:45:35+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "symfony/service-contracts",
|
||||||
|
"version": "v3.6.0",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/symfony/service-contracts.git",
|
||||||
|
"reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/symfony/service-contracts/zipball/f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
|
||||||
|
"reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
|
@ -3070,7 +3171,7 @@
|
||||||
"name": "symfony/contracts"
|
"name": "symfony/contracts"
|
||||||
},
|
},
|
||||||
"branch-alias": {
|
"branch-alias": {
|
||||||
"dev-main": "3.5-dev"
|
"dev-main": "3.6-dev"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
|
|
@ -3106,7 +3207,7 @@
|
||||||
"standards"
|
"standards"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
|
"source": "https://github.com/symfony/service-contracts/tree/v3.6.0"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
|
@ -3122,20 +3223,20 @@
|
||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2024-09-25T14:20:29+00:00"
|
"time": "2025-04-25T09:37:31+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/yaml",
|
"name": "symfony/yaml",
|
||||||
"version": "v6.4.18",
|
"version": "v6.4.21",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/yaml.git",
|
"url": "https://github.com/symfony/yaml.git",
|
||||||
"reference": "bf598c9d9bb4a22f495a4e26e4c4fce2f8ecefc5"
|
"reference": "f01987f45676778b474468aa266fe2eda1f2bc7e"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/yaml/zipball/bf598c9d9bb4a22f495a4e26e4c4fce2f8ecefc5",
|
"url": "https://api.github.com/repos/symfony/yaml/zipball/f01987f45676778b474468aa266fe2eda1f2bc7e",
|
||||||
"reference": "bf598c9d9bb4a22f495a4e26e4c4fce2f8ecefc5",
|
"reference": "f01987f45676778b474468aa266fe2eda1f2bc7e",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
|
@ -3178,7 +3279,7 @@
|
||||||
"description": "Loads and dumps YAML files",
|
"description": "Loads and dumps YAML files",
|
||||||
"homepage": "https://symfony.com",
|
"homepage": "https://symfony.com",
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/yaml/tree/v6.4.18"
|
"source": "https://github.com/symfony/yaml/tree/v6.4.21"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
|
@ -3194,7 +3295,7 @@
|
||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2025-01-07T09:44:41+00:00"
|
"time": "2025-04-04T09:48:44+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "tobimori/kirby-seo",
|
"name": "tobimori/kirby-seo",
|
||||||
|
|
|
||||||
BIN
layouts.zip
Normal file
BIN
layouts.zip
Normal file
Binary file not shown.
BIN
layouts/__MACOSX/layouts/._.DS_Store
Normal file
BIN
layouts/__MACOSX/layouts/._.DS_Store
Normal file
Binary file not shown.
BIN
layouts/__MACOSX/layouts/._items
Normal file
BIN
layouts/__MACOSX/layouts/._items
Normal file
Binary file not shown.
BIN
layouts/__MACOSX/layouts/._posts
Normal file
BIN
layouts/__MACOSX/layouts/._posts
Normal file
Binary file not shown.
BIN
layouts/__MACOSX/layouts/_default/._.DS_Store
Normal file
BIN
layouts/__MACOSX/layouts/_default/._.DS_Store
Normal file
Binary file not shown.
BIN
layouts/__MACOSX/layouts/_default/._index.html
Normal file
BIN
layouts/__MACOSX/layouts/_default/._index.html
Normal file
Binary file not shown.
BIN
layouts/__MACOSX/layouts/_default/._list.html
Normal file
BIN
layouts/__MACOSX/layouts/_default/._list.html
Normal file
Binary file not shown.
BIN
layouts/__MACOSX/layouts/_default/._single.html
Normal file
BIN
layouts/__MACOSX/layouts/_default/._single.html
Normal file
Binary file not shown.
BIN
layouts/__MACOSX/layouts/_default/._taxonomy.html
Normal file
BIN
layouts/__MACOSX/layouts/_default/._taxonomy.html
Normal file
Binary file not shown.
BIN
layouts/__MACOSX/layouts/partials/._.DS_Store
Normal file
BIN
layouts/__MACOSX/layouts/partials/._.DS_Store
Normal file
Binary file not shown.
BIN
layouts/__MACOSX/layouts/partials/._card_collection.html
Normal file
BIN
layouts/__MACOSX/layouts/partials/._card_collection.html
Normal file
Binary file not shown.
BIN
layouts/__MACOSX/layouts/partials/._card_item.html
Normal file
BIN
layouts/__MACOSX/layouts/partials/._card_item.html
Normal file
Binary file not shown.
BIN
layouts/__MACOSX/layouts/partials/._card_post.html
Normal file
BIN
layouts/__MACOSX/layouts/partials/._card_post.html
Normal file
Binary file not shown.
BIN
layouts/__MACOSX/layouts/partials/._carousel.html
Normal file
BIN
layouts/__MACOSX/layouts/partials/._carousel.html
Normal file
Binary file not shown.
BIN
layouts/__MACOSX/layouts/partials/._collections-list.html
Normal file
BIN
layouts/__MACOSX/layouts/partials/._collections-list.html
Normal file
Binary file not shown.
BIN
layouts/__MACOSX/layouts/partials/._img-responsive.html
Normal file
BIN
layouts/__MACOSX/layouts/partials/._img-responsive.html
Normal file
Binary file not shown.
BIN
layouts/__MACOSX/layouts/partials/._map-item.html
Normal file
BIN
layouts/__MACOSX/layouts/partials/._map-item.html
Normal file
Binary file not shown.
BIN
layouts/__MACOSX/layouts/partials/._menu.html
Normal file
BIN
layouts/__MACOSX/layouts/partials/._menu.html
Normal file
Binary file not shown.
BIN
layouts/__MACOSX/layouts/partials/._site-header.html
Normal file
BIN
layouts/__MACOSX/layouts/partials/._site-header.html
Normal file
Binary file not shown.
BIN
layouts/__MACOSX/layouts/partials/._tags.html
Normal file
BIN
layouts/__MACOSX/layouts/partials/._tags.html
Normal file
Binary file not shown.
BIN
layouts/__MACOSX/layouts/partials/icons/._.DS_Store
Normal file
BIN
layouts/__MACOSX/layouts/partials/icons/._.DS_Store
Normal file
Binary file not shown.
BIN
layouts/__MACOSX/layouts/partials/icons/._dark-mode.svg
Normal file
BIN
layouts/__MACOSX/layouts/partials/icons/._dark-mode.svg
Normal file
Binary file not shown.
BIN
layouts/__MACOSX/layouts/partials/icons/._map-point-outline.svg
Normal file
BIN
layouts/__MACOSX/layouts/partials/icons/._map-point-outline.svg
Normal file
Binary file not shown.
BIN
layouts/__MACOSX/layouts/partials/icons/._map-point.svg
Normal file
BIN
layouts/__MACOSX/layouts/partials/icons/._map-point.svg
Normal file
Binary file not shown.
BIN
layouts/__MACOSX/layouts/partials/icons/._nav_next.svg
Normal file
BIN
layouts/__MACOSX/layouts/partials/icons/._nav_next.svg
Normal file
Binary file not shown.
BIN
layouts/__MACOSX/layouts/partials/icons/._nav_previous.svg
Normal file
BIN
layouts/__MACOSX/layouts/partials/icons/._nav_previous.svg
Normal file
Binary file not shown.
BIN
layouts/__MACOSX/layouts/partials/icons/._search.svg
Normal file
BIN
layouts/__MACOSX/layouts/partials/icons/._search.svg
Normal file
Binary file not shown.
BIN
layouts/__MACOSX/layouts/partials/icons/._translate.svg
Normal file
BIN
layouts/__MACOSX/layouts/partials/icons/._translate.svg
Normal file
Binary file not shown.
|
|
@ -1,15 +0,0 @@
|
||||||
{
|
|
||||||
"env": {
|
|
||||||
"browser": true,
|
|
||||||
"es2021": true
|
|
||||||
},
|
|
||||||
"extends": [
|
|
||||||
"eslint:recommended",
|
|
||||||
"plugin:vue/recommended",
|
|
||||||
"prettier"
|
|
||||||
],
|
|
||||||
"parserOptions": {
|
|
||||||
"ecmaVersion": 12,
|
|
||||||
"sourceType": "module"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
4
site/plugins/code-editor/.gitignore
vendored
4
site/plugins/code-editor/.gitignore
vendored
|
|
@ -1,2 +1,6 @@
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
.cache
|
||||||
node_modules
|
node_modules
|
||||||
|
package-lock.json
|
||||||
|
yarn.lock
|
||||||
|
composer.lock
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# Kirby – Code editor
|
# Kirby – Code editor
|
||||||
|
|
||||||
Code editor field for Kirby 3 and 4.
|
Code editor field for Kirby 3, 4 and 5.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|
@ -8,7 +8,7 @@ Code editor field for Kirby 3 and 4.
|
||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
|
|
||||||
> This plugin is completely free and published under the MIT license. However, if you are using it in a commercial project and want to help me keep up with maintenance, please consider [making a donation of your choice](https://paypal.me/sylvainjl) or purchasing your license(s) through [my affiliate link](https://a.paddle.com/v2/click/1129/36369?link=1170).
|
> This plugin is completely free and published under the MIT license. However, if you are using it in a commercial project and want to help me keep up with maintenance, you can consider [making a donation of your choice](https://paypal.me/sylvainjl).
|
||||||
|
|
||||||
- [1. Installation](#1-installation)
|
- [1. Installation](#1-installation)
|
||||||
- [2. Setup](#2-setup)
|
- [2. Setup](#2-setup)
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
{
|
{
|
||||||
"name": "sylvainjule/code-editor",
|
"name": "sylvainjule/code-editor",
|
||||||
"description": "Code editor field for Kirby 3 and 4",
|
"description": "Code editor field for Kirby 3, 4 and 5",
|
||||||
"type": "kirby-plugin",
|
"type": "kirby-plugin",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"version": "1.0.3",
|
"version": "1.1.0",
|
||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "Sylvain Julé",
|
"name": "Sylvain Julé",
|
||||||
|
|
@ -11,7 +11,7 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"require": {
|
"require": {
|
||||||
"getkirby/composer-installer": "^1.1"
|
"getkirby/composer-installer": "^1.2"
|
||||||
},
|
},
|
||||||
"extra": {
|
"extra": {
|
||||||
"installer-name": "code-editor"
|
"installer-name": "code-editor"
|
||||||
|
|
|
||||||
28
site/plugins/code-editor/eslint.config.mjs
Normal file
28
site/plugins/code-editor/eslint.config.mjs
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
import js from "@eslint/js";
|
||||||
|
import prettier from "eslint-config-prettier";
|
||||||
|
import vue from "eslint-plugin-vue";
|
||||||
|
|
||||||
|
export default [
|
||||||
|
js.configs.recommended,
|
||||||
|
...vue.configs["flat/vue2-recommended"],
|
||||||
|
prettier,
|
||||||
|
{
|
||||||
|
rules: {
|
||||||
|
"vue/attributes-order": "error",
|
||||||
|
"vue/component-definition-name-casing": "off",
|
||||||
|
"vue/html-closing-bracket-newline": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
singleline: "never",
|
||||||
|
multiline: "always"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"vue/multi-word-component-names": "off",
|
||||||
|
"vue/require-default-prop": "off",
|
||||||
|
"vue/require-prop-types": "error"
|
||||||
|
},
|
||||||
|
languageOptions: {
|
||||||
|
ecmaVersion: 2022
|
||||||
|
}
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
@ -1 +1 @@
|
||||||
.prism-editor-wrapper{width:100%;height:100%;display:flex;align-items:flex-start;overflow:auto;-o-tab-size:1.5em;tab-size:1.5em;-moz-tab-size:1.5em}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.prism-editor-wrapper .prism-editor__textarea{color:transparent!important}.prism-editor-wrapper .prism-editor__textarea::-moz-selection{background-color:#accef7!important;color:transparent!important}.prism-editor-wrapper .prism-editor__textarea::selection{background-color:#accef7!important;color:transparent!important}}.prism-editor-wrapper .prism-editor__container{position:relative;text-align:left;box-sizing:border-box;padding:0;overflow:hidden;width:100%}.prism-editor-wrapper .prism-editor__line-numbers{height:100%;overflow:hidden;flex-shrink:0;padding-top:4px;margin-top:0;margin-right:10px}.prism-editor-wrapper .prism-editor__line-number{text-align:right;white-space:nowrap}.prism-editor-wrapper .prism-editor__textarea{position:absolute;top:0;left:0;height:100%;width:100%;resize:none;color:inherit;overflow:hidden;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;-webkit-text-fill-color:transparent}.prism-editor-wrapper .prism-editor__editor,.prism-editor-wrapper .prism-editor__textarea{margin:0;border:0;background:none;box-sizing:inherit;display:inherit;font-family:inherit;font-size:inherit;font-style:inherit;font-variant-ligatures:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;-moz-tab-size:inherit;-o-tab-size:inherit;tab-size:inherit;text-indent:inherit;text-rendering:inherit;text-transform:inherit;white-space:pre-wrap;word-wrap:keep-all;overflow-wrap:break-word;padding:0}.prism-editor-wrapper .prism-editor__textarea--empty{-webkit-text-fill-color:inherit!important}.prism-editor-wrapper .prism-editor__editor{position:relative;pointer-events:none}code[class*=language-],pre[class*=language-]{color:#ccc;background:none;font-family:Consolas,Monaco,Andale Mono,Ubuntu Mono,monospace;font-size:1em;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto}:not(pre)>code[class*=language-],pre[class*=language-]{background:#2d2d2d}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.comment,.token.block-comment,.token.prolog,.token.doctype,.token.cdata{color:#999}.token.punctuation{color:#ccc}.token.tag,.token.attr-name,.token.namespace,.token.deleted{color:#e2777a}.token.function-name{color:#6196cc}.token.boolean,.token.number,.token.function{color:#f08d49}.token.property,.token.class-name,.token.constant,.token.symbol{color:#f8c555}.token.selector,.token.important,.token.atrule,.token.keyword,.token.builtin{color:#cc99cd}.token.string,.token.char,.token.attr-value,.token.regex,.token.variable{color:#7ec699}.token.operator,.token.entity,.token.url{color:#67cdcc}.token.important,.token.bold{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help}.token.inserted{color:green}.k-code-editor-input{background:#2d2d2d;color:#ccc;font-family:Fira code,Fira Mono,Consolas,Menlo,Courier,monospace;font-size:.9rem;line-height:1.5;padding:10px}.k-code-editor-input[data-size=small]{min-height:7.5rem}.k-code-editor-input[data-size=medium]{min-height:15rem}.k-code-editor-input[data-size=large],.k-code-editor-input[data-size=huge]{min-height:30rem}.prism-editor__textarea:focus{outline:none}
|
.prism-editor-wrapper{width:100%;height:100%;display:flex;align-items:flex-start;overflow:auto;-o-tab-size:1.5em;tab-size:1.5em;-moz-tab-size:1.5em}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.prism-editor-wrapper .prism-editor__textarea{color:transparent!important}.prism-editor-wrapper .prism-editor__textarea::-moz-selection{background-color:#accef7!important;color:transparent!important}.prism-editor-wrapper .prism-editor__textarea::selection{background-color:#accef7!important;color:transparent!important}}.prism-editor-wrapper .prism-editor__container{position:relative;text-align:left;box-sizing:border-box;padding:0;overflow:hidden;width:100%}.prism-editor-wrapper .prism-editor__line-numbers{height:100%;overflow:hidden;flex-shrink:0;padding-top:4px;margin-top:0;margin-right:10px}.prism-editor-wrapper .prism-editor__line-number{text-align:right;white-space:nowrap}.prism-editor-wrapper .prism-editor__textarea{position:absolute;top:0;left:0;height:100%;width:100%;resize:none;color:inherit;overflow:hidden;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;-webkit-text-fill-color:transparent}.prism-editor-wrapper .prism-editor__editor,.prism-editor-wrapper .prism-editor__textarea{margin:0;border:0;background:none;box-sizing:inherit;display:inherit;font-family:inherit;font-size:inherit;font-style:inherit;font-variant-ligatures:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;-moz-tab-size:inherit;-o-tab-size:inherit;tab-size:inherit;text-indent:inherit;text-rendering:inherit;text-transform:inherit;white-space:pre-wrap;word-wrap:keep-all;overflow-wrap:break-word;padding:0}.prism-editor-wrapper .prism-editor__textarea--empty{-webkit-text-fill-color:inherit!important}.prism-editor-wrapper .prism-editor__editor{position:relative;pointer-events:none}code[class*=language-],pre[class*=language-]{color:#ccc;background:none;font-family:Consolas,Monaco,Andale Mono,Ubuntu Mono,monospace;font-size:1em;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto}:not(pre)>code[class*=language-],pre[class*=language-]{background:#2d2d2d}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.comment,.token.block-comment,.token.prolog,.token.doctype,.token.cdata{color:#999}.token.punctuation{color:#ccc}.token.tag,.token.attr-name,.token.namespace,.token.deleted{color:#e2777a}.token.function-name{color:#6196cc}.token.boolean,.token.number,.token.function{color:#f08d49}.token.property,.token.class-name,.token.constant,.token.symbol{color:#f8c555}.token.selector,.token.important,.token.atrule,.token.keyword,.token.builtin{color:#cc99cd}.token.string,.token.char,.token.attr-value,.token.regex,.token.variable{color:#7ec699}.token.operator,.token.entity,.token.url{color:#67cdcc}.token.important,.token.bold{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help}.token.inserted{color:green}.k-code-editor-input{background:light-dark(var(--color-gray-950),var(--input-color-back));color:var(--color-gray-200);font-family:var(--font-mono);font-size:var(--text-sm);line-height:1.5;padding:var(--spacing-2);border-radius:var(--rounded)}.k-code-editor-input[data-size=small]{min-height:7.5rem}.k-code-editor-input[data-size=medium]{min-height:15rem}.k-code-editor-input[data-size=large]{min-height:30rem}.k-code-editor-input[data-size=huge]{min-height:45rem}.prism-editor__textarea:focus{outline:none}
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -1,15 +1,15 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
Kirby::plugin('sylvainjule/code-editor', [
|
Kirby::plugin('sylvainjule/code-editor', [
|
||||||
'options' => [
|
'options' => array(
|
||||||
'language' => 'css',
|
'language' => 'css',
|
||||||
'size' => 'small',
|
'size' => 'small',
|
||||||
'lineNumbers' => true,
|
'lineNumbers' => true,
|
||||||
'tabSize' => 4,
|
'tabSize' => 4,
|
||||||
'insertSpaces' => true,
|
'insertSpaces' => true,
|
||||||
'ignoreTabKey' => false,
|
'ignoreTabKey' => false,
|
||||||
],
|
),
|
||||||
'fields' => [
|
'fields' => array(
|
||||||
'code-editor' => require_once __DIR__ . '/lib/fields/code-editor.php',
|
'code-editor' => require_once __DIR__ . '/lib/fields/code-editor.php',
|
||||||
],
|
),
|
||||||
]);
|
]);
|
||||||
|
|
|
||||||
6615
site/plugins/code-editor/package-lock.json
generated
6615
site/plugins/code-editor/package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
|
@ -18,13 +18,13 @@
|
||||||
"prepare": "node src/node/patchVuePrismEditor.mjs"
|
"prepare": "node src/node/patchVuePrismEditor.mjs"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"consola": "^2.15.3",
|
"consola": "^3.4.2",
|
||||||
"eslint": "^8.3.0",
|
"eslint": "^9.27.0",
|
||||||
"eslint-config-prettier": "^8.3.0",
|
"eslint-config-prettier": "^10.1.5",
|
||||||
"eslint-plugin-vue": "^8.1.1",
|
"eslint-plugin-vue": "^9.33.0",
|
||||||
"kirbyup": "^0.21.1",
|
"kirbyup": "^3.3.0",
|
||||||
"prettier": "^2.5.0",
|
"prettier": "^3.5.3",
|
||||||
"prismjs": "^1.25.0",
|
"prismjs": "^1.30.0",
|
||||||
"vue-prism-editor": "^1.3.0"
|
"vue-prism-editor": "^1.3.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,62 +0,0 @@
|
||||||
/* Colors
|
|
||||||
---------------------------------*/
|
|
||||||
|
|
||||||
$color-black: #000;
|
|
||||||
$color-white: #fff;
|
|
||||||
$color-dark: #16171a;
|
|
||||||
$color-dark-grey: #777;
|
|
||||||
$color-light: #efefef;
|
|
||||||
$color-light-grey: #999;
|
|
||||||
$color-background: $color-light;
|
|
||||||
$color-positive: #5d800d;
|
|
||||||
$color-positive-border: $color-positive;
|
|
||||||
$color-positive-outline: rgba($color-positive, 0.25);
|
|
||||||
$color-positive-on-dark: #a7bd68;
|
|
||||||
$color-focus: #4271ae;
|
|
||||||
$color-focus-border: $color-focus;
|
|
||||||
$color-focus-outline: rgba($color-focus, 0.25);
|
|
||||||
$color-focus-on-dark: #81a2be;
|
|
||||||
$color-notice: #f5871f;
|
|
||||||
$color-notice-on-dark: #de935f;
|
|
||||||
$color-negative: #c82829;
|
|
||||||
$color-negative-border: $color-negative;
|
|
||||||
$color-negative-outline: rgba($color-negative, 0.25);
|
|
||||||
$color-negative-on-dark: #d16464;
|
|
||||||
$color-border: #ccc;
|
|
||||||
$color-backdrop: rgba($color-dark, 0.6);
|
|
||||||
$color-inset: #ebebeb;
|
|
||||||
|
|
||||||
|
|
||||||
/* Breakpoint
|
|
||||||
---------------------------------*/
|
|
||||||
|
|
||||||
$breakpoint-small: 30em;
|
|
||||||
$breakpoint-menu: 45em;
|
|
||||||
$breakpoint-medium: 65em;
|
|
||||||
$breakpoint-large: 90em;
|
|
||||||
$breakpoint-huge: 120em;
|
|
||||||
|
|
||||||
|
|
||||||
/* Fields
|
|
||||||
---------------------------------*/
|
|
||||||
|
|
||||||
$field-input-padding: .5rem;
|
|
||||||
$field-input-height: 2.25rem;
|
|
||||||
$field-input-line-height: 1.25rem;
|
|
||||||
|
|
||||||
|
|
||||||
/* Typography
|
|
||||||
---------------------------------*/
|
|
||||||
|
|
||||||
$font-size-tiny: 0.75rem;
|
|
||||||
$font-size-small: 0.875rem;
|
|
||||||
$font-size-medium: 1rem;
|
|
||||||
$font-size-large: 1.25rem;
|
|
||||||
$font-size-huge: 1.5rem;
|
|
||||||
$font-size-monster: 1.75rem;
|
|
||||||
|
|
||||||
$font-weight-normal: 400;
|
|
||||||
$font-weight-bold: 600;
|
|
||||||
|
|
||||||
$font-family-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
|
||||||
$font-family-mono: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace;
|
|
||||||
|
|
@ -1,29 +0,0 @@
|
||||||
@import
|
|
||||||
'abstracts/variables.scss';
|
|
||||||
|
|
||||||
.k-code-editor-input {
|
|
||||||
background: #2d2d2d;
|
|
||||||
color: #ccc;
|
|
||||||
font-family: Fira code, Fira Mono, Consolas, Menlo, Courier, monospace;
|
|
||||||
font-size: .9rem;
|
|
||||||
line-height: 1.5;
|
|
||||||
padding: 10px;
|
|
||||||
|
|
||||||
&[data-size="small"] {
|
|
||||||
min-height: 7.5rem;
|
|
||||||
}
|
|
||||||
&[data-size="medium"] {
|
|
||||||
min-height: 15rem;
|
|
||||||
}
|
|
||||||
&[data-size="large"] {
|
|
||||||
min-height: 30rem;
|
|
||||||
}
|
|
||||||
&[data-size="huge"] {
|
|
||||||
min-height: 30rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.prism-editor__textarea:focus {
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
|
|
@ -67,6 +67,31 @@ export default {
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss">
|
<style>
|
||||||
@import "../../assets/css/styles.scss";
|
.k-code-editor-input {
|
||||||
|
background: light-dark(var(--color-gray-950), var(--input-color-back));
|
||||||
|
color: var(--color-gray-200);
|
||||||
|
font-family: var(--font-mono);
|
||||||
|
font-size: var(--text-sm);
|
||||||
|
line-height: 1.5;
|
||||||
|
padding: var(--spacing-2);
|
||||||
|
border-radius: var(--rounded);
|
||||||
|
}
|
||||||
|
|
||||||
|
.k-code-editor-input[data-size="small"] {
|
||||||
|
min-height: 7.5rem;
|
||||||
|
}
|
||||||
|
.k-code-editor-input[data-size="medium"] {
|
||||||
|
min-height: 15rem;
|
||||||
|
}
|
||||||
|
.k-code-editor-input[data-size="large"] {
|
||||||
|
min-height: 30rem;
|
||||||
|
}
|
||||||
|
.k-code-editor-input[data-size="huge"] {
|
||||||
|
min-height: 45rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.prism-editor__textarea:focus {
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
<?php if (!$page->is(page('lettre')) && !$page->is(page('a-propos'))): ?>
|
<?php if (!$page->is(page('lettre')) && !$page->is(page('a-propos'))): ?>
|
||||||
<footer id="main-footer">
|
<footer id="main-footer">
|
||||||
|
<button data-theme-toggler>Changer de mode</button>
|
||||||
<ul id="links">
|
<ul id="links">
|
||||||
<li class="open-nav-wrapper hidden">
|
<li class="open-nav-wrapper hidden">
|
||||||
<button class="plus open-nav" title="chercher parmi les textes">textes</button>
|
<button class="plus open-nav" title="chercher parmi les textes">textes</button>
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,8 @@ $entryTopPos ??= 20;
|
||||||
</script>
|
</script>
|
||||||
<script defer src="<?= url('assets/js/ragadjust.js') ?>">
|
<script defer src="<?= url('assets/js/ragadjust.js') ?>">
|
||||||
</script>
|
</script>
|
||||||
|
<script defer src="<?= url('assets/js/light-mode.js') ?>">
|
||||||
|
</script>
|
||||||
|
|
||||||
<meta name="robots" content="noindex, nofollow, noarchive">
|
<meta name="robots" content="noindex, nofollow, noarchive">
|
||||||
|
|
||||||
|
|
@ -62,6 +64,14 @@ $entryTopPos ??= 20;
|
||||||
<meta name="apple-mobile-web-app-title" content="actuel-inactuel" />
|
<meta name="apple-mobile-web-app-title" content="actuel-inactuel" />
|
||||||
<link rel="manifest" href="/site.webmanifest" />
|
<link rel="manifest" href="/site.webmanifest" />
|
||||||
|
|
||||||
|
<!-- ICON -->
|
||||||
|
<style>
|
||||||
|
:root {
|
||||||
|
--icon-search: url("<?= url('assets/images/icons/search.svg') ?>");
|
||||||
|
--icon-close: url("<?= url('assets/images/icons/close.svg') ?>");
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
<?php if ($page->additionnalCss()->isNotEmpty()): ?>
|
<?php if ($page->additionnalCss()->isNotEmpty()): ?>
|
||||||
<!-- CUSTOM CSS -->
|
<!-- CUSTOM CSS -->
|
||||||
<style>
|
<style>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue