Merge branch 'dev' of bitbucket.org:venbainformationtechnology/projectb into dev
This commit is contained in:
commit
fe0cd18641
148
addform.html
148
addform.html
@ -516,62 +516,62 @@
|
||||
<div class="row">
|
||||
<div class="col-lg-12 col-md-12">
|
||||
<div class="form_box" id="RTEID">
|
||||
<label>Question Paper Title:</label>
|
||||
<label class="titleSpace">Question Paper Title:</label>
|
||||
<div class="richText" id="Question_title" contenteditable="true" style=" border: 2px solid #EEECFE; margin-top: 4px; color: black;"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-12 col-md-12">
|
||||
<div class="form_box">
|
||||
<label>Description:</label>
|
||||
<label class="titleSpace">Description:</label>
|
||||
<div class="richText" id="Question_description" contenteditable="true" style=" border: 2px solid #EEECFE; margin-top: 4px; color: black;"></div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Meta Datas -->
|
||||
<div class="col-lg-3 col-md-3">
|
||||
<div class="form_box">
|
||||
<label>Max Marks:</label>
|
||||
<label class="titleSpace">Max Marks:</label>
|
||||
<input class="MetaData" id="Max_Marks" >
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-3 col-md-3">
|
||||
<div class="form_box">
|
||||
<label>Course ID:</label>
|
||||
<label class="titleSpace">Course ID:</label>
|
||||
<input class="MetaData" placeholder="" id="Course_ID" >
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-3 col-md-3">
|
||||
<div class="form_box">
|
||||
<label>Course Code:</label>
|
||||
<label class="titleSpace">Course Code:</label>
|
||||
<input class="MetaData" placeholder="" id="Course_Code">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-3 col-md-3">
|
||||
<div class="form_box">
|
||||
<label>Subject ID:</label>
|
||||
<label class="titleSpace">Subject ID:</label>
|
||||
<input class="MetaData" placeholder="" id="Subject_ID">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-3 col-md-3">
|
||||
<div class="form_box">
|
||||
<label>Subject Code:</label>
|
||||
<label class="titleSpace">Subject Code:</label>
|
||||
<input class="MetaData" placeholder="" id="Subject_Code" >
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-3 col-md-3">
|
||||
<div class="form_box">
|
||||
<label>Paper No:</label>
|
||||
<label class="titleSpace">Paper No:</label>
|
||||
<input class="MetaData" placeholder="" id="Paper_No" >
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-3 col-md-3">
|
||||
<div class="form_box">
|
||||
<label>Subject Name:</label>
|
||||
<label class="titleSpace">Subject Name:</label>
|
||||
<input class="MetaData" placeholder="" id="Subject_Name">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-3 col-md-3">
|
||||
<div class="form_box">
|
||||
<label>Sub Paper Prefix:</label>
|
||||
<label class="titleSpace">Sub Paper Prefix:</label>
|
||||
<input class="MetaData" id="Sub_Paper_Prefix">
|
||||
</div>
|
||||
</div>
|
||||
@ -641,8 +641,8 @@
|
||||
</div>
|
||||
|
||||
<!-- jquery js -->
|
||||
<!-- <script src="assets/js/vendor/jquery-3.2.1.min.js"></script> -->
|
||||
<script src="./node_modules/jquery/dist/jquery.min.js" onload="window.$ = window.jQuery = module.exports;"></script>
|
||||
<script src="assets/js/vendor/jquery-3.2.1.min.js" onload="window.$ = window.jQuery = module.exports;"></script>
|
||||
<!-- <script src="./node_modules/jquery/dist/jquery.min.js" onload="window.$ = window.jQuery = module.exports;"></script> -->
|
||||
<!-- bootstrap js -->
|
||||
<script src="assets/js/bootstrap.min.js"></script>
|
||||
<!-- carousel js -->
|
||||
@ -664,7 +664,7 @@
|
||||
<!-- venobox min js -->
|
||||
<script src="venobox/venobox.min.js"></script>
|
||||
<!-- isotope js -->
|
||||
<script src="assets/js/isotope.pkgd.min.js"></script>
|
||||
<!-- <script src="assets/js/isotope.pkgd.min.js"></script> -->
|
||||
<!-- jquery nivo slider pack js -->
|
||||
<script src="assets/js/jquery.nivo.slider.pack.js"></script>
|
||||
<!-- jquery meanmenu js -->
|
||||
@ -709,6 +709,7 @@
|
||||
<script>
|
||||
|
||||
|
||||
localStorage.setItem('scrollPosition', window.scrollY);
|
||||
|
||||
var sidebarWrapper = document.getElementById("questionPaper");
|
||||
|
||||
@ -865,6 +866,8 @@ function loadXML(xmlFileName) {
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
}
|
||||
|
||||
// Function for Save the XML File
|
||||
@ -936,7 +939,7 @@ var Question_title_Div = $("#Question_title");
|
||||
var Question_title_previousDiv = Question_title_Div.prev();
|
||||
Question_title_previousDiv.attr("id", "Question_title_rtc");
|
||||
var setitem = 'Question_title_rtc';
|
||||
$('#Question_title').click(function() {
|
||||
$('#Question_title').focus(function() {
|
||||
|
||||
rtc_hide_and_show(setitem);
|
||||
|
||||
@ -946,7 +949,7 @@ var Question_description_Div = $("#Question_description");
|
||||
var Question_description_previousDiv = Question_description_Div.prev();
|
||||
Question_description_previousDiv.attr("id", "Question_description_rtc");
|
||||
var questionDescriptionRtc = 'Question_description_rtc';
|
||||
$('#Question_description').click(function() {
|
||||
$('#Question_description').focus(function() {
|
||||
|
||||
rtc_hide_and_show(questionDescriptionRtc);
|
||||
|
||||
@ -1055,20 +1058,20 @@ function addSection(title = false, description = false, random_no = false, secti
|
||||
<div class="dropdown " id="toggle-menu">
|
||||
<i class="fa fa-ellipsis-v" style="font-size:20px" aria-hidden="true"></i>
|
||||
<div class="dropdown-content">
|
||||
<button id="popupid_${sectionRandomID}" class="showPopupButton ">Move</button>
|
||||
<button id="popupid_${sectionRandomID}" class="showPopupButton" style="border: 1px solid;">Move</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form_box">
|
||||
<label>Section:</label>
|
||||
<label class="titleSpace">Section:</label>
|
||||
<div class="richText" id="section_title_text_${random_no == false ? text_field_created_time : random_no}" contenteditable="true" style="border: 2px solid #EEECFE; margin-top: 4px;">${title ? title : ''}</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-lg-12 col-md-12">
|
||||
<div class="form_box">
|
||||
<label>Description:</label>
|
||||
<label class="titleSpace">Description:</label>
|
||||
<div class="richText" id="section_description_text_${random_no == false ? text_field_created_time : random_no}" contenteditable="true" style="border: 2px solid #EEECFE; margin-top: 4px;">${title ? description : ''}</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -1301,6 +1304,18 @@ $('#'+Section_Marks_raw_Id).keyup(function() {
|
||||
navpane();
|
||||
|
||||
|
||||
//function for new section add to go that section prevent default
|
||||
var EditScroll = localStorage.getItem('scroll')
|
||||
console.log('sectionEditScroll : ', EditScroll)
|
||||
if(EditScroll !== '1')
|
||||
|
||||
{
|
||||
const targetId = 'section_title_text_' + sectionRandomID;
|
||||
scrollToElementWithoutLink(targetId);
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
//Function for Create a New Question Group
|
||||
@ -1340,8 +1355,6 @@ function addQuestionGroup(idObj)
|
||||
QuestionGroup_ID = text_field_created_time;
|
||||
}
|
||||
|
||||
localStorage.setItem('QuestionGroupId', QuestionGroup_ID)
|
||||
|
||||
var sectionRandomID = localStorage.getItem('sectionId');
|
||||
addQuestionGroup +=
|
||||
`<div draggable='true' class="draggable-group hidedrag" id="draggedGroup_${QuestionGroup_ID}">
|
||||
@ -1352,7 +1365,7 @@ function addQuestionGroup(idObj)
|
||||
<div class="col-lg-12 col-md-12">
|
||||
<div onmouseover="showButtons(this)" id="QuestionGroupButtons_${QuestionGroup_ID}" class="row question element" style="border-top: 10px solid #a658f3; border-radius:10px; margin-top:5px;">
|
||||
|
||||
<div class="items align-items-center hideondrag" style="display: none;">
|
||||
<div class="items align-items-center hideondrag">
|
||||
<span onclick="ReArrangeQuestionsGroup(event)" id="forword_${QuestionGroup_ID}" class="fa fa-chevron-up up-icon"></span>
|
||||
<span onclick="ReArrangeQuestionsGroup(event)" id="backword_${QuestionGroup_ID}" class="fa fa-chevron-down down-icon"></span>
|
||||
</div>
|
||||
@ -1379,14 +1392,14 @@ function addQuestionGroup(idObj)
|
||||
</div>
|
||||
<div class="col-lg-12 col-md-12">
|
||||
<div class="form_box">
|
||||
<label>Questions Group:</label>
|
||||
<label class="titleSpace">Questions Group:</label>
|
||||
<div class="richText" id="subSection_title_text_${QuestionGroup_ID}" contenteditable="true" style=" border: 2px solid #EEECFE; margin-top: 4px;">${idObj.hasOwnProperty('question_group_obj') ? idObj.question_group_obj.group_title : ""}</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-lg-12 col-md-12 hideondrag">
|
||||
<div class="form_box">
|
||||
<label>Questions Group Description:</label>
|
||||
<label class="titleSpace">Questions Group Description:</label>
|
||||
<div class="richText" id="subSection_description_text_${QuestionGroup_ID}" contenteditable="true" style=" border: 2px solid #EEECFE; margin-top: 4px;">${idObj.hasOwnProperty('question_group_obj') ? idObj.question_group_obj.group_description : ""}</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -1578,6 +1591,8 @@ clearSidebarWrapper();
|
||||
navpane();
|
||||
markCalculation()
|
||||
|
||||
|
||||
|
||||
// start the find Parent count and Remove the Fivth Question Group list
|
||||
const value = localStorage.getItem('JSON_FOR_NAV')
|
||||
const parsedValue = JSON.parse(value);
|
||||
@ -1587,12 +1602,16 @@ const value = localStorage.getItem('JSON_FOR_NAV')
|
||||
let originalString = questionGroupId;
|
||||
let substringToRemove = "subSection_title_text_";
|
||||
let modifiedString = originalString.replace(substringToRemove, '');
|
||||
console.log(modifiedString);
|
||||
// let finalString = "QuestionGroupButtons_" + modifiedString;
|
||||
let finalString ="draggedGroup_" +modifiedString;
|
||||
|
||||
var element = document.getElementById(`${finalString}`);
|
||||
var element = document.getElementById(finalString);
|
||||
console.log(element)
|
||||
if (classes < 5) {
|
||||
// console.log("Div not found.");
|
||||
localStorage.setItem('QuestionGroupId', QuestionGroup_ID)
|
||||
|
||||
} else {
|
||||
const Swal = require('sweetalert2');
|
||||
Swal.fire({
|
||||
@ -1603,15 +1622,31 @@ const value = localStorage.getItem('JSON_FOR_NAV')
|
||||
});
|
||||
|
||||
element.parentNode.removeChild(element);
|
||||
// console.log("Div removed successfully.");
|
||||
// localStorage.removeItem('yourKey');
|
||||
console.log(element)
|
||||
console.log("Div removed successfully.");
|
||||
}
|
||||
// end of find QG level script
|
||||
|
||||
//function for new QuestionGroup add scroll to the QuestionGroup prevent default
|
||||
var EditScroll = localStorage.getItem('scroll')
|
||||
console.log('QuestionGroup-EditScroll : ', EditScroll)
|
||||
|
||||
if(EditScroll !== '1')
|
||||
|
||||
{
|
||||
const targetId = 'subSection_title_text_' + QuestionGroup_ID;
|
||||
scrollToElementWithoutLink(targetId);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
//Function for Create a New Choice Question in the Section and Question Group
|
||||
// function groupQuestion( question_id = false, section_id = false , group_question_area_id = false, questionTitle = false, questionDescription = false, questionSubType = false, mathEnabled = false, Choice = false, questionAreaId = false, questionGroupId = false, questionRandomNo = false, QuestionGroupRandomNo = false, questionMarks = false, questionUUID = false, group_question_marks = false, group_question_uuid = false, questionDisplayMarks = false, group_question_Display_Marks = false)
|
||||
function groupQuestion(question_id = false, section_id = false , group_question_area_id = false, questionTitle = false, questionDescription = false, questionType = false, questionSubType = false, mathEnabled = false, Choice = false, questionAreaId = false, questionRandomNo = false, questionMarks = false, questionUUID = false, questionDisplayMarks = false)
|
||||
{
|
||||
console.log(group_question_area_id);
|
||||
const ChoiceGroupFixed_UUID = uuidv4();
|
||||
|
||||
var groupQuestion = "";
|
||||
@ -1715,16 +1750,16 @@ function groupQuestion(question_id = false, section_id = false , group_question_
|
||||
<div class="col-lg-12 col-md-12">
|
||||
<input type="hidden" id="Choice_Question_UUID_ID_${addChoiceAreaId}" value="${UUID}">
|
||||
<div class="row">
|
||||
<div class="col-lg-12 col-md-12">
|
||||
<div class="col-lg-12 col-md-12" style="margin-top: -20px">
|
||||
<div class="form_box">
|
||||
<label>Question:</label>
|
||||
<label class="titleSpace">Question:</label>
|
||||
<div class="richText" id="textQuestionName_${addChoiceAreaId}" contenteditable="true" style=" border: 2px solid #EEECFE; margin-top: 4px;">${questionTitle ? questionTitle : ''}</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-lg-12 col-md-12 hideondrag" style="margin-bottom: 50px">
|
||||
<div class="col-lg-12 col-md-12 hideondrag" style="margin-bottom: 5px">
|
||||
<div class="form_box">
|
||||
<label>Subtitle:</label>
|
||||
<label class="titleSpace">Subtitle:</label>
|
||||
<div class="richText" id="textQuestionSubtitle_${addChoiceAreaId}" contenteditable="true" style=" border: 2px solid #EEECFE; margin-top: 4px;">${questionDescription ? questionDescription : ''}</div>
|
||||
<math-field id="textQuestionSubtitle_math_${addChoiceAreaId}" contenteditable="true">${mathEnabled == 'true' ? questionDescription : ''}</math-field>
|
||||
<span class="mathQuestions">Math</span> <input class="checkbox" style="width:14px; height:14px" type="checkbox" id="math_${addChoiceAreaId}">
|
||||
@ -2095,6 +2130,15 @@ navpane();
|
||||
markCalculation();
|
||||
|
||||
|
||||
//function for new ChoiceQuestion add scroll to the ChoiceQuestion prevent default
|
||||
var EditScroll = localStorage.getItem('scroll')
|
||||
console.log('ChoiceQuestion-EditScroll : ', EditScroll)
|
||||
|
||||
if(EditScroll !== '1')
|
||||
{
|
||||
const targetId = 'textQuestionName_' + addChoiceAreaId;
|
||||
scrollToElementWithoutLink(targetId);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -2240,6 +2284,14 @@ $(newChoiceDeleteButtonId).on('click', function() {
|
||||
//Function for Create a New Text Question in the Section and Question Group
|
||||
function textQuestion(QuestionObj)
|
||||
{
|
||||
|
||||
if(QuestionObj.hasOwnProperty('group_question_area_id'))
|
||||
{
|
||||
console.log(QuestionObj.group_question_area_id);
|
||||
var sectionDiv = document.getElementById(QuestionObj.group_question_area_id);
|
||||
console.log(sectionDiv)
|
||||
}
|
||||
|
||||
var textQuestion = "";
|
||||
|
||||
const Text_Question_UUID = uuidv4();
|
||||
@ -2316,16 +2368,16 @@ textQuestion +=
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-12 col-md-12 ">
|
||||
<div class="col-lg-12 col-md-12" style="margin-top: -20px">
|
||||
<input type="hidden" id="Text_Question_UUID_ID_${addTextQuestionId}" value="${QuestionObj.hasOwnProperty('questionUUID') ? QuestionObj.questionUUID : Text_Question_UUID}">
|
||||
<div class="form_box">
|
||||
<label>Question:</label>
|
||||
<label class="titleSpace">Question:</label>
|
||||
<div type="text" class="richText" id="textQuestionName_${addTextQuestionId}" contenteditable="true" style=" border: 2px solid #EEECFE; margin-top: 4px;">${QuestionObj.hasOwnProperty('questionTitle') ? QuestionObj.questionTitle : ''}</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-12 col-md-12 mb-5 hideondrag">
|
||||
<div class="form_box">
|
||||
<label>Subtitle:</label>
|
||||
<label class="titleSpace">Subtitle:</label>
|
||||
<div class="richText" id="textQuestionSubtitle_${addTextQuestionId}" contenteditable="true" style=" border: 2px solid #EEECFE; margin-top: 4px;">${QuestionObj.hasOwnProperty('questionDescription') ? QuestionObj.questionDescription : '' }</div>
|
||||
<math-field id="textQuestionSubtitle_math_${addTextQuestionId}" contenteditable="true">${mathEnabled == 'true' ? QuestionObj.questionDescription : ''}</math-field>
|
||||
<span class="mathQuestions">Math</span> <input class="checkbox" style="width:14px; height:14px" type="checkbox" id="math_${addTextQuestionId}">
|
||||
@ -2570,8 +2622,27 @@ var inputElement = document.getElementById(Textid);
|
||||
clearSidebarWrapper();
|
||||
navpane();
|
||||
markCalculation();
|
||||
|
||||
//function for new TextQuestion add scroll to the TextQuestion prevent default
|
||||
|
||||
var EditScroll = localStorage.getItem('scroll')
|
||||
console.log('TextQuestion-EditScroll : ', typeof(EditScroll));
|
||||
|
||||
if(EditScroll !== '1')
|
||||
{
|
||||
const targetId = 'textQuestionName_' + addTextQuestionId;
|
||||
scrollToElementWithoutLink(targetId);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
//function for Questions REORDER in the SECTION Level
|
||||
function ReArrangeQuestions(e){
|
||||
|
||||
@ -2658,7 +2729,13 @@ function ReArrangeQuestionsGroup(e){
|
||||
navpane();
|
||||
}
|
||||
|
||||
|
||||
//function for Add a new secton, questiongroup and Questions to scroll to go that place
|
||||
function scrollToElementWithoutLink(elementId) {
|
||||
const element = document.getElementById(elementId);
|
||||
if (element) {
|
||||
element.scrollIntoView({ behavior: "smooth", block: "center" });
|
||||
}
|
||||
}
|
||||
|
||||
//Function for Add Group Question inside the Group QUestion Like Question
|
||||
function MultiLevelQuestionGroup(e)
|
||||
@ -2699,7 +2776,10 @@ function addNewQuestions(e, type)
|
||||
//Function For Add a Group Question in the Section Question Area
|
||||
function addNewGroupQuestions(e, type)
|
||||
{
|
||||
|
||||
console.log('type : ',type)
|
||||
clone_id_time = e.target.id;
|
||||
console.log(clone_id_time)
|
||||
var clone_id = clone_id_time.split("_")[1];
|
||||
var group_question_area_id = 'group_question_area_'+clone_id;
|
||||
|
||||
@ -2951,7 +3031,7 @@ function removeClonedQroupQuestion(index)
|
||||
|
||||
// Function to execute the script and display its output in the popup
|
||||
function executeScriptAndDisplayOutput() {
|
||||
console.log("dddddddddddddddddddddddddddddddddddddddddddddddddddd");
|
||||
// console.log("dddddddddddddddddddddddddddddddddddddddddddddddddddd");
|
||||
const popups = document.getElementById("output");
|
||||
popups.innerHTML = "";
|
||||
// Display the popup with the output
|
||||
|
||||
@ -2,6 +2,8 @@ function jsonToHtml(jsonData) {
|
||||
|
||||
// console.log(jsonData);
|
||||
|
||||
localStorage.setItem('scroll', 1)
|
||||
|
||||
if(jsonData == "" || jsonData == null)
|
||||
{
|
||||
|
||||
@ -77,7 +79,7 @@ function jsonToHtml(jsonData) {
|
||||
})
|
||||
|
||||
})
|
||||
|
||||
localStorage.removeItem('scroll');
|
||||
}
|
||||
|
||||
|
||||
|
||||
268
package-lock.json
generated
268
package-lock.json
generated
@ -18,6 +18,7 @@
|
||||
"formidable": "^3.5.1",
|
||||
"get-size": "^3.0.0",
|
||||
"http": "^0.0.1-security",
|
||||
"imagesloaded": "^5.0.0",
|
||||
"is-online": "^10.0.0",
|
||||
"jquery": "^3.7.1",
|
||||
"jquery-ui": "^1.13.2",
|
||||
@ -326,9 +327,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@types/http-cache-semantics": {
|
||||
"version": "4.0.1",
|
||||
"resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz",
|
||||
"integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ=="
|
||||
"version": "4.0.3",
|
||||
"resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.3.tgz",
|
||||
"integrity": "sha512-V46MYLFp08Wf2mmaBhvgjStM3tPa+2GAdy/iqoX+noX1//zje2x4XmrIU0cAwyClATsTmahbtoQ2EwP7I5WSiA=="
|
||||
},
|
||||
"node_modules/@types/keyv": {
|
||||
"version": "3.1.4",
|
||||
@ -340,24 +341,27 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@types/node": {
|
||||
"version": "18.17.14",
|
||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.17.14.tgz",
|
||||
"integrity": "sha512-ZE/5aB73CyGqgQULkLG87N9GnyGe5TcQjv34pwS8tfBs1IkCh0ASM69mydb2znqd6v0eX+9Ytvk6oQRqu8T1Vw==",
|
||||
"dev": true
|
||||
"version": "18.18.7",
|
||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.18.7.tgz",
|
||||
"integrity": "sha512-bw+lEsxis6eqJYW8Ql6+yTqkE6RuFtsQPSe5JxXbqYRFQEER5aJA9a5UH9igqDWm3X4iLHIKOHlnAXLM4mi7uQ==",
|
||||
"dev": true,
|
||||
"dependencies": {
|
||||
"undici-types": "~5.26.4"
|
||||
}
|
||||
},
|
||||
"node_modules/@types/responselike": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz",
|
||||
"integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==",
|
||||
"version": "1.0.2",
|
||||
"resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.2.tgz",
|
||||
"integrity": "sha512-/4YQT5Kp6HxUDb4yhRkm0bJ7TbjvTddqX7PZ5hz6qV3pxSo72f/6YPRo+Mu2DU307tm9IioO69l7uAwn5XNcFA==",
|
||||
"dev": true,
|
||||
"dependencies": {
|
||||
"@types/node": "*"
|
||||
}
|
||||
},
|
||||
"node_modules/@types/yauzl": {
|
||||
"version": "2.10.0",
|
||||
"resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.0.tgz",
|
||||
"integrity": "sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==",
|
||||
"version": "2.10.2",
|
||||
"resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.2.tgz",
|
||||
"integrity": "sha512-Km7XAtUIduROw7QPgvcft0lIupeG8a8rdKL8RiSyKvlE7dYY31fEn41HVuQsRFDuROA8tA4K2UVL+WdfFmErBA==",
|
||||
"dev": true,
|
||||
"optional": true,
|
||||
"dependencies": {
|
||||
@ -550,12 +554,13 @@
|
||||
}
|
||||
},
|
||||
"node_modules/call-bind": {
|
||||
"version": "1.0.2",
|
||||
"resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
|
||||
"integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
|
||||
"version": "1.0.5",
|
||||
"resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz",
|
||||
"integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==",
|
||||
"dependencies": {
|
||||
"function-bind": "^1.1.1",
|
||||
"get-intrinsic": "^1.0.2"
|
||||
"function-bind": "^1.1.2",
|
||||
"get-intrinsic": "^1.2.1",
|
||||
"set-function-length": "^1.1.1"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/ljharb"
|
||||
@ -847,11 +852,25 @@
|
||||
"node": ">=10"
|
||||
}
|
||||
},
|
||||
"node_modules/define-properties": {
|
||||
"version": "1.2.0",
|
||||
"resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz",
|
||||
"integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==",
|
||||
"node_modules/define-data-property": {
|
||||
"version": "1.1.1",
|
||||
"resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz",
|
||||
"integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==",
|
||||
"dependencies": {
|
||||
"get-intrinsic": "^1.2.1",
|
||||
"gopd": "^1.0.1",
|
||||
"has-property-descriptors": "^1.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
}
|
||||
},
|
||||
"node_modules/define-properties": {
|
||||
"version": "1.2.1",
|
||||
"resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz",
|
||||
"integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==",
|
||||
"dependencies": {
|
||||
"define-data-property": "^1.0.1",
|
||||
"has-property-descriptors": "^1.0.0",
|
||||
"object-keys": "^1.1.1"
|
||||
},
|
||||
@ -997,9 +1016,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/electron": {
|
||||
"version": "26.3.0",
|
||||
"resolved": "https://registry.npmjs.org/electron/-/electron-26.3.0.tgz",
|
||||
"integrity": "sha512-7ZpvSHu+jmqialSvywTZnOQZZGLqlyj+yV5HGDrEzFnMiFaXBRpbByHgoUhaExJ/8t/0xKQjKlMRAY65w+zNZQ==",
|
||||
"version": "26.4.2",
|
||||
"resolved": "https://registry.npmjs.org/electron/-/electron-26.4.2.tgz",
|
||||
"integrity": "sha512-BOfQUOIvsq5NnssWOMqcZnA5M0ull620wvQoJq3WhXN1wJAsWu+cdjHvREyxnHbArPkV+F+x3YAi5Dt+UKoqhw==",
|
||||
"dev": true,
|
||||
"hasInstallScript": true,
|
||||
"dependencies": {
|
||||
@ -1434,9 +1453,12 @@
|
||||
"dev": true
|
||||
},
|
||||
"node_modules/function-bind": {
|
||||
"version": "1.1.1",
|
||||
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
|
||||
"integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
|
||||
"version": "1.1.2",
|
||||
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
|
||||
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/ljharb"
|
||||
}
|
||||
},
|
||||
"node_modules/functions-have-names": {
|
||||
"version": "1.2.3",
|
||||
@ -1496,14 +1518,14 @@
|
||||
}
|
||||
},
|
||||
"node_modules/get-intrinsic": {
|
||||
"version": "1.2.1",
|
||||
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz",
|
||||
"integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==",
|
||||
"version": "1.2.2",
|
||||
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz",
|
||||
"integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==",
|
||||
"dependencies": {
|
||||
"function-bind": "^1.1.1",
|
||||
"has": "^1.0.3",
|
||||
"function-bind": "^1.1.2",
|
||||
"has-proto": "^1.0.1",
|
||||
"has-symbols": "^1.0.3"
|
||||
"has-symbols": "^1.0.3",
|
||||
"hasown": "^2.0.0"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/ljharb"
|
||||
@ -1629,6 +1651,17 @@
|
||||
"url": "https://github.com/sponsors/ljharb"
|
||||
}
|
||||
},
|
||||
"node_modules/gopd": {
|
||||
"version": "1.0.1",
|
||||
"resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz",
|
||||
"integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==",
|
||||
"dependencies": {
|
||||
"get-intrinsic": "^1.1.3"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/ljharb"
|
||||
}
|
||||
},
|
||||
"node_modules/got": {
|
||||
"version": "11.8.6",
|
||||
"resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz",
|
||||
@ -1660,23 +1693,12 @@
|
||||
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
|
||||
"dev": true
|
||||
},
|
||||
"node_modules/has": {
|
||||
"version": "1.0.3",
|
||||
"resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
|
||||
"integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
|
||||
"dependencies": {
|
||||
"function-bind": "^1.1.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.4.0"
|
||||
}
|
||||
},
|
||||
"node_modules/has-property-descriptors": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz",
|
||||
"integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==",
|
||||
"version": "1.0.1",
|
||||
"resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz",
|
||||
"integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==",
|
||||
"dependencies": {
|
||||
"get-intrinsic": "^1.1.1"
|
||||
"get-intrinsic": "^1.2.2"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/ljharb"
|
||||
@ -1718,6 +1740,17 @@
|
||||
"url": "https://github.com/sponsors/ljharb"
|
||||
}
|
||||
},
|
||||
"node_modules/hasown": {
|
||||
"version": "2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz",
|
||||
"integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==",
|
||||
"dependencies": {
|
||||
"function-bind": "^1.1.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
}
|
||||
},
|
||||
"node_modules/hexoid": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/hexoid/-/hexoid-1.0.0.tgz",
|
||||
@ -1820,6 +1853,14 @@
|
||||
"node": ">=0.10.0"
|
||||
}
|
||||
},
|
||||
"node_modules/imagesloaded": {
|
||||
"version": "5.0.0",
|
||||
"resolved": "https://registry.npmjs.org/imagesloaded/-/imagesloaded-5.0.0.tgz",
|
||||
"integrity": "sha512-/0JGSubc1MTCoDKVmonLHgbifBWHdyLkun+R/151E1c5n79hiSxcd7cB7mPXFgojYu8xnRZv7GYxzKoxW8BetQ==",
|
||||
"dependencies": {
|
||||
"ev-emitter": "^2.1.2"
|
||||
}
|
||||
},
|
||||
"node_modules/indent-string": {
|
||||
"version": "5.0.0",
|
||||
"resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz",
|
||||
@ -1877,12 +1918,12 @@
|
||||
"dev": true
|
||||
},
|
||||
"node_modules/is-core-module": {
|
||||
"version": "2.13.0",
|
||||
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz",
|
||||
"integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==",
|
||||
"version": "2.13.1",
|
||||
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz",
|
||||
"integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==",
|
||||
"dev": true,
|
||||
"dependencies": {
|
||||
"has": "^1.0.3"
|
||||
"hasown": "^2.0.0"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/ljharb"
|
||||
@ -1976,11 +2017,11 @@
|
||||
}
|
||||
},
|
||||
"node_modules/is-online/node_modules/cacheable-request": {
|
||||
"version": "10.2.13",
|
||||
"resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.13.tgz",
|
||||
"integrity": "sha512-3SD4rrMu1msNGEtNSt8Od6enwdo//U9s4ykmXfA2TD58kcLkCobtCDiby7kNyj7a/Q7lz/mAesAFI54rTdnvBA==",
|
||||
"version": "10.2.14",
|
||||
"resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.14.tgz",
|
||||
"integrity": "sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==",
|
||||
"dependencies": {
|
||||
"@types/http-cache-semantics": "^4.0.1",
|
||||
"@types/http-cache-semantics": "^4.0.2",
|
||||
"get-stream": "^6.0.1",
|
||||
"http-cache-semantics": "^4.1.1",
|
||||
"keyv": "^4.5.3",
|
||||
@ -2229,9 +2270,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/keyv": {
|
||||
"version": "4.5.3",
|
||||
"resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.3.tgz",
|
||||
"integrity": "sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==",
|
||||
"version": "4.5.4",
|
||||
"resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
|
||||
"integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
|
||||
"dependencies": {
|
||||
"json-buffer": "3.0.1"
|
||||
}
|
||||
@ -2699,15 +2740,6 @@
|
||||
"node": ">=10.4.0"
|
||||
}
|
||||
},
|
||||
"node_modules/plist/node_modules/xmlbuilder": {
|
||||
"version": "15.1.1",
|
||||
"resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-15.1.1.tgz",
|
||||
"integrity": "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==",
|
||||
"dev": true,
|
||||
"engines": {
|
||||
"node": ">=8.0"
|
||||
}
|
||||
},
|
||||
"node_modules/progress": {
|
||||
"version": "2.0.3",
|
||||
"resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz",
|
||||
@ -2769,11 +2801,11 @@
|
||||
}
|
||||
},
|
||||
"node_modules/public-ip/node_modules/cacheable-request": {
|
||||
"version": "10.2.13",
|
||||
"resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.13.tgz",
|
||||
"integrity": "sha512-3SD4rrMu1msNGEtNSt8Od6enwdo//U9s4ykmXfA2TD58kcLkCobtCDiby7kNyj7a/Q7lz/mAesAFI54rTdnvBA==",
|
||||
"version": "10.2.14",
|
||||
"resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.14.tgz",
|
||||
"integrity": "sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==",
|
||||
"dependencies": {
|
||||
"@types/http-cache-semantics": "^4.0.1",
|
||||
"@types/http-cache-semantics": "^4.0.2",
|
||||
"get-stream": "^6.0.1",
|
||||
"http-cache-semantics": "^4.1.1",
|
||||
"keyv": "^4.5.3",
|
||||
@ -2922,14 +2954,14 @@
|
||||
}
|
||||
},
|
||||
"node_modules/quill": {
|
||||
"version": "1.3.7",
|
||||
"resolved": "https://registry.npmjs.org/quill/-/quill-1.3.7.tgz",
|
||||
"integrity": "sha512-hG/DVzh/TiknWtE6QmWAF/pxoZKYxfe3J/d/+ShUWkDvvkZQVTPeVmUJVu1uE6DDooC4fWTiCLh84ul89oNz5g==",
|
||||
"version": "1.3.6",
|
||||
"resolved": "https://registry.npmjs.org/quill/-/quill-1.3.6.tgz",
|
||||
"integrity": "sha512-K0mvhimWZN6s+9OQ249CH2IEPZ9JmkFuCQeHAOQax3EZ2nDJ3wfGh59mnlQaZV2i7u8eFarx6wAtvQKgShojug==",
|
||||
"dependencies": {
|
||||
"clone": "^2.1.1",
|
||||
"deep-equal": "^1.0.1",
|
||||
"eventemitter3": "^2.0.3",
|
||||
"extend": "^3.0.2",
|
||||
"extend": "^3.0.1",
|
||||
"parchment": "^1.1.4",
|
||||
"quill-delta": "^3.6.2"
|
||||
}
|
||||
@ -2993,13 +3025,13 @@
|
||||
}
|
||||
},
|
||||
"node_modules/regexp.prototype.flags": {
|
||||
"version": "1.5.0",
|
||||
"resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz",
|
||||
"integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==",
|
||||
"version": "1.5.1",
|
||||
"resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz",
|
||||
"integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==",
|
||||
"dependencies": {
|
||||
"call-bind": "^1.0.2",
|
||||
"define-properties": "^1.2.0",
|
||||
"functions-have-names": "^1.2.3"
|
||||
"set-function-name": "^2.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
@ -3076,9 +3108,9 @@
|
||||
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
|
||||
},
|
||||
"node_modules/sax": {
|
||||
"version": "1.2.4",
|
||||
"resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz",
|
||||
"integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="
|
||||
"version": "1.3.0",
|
||||
"resolved": "https://registry.npmjs.org/sax/-/sax-1.3.0.tgz",
|
||||
"integrity": "sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA=="
|
||||
},
|
||||
"node_modules/saxes": {
|
||||
"version": "6.0.0",
|
||||
@ -3123,6 +3155,33 @@
|
||||
"url": "https://github.com/sponsors/sindresorhus"
|
||||
}
|
||||
},
|
||||
"node_modules/set-function-length": {
|
||||
"version": "1.1.1",
|
||||
"resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz",
|
||||
"integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==",
|
||||
"dependencies": {
|
||||
"define-data-property": "^1.1.1",
|
||||
"get-intrinsic": "^1.2.1",
|
||||
"gopd": "^1.0.1",
|
||||
"has-property-descriptors": "^1.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
}
|
||||
},
|
||||
"node_modules/set-function-name": {
|
||||
"version": "2.0.1",
|
||||
"resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz",
|
||||
"integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==",
|
||||
"dependencies": {
|
||||
"define-data-property": "^1.0.1",
|
||||
"functions-have-names": "^1.2.3",
|
||||
"has-property-descriptors": "^1.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
}
|
||||
},
|
||||
"node_modules/shebang-command": {
|
||||
"version": "2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
|
||||
@ -3177,9 +3236,9 @@
|
||||
"dev": true
|
||||
},
|
||||
"node_modules/sprintf-js": {
|
||||
"version": "1.1.2",
|
||||
"resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.2.tgz",
|
||||
"integrity": "sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==",
|
||||
"version": "1.1.3",
|
||||
"resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz",
|
||||
"integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==",
|
||||
"dev": true,
|
||||
"optional": true
|
||||
},
|
||||
@ -3238,9 +3297,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/sweetalert2": {
|
||||
"version": "11.7.28",
|
||||
"resolved": "https://registry.npmjs.org/sweetalert2/-/sweetalert2-11.7.28.tgz",
|
||||
"integrity": "sha512-9895DVuYTDlV4Hx4IJablFKMdSqzwpy0PKycztbO4cXnOeVMmw55weOq4gcZAh3/tAyunCKjApFDrlSAcswwcA==",
|
||||
"version": "11.7.32",
|
||||
"resolved": "https://registry.npmjs.org/sweetalert2/-/sweetalert2-11.7.32.tgz",
|
||||
"integrity": "sha512-44tNNe2oLe7T94mT6dus4hc9G7qg6jZU/K5qZzpNS6e5HGPrSF6Kie6oZ7B5puIJydB34V2h/8f5EhIFivYo4A==",
|
||||
"funding": {
|
||||
"type": "individual",
|
||||
"url": "https://github.com/sponsors/limonte"
|
||||
@ -3252,9 +3311,9 @@
|
||||
"integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw=="
|
||||
},
|
||||
"node_modules/tinymce": {
|
||||
"version": "6.7.0",
|
||||
"resolved": "https://registry.npmjs.org/tinymce/-/tinymce-6.7.0.tgz",
|
||||
"integrity": "sha512-Wf2RSobIXQ7XNw3/v4z1lPGiH3Pjsmc/6/7fG28aIS6uVWj/7IhvOPuwfJJDeOx0o0D3nSnoLHgR2KU8JAdE+w=="
|
||||
"version": "6.7.2",
|
||||
"resolved": "https://registry.npmjs.org/tinymce/-/tinymce-6.7.2.tgz",
|
||||
"integrity": "sha512-6h/02jHmXyghekFzmzccZxUUEFtlPEKHxOd+gd49bjno3ybavZInPIaDd/pp2GeEwsFm20oGgJCL7UiebXm9dw=="
|
||||
},
|
||||
"node_modules/tough-cookie": {
|
||||
"version": "4.1.3",
|
||||
@ -3323,6 +3382,12 @@
|
||||
"url": "https://github.com/sponsors/sindresorhus"
|
||||
}
|
||||
},
|
||||
"node_modules/undici-types": {
|
||||
"version": "5.26.5",
|
||||
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz",
|
||||
"integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==",
|
||||
"dev": true
|
||||
},
|
||||
"node_modules/universalify": {
|
||||
"version": "0.1.2",
|
||||
"resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz",
|
||||
@ -3434,9 +3499,9 @@
|
||||
"integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
|
||||
},
|
||||
"node_modules/ws": {
|
||||
"version": "8.14.1",
|
||||
"resolved": "https://registry.npmjs.org/ws/-/ws-8.14.1.tgz",
|
||||
"integrity": "sha512-4OOseMUq8AzRBI/7SLMUwO+FEDnguetSk7KMb1sHwvF2w2Wv5Hoj0nlifx8vtGsftE/jWHojPy8sMMzYLJ2G/A==",
|
||||
"version": "8.14.2",
|
||||
"resolved": "https://registry.npmjs.org/ws/-/ws-8.14.2.tgz",
|
||||
"integrity": "sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==",
|
||||
"engines": {
|
||||
"node": ">=10.0.0"
|
||||
},
|
||||
@ -3473,7 +3538,7 @@
|
||||
"node": ">=4.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/xmlbuilder": {
|
||||
"node_modules/xml2js/node_modules/xmlbuilder": {
|
||||
"version": "11.0.1",
|
||||
"resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz",
|
||||
"integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==",
|
||||
@ -3481,6 +3546,15 @@
|
||||
"node": ">=4.0"
|
||||
}
|
||||
},
|
||||
"node_modules/xmlbuilder": {
|
||||
"version": "15.1.1",
|
||||
"resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-15.1.1.tgz",
|
||||
"integrity": "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==",
|
||||
"dev": true,
|
||||
"engines": {
|
||||
"node": ">=8.0"
|
||||
}
|
||||
},
|
||||
"node_modules/xmlchars": {
|
||||
"version": "2.2.0",
|
||||
"resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz",
|
||||
|
||||
@ -25,6 +25,7 @@
|
||||
"formidable": "^3.5.1",
|
||||
"get-size": "^3.0.0",
|
||||
"http": "^0.0.1-security",
|
||||
"imagesloaded": "^5.0.0",
|
||||
"is-online": "^10.0.0",
|
||||
"jquery": "^3.7.1",
|
||||
"jquery-ui": "^1.13.2",
|
||||
|
||||
64
style.css
64
style.css
@ -3366,26 +3366,6 @@ a.main_sticky {
|
||||
border-color: #007bff;
|
||||
/* box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.5); */
|
||||
}
|
||||
.ql-container .ql-snow{
|
||||
width: 100%;
|
||||
height: 43px;
|
||||
padding-left: 20px;
|
||||
background: #fff;
|
||||
border-radius: 3px;
|
||||
transition: .5s;
|
||||
border: 5px solid #EEECFE!important;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.ql-toolbar.ql-snow{
|
||||
border-radius: 10px!important;
|
||||
}
|
||||
|
||||
.ql-editor{
|
||||
|
||||
font-size: 16px!important;
|
||||
font-family: 'Arial', sans-serif!important
|
||||
}
|
||||
|
||||
.aChangebtn {
|
||||
display: inline-block;
|
||||
@ -3448,20 +3428,52 @@ a.main_sticky {
|
||||
font-size: 19px;
|
||||
font-weight: 500;
|
||||
}
|
||||
em {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
label {
|
||||
margin-left: 2px;
|
||||
}
|
||||
|
||||
|
||||
/* Quill CSS */
|
||||
|
||||
.ql-editor.ql-blank::before{
|
||||
|
||||
font-style: normal!important;
|
||||
/* font-style: normal!important; */
|
||||
color: #999!important;
|
||||
}
|
||||
|
||||
/* .ql-container .ql-snow{
|
||||
width: 100%;
|
||||
height: 43px;
|
||||
padding-left: 20px;
|
||||
background: #fff;
|
||||
border-radius: 3px;
|
||||
transition: .5s;
|
||||
border: 5px solid #EEECFE!important;
|
||||
border-radius: 6px;
|
||||
} */
|
||||
|
||||
.ql-toolbar.ql-snow{
|
||||
border-radius: 7px!important;
|
||||
}
|
||||
|
||||
.ql-editor{
|
||||
font-size: 16px!important;
|
||||
}
|
||||
|
||||
|
||||
em {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
strong em{
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/* end Quill CSS */
|
||||
|
||||
|
||||
input::placeholder {
|
||||
font-style: normal; /* You can set the desired font style here */
|
||||
color: #999; /* You can set the color of the placeholder text here */
|
||||
@ -3572,7 +3584,9 @@ input:disabled {
|
||||
|
||||
}
|
||||
|
||||
|
||||
.titleSpace{
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user