inital commit

This commit is contained in:
2026-01-01 15:25:19 +05:30
commit f0ae49465a
36361 changed files with 4894111 additions and 0 deletions

174
node_modules/jodit/examples/assets/app.css generated vendored Normal file
View File

@@ -0,0 +1,174 @@
html {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html,
body {
height: 100%;
margin: 0;
}
body {
font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial,
sans-serif;
font-size: 16px;
-webkit-font-smoothing: antialiased;
font-weight: 300;
line-height: 1.5;
text-rendering: optimizelegibility;
}
body {
display: flex;
flex-direction: column;
}
header,
#main_container {
flex: 1 0 auto;
}
* {
box-sizing: border-box;
}
.table,
.p {
margin: 0 0 16px 0;
}
.table {
max-width: 100%;
border: 0;
border-collapse: collapse;
border-spacing: 0;
empty-cells: show;
}
.table tr {
user-select: none;
}
.table td,
.table th {
user-select: text;
}
.table th,
.table td {
box-sizing: border-box;
padding: 2px 5px;
vertical-align: top;
}
.table td,
.table th {
border: 1px solid #ddd;
}
.container {
width: 1000px;
margin: 0 auto;
}
nav {
overflow: hidden;
height: 30px;
padding: 0;
background: linear-gradient(to left, #28a5f5, #1e87f0);
}
footer nav {
margin-top: 20px;
background: #f9f9f9;
}
nav > ul {
padding: 0;
margin: 0;
}
nav > ul > li {
display: inline-block;
padding: 0;
margin: 0;
list-style: none;
}
nav > ul > li + li {
margin-left: 23px;
}
nav ul li a {
color: #fff;
font-size: 0.625rem;
line-height: 30px;
text-decoration: none;
text-transform: uppercase;
}
nav ul li a:hover {
color: #fff;
text-decoration: underline;
}
footer nav ul li a {
color: #3f3f3f;
}
nav ul li ul {
position: absolute;
z-index: 20;
display: none;
padding: 0;
margin: 0;
background-color: #208bf1;
}
nav > ul > li:hover > ul {
display: block;
}
nav ul li ul li {
display: block;
padding: 0;
margin: 0;
list-style: none;
}
nav ul li ul li a {
padding: 8px;
}
.layout {
display: flex;
flex-direction: row;
}
.layout > * {
}
.leftside {
width: 20%;
padding: 10px 10px 10px 0;
}
.rightside {
width: 80%;
padding: 10px 0 10px 10px;
}
pre {
padding: 10px;
background-color: #3f3f3f;
color: #fff;
white-space: pre-wrap;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: 500;
}

58
node_modules/jodit/examples/assets/app.js generated vendored Normal file
View File

@@ -0,0 +1,58 @@
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
const examples = document.getElementById('examples');
const main_container = document.getElementById('main_container');
const links = {
'index.html': 'All options',
'arabic.lang.html': 'Arabic Language',
'custom-toolbar.html': 'Custom toolbar',
'fullsize.html': 'Fullsize mode',
'inline-mode.html': 'Inline mode',
'custom-icons.html': 'Custom Icons / Font Awesome',
'oneinstance.html': 'One Instance',
'color-picker.html': 'Color Picker',
'theme.html': 'Dark theme'
};
if (examples) {
Object.keys(links).forEach(function (page) {
const child = document.createElement('li');
const a = document.createElement('a');
child.appendChild(a);
a.setAttribute('href', page);
a.innerHTML = links[page];
examples.appendChild(child);
});
}
Array.from(document.getElementsByTagName('pre')).forEach(function (pre) {
if (pre.firstChild.nodeName === 'CODE') {
pre = pre.firstChild;
}
const lines = pre.innerHTML.split('\n');
const first = lines[1].length - lines[1].replace(/^[\s]+/, '').length;
pre.innerHTML = lines
.map(function (line) {
var newline = line.substr(first);
return newline.match(/[^\s]/) ? newline : null;
})
.filter(function (a) {
return a;
})
.join('\n');
});
if (!document.getElementsByTagName('h1').length && main_container) {
const h1 = document.createElement('h1');
h1.innerHTML = document.title;
main_container.insertBefore(h1, main_container.firstChild);
}

BIN
node_modules/jodit/examples/assets/download.jpg generated vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

BIN
node_modules/jodit/examples/assets/icon.png generated vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

BIN
node_modules/jodit/examples/assets/logo.png generated vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB