@sava-info-systems/api-maker-with-extensions 1.19.5 → 1.19.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/3081.dd32ee0f5db41577.js +1 -0
- package/dist/5249.73e35de880a7af92.js +1 -0
- package/dist/5765.2b385a8405d8e7b2.js +1 -0
- package/dist/913.e60cadd27b99097f.js +1 -0
- package/dist/assets/monaco-assets/grammars/javascript.tmLanguage.json +3574 -5913
- package/dist/assets/monaco-assets/grammars/magicpython.tmLanguage.json +3437 -4212
- package/dist/assets/monaco-assets/grammars/rust.tmLanguage.json +89 -72
- package/dist/assets/monaco-assets/grammars/typescript.tmLanguage.json +3302 -5664
- package/dist/assets/monaco-assets/grammars/xml.tmLanguage.json +1 -1
- package/dist/assets/monaco-assets/onig.wasm +0 -0
- package/dist/assets/primeng-theme/primeng-theme-overrides.scss +1 -1
- package/dist/assets/schema-types/types.ts +21 -2
- package/dist/assets/styles/out/styles.css +1 -1
- package/dist/assets/styles/styles.scss +2 -1
- package/dist/index.html +14 -6
- package/dist/main.45d0e6ca86c448ba.js +1 -0
- package/dist/runtime.662c613ba3c97743.js +1 -0
- package/dist/{styles.1764f1e35ed631e4.css → styles.242217e145c3f7ab.css} +1 -1
- package/main.js +1 -1
- package/package.json +4 -4
- package/sandbox/sandbox.js +1 -1
- package/src/assets/schema-types/types.ts +21 -2
- package/src/public/dist-db-masters/browser/index.html +1 -1
- package/src/public/dist-db-masters/browser/main-ANQDJFEO.js +139 -0
- package/src/tools/local-client.js +1 -1
- package/dist/3081.e470a8aeed4a7745.js +0 -1
- package/dist/5249.52aa732ef6a173c5.js +0 -1
- package/dist/5765.e70cd773673bfe27.js +0 -1
- package/dist/913.7d41933171ab9fbe.js +0 -1
- package/dist/assets/styles/out/bootstrap-overrides.css.map +0 -1
- package/dist/assets/styles/out/colors-dark.css.map +0 -1
- package/dist/assets/styles/out/colors-light.css.map +0 -1
- package/dist/assets/styles/out/monaco-editor-overrides.css.map +0 -1
- package/dist/assets/styles/out/styles.css.map +0 -1
- package/dist/assets/styles/out/variables.css.map +0 -1
- package/dist/main.9630ecd9c9613e82.js +0 -1
- package/dist/runtime.21919a870e05d69b.js +0 -1
|
Binary file
|
|
@@ -63,7 +63,7 @@ p-progressSpinner .p-progress-spinner {
|
|
|
63
63
|
|
|
64
64
|
// Dropdown size related changes
|
|
65
65
|
.p-inputtext { font-size: 14px; padding: .25rem .5rem; }
|
|
66
|
-
.p-component.p-overlay { z-index:
|
|
66
|
+
.p-component.p-overlay { z-index: 1100 !important; }
|
|
67
67
|
.p-dropdown-panel .p-dropdown-header { padding: 0.3rem 0.3rem; }
|
|
68
68
|
.p-dropdown-panel .p-dropdown-items .p-dropdown-item { padding: .25rem 1rem; }
|
|
69
69
|
ol, ul, dl { margin-bottom: 0; }
|
|
@@ -264,7 +264,12 @@ export interface ISchemaType {
|
|
|
264
264
|
[key: string]: IAnySchemaPropertyType;
|
|
265
265
|
}
|
|
266
266
|
|
|
267
|
+
export interface ISchemaTypeCustomApi {
|
|
268
|
+
[key: string]: IAnySchemaPropertyTypeCustomApi;
|
|
269
|
+
}
|
|
270
|
+
|
|
267
271
|
export type IAnySchemaPropertyType = EType | [EType] | ISchemaProperty | [ISchemaProperty] | ISchemaType | [ISchemaType];
|
|
272
|
+
export type IAnySchemaPropertyTypeCustomApi = EType | [EType] | ISchemaPropertyCustomApi | [ISchemaPropertyCustomApi] | ISchemaTypeCustomApi | [ISchemaTypeCustomApi];
|
|
268
273
|
|
|
269
274
|
export interface ISchemaProperty { // Add new schema property in ValidateDBSchema too
|
|
270
275
|
__type?: EType;
|
|
@@ -338,6 +343,8 @@ export interface ISchemaProperty { // Add new schema property in ValidateDBSchem
|
|
|
338
343
|
isVirtualField?: boolean;
|
|
339
344
|
}
|
|
340
345
|
|
|
346
|
+
export type ISchemaPropertyCustomApi = Pick<ISchemaProperty, '__type' | 'conversions' | 'validations'>;
|
|
347
|
+
|
|
341
348
|
export interface IIsAutoIncrementByAM {
|
|
342
349
|
start: number;
|
|
343
350
|
step?: number; // default value will be 1
|
|
@@ -784,8 +791,8 @@ export interface ICustomApiSettingsTypes extends IAuthTokenInfoCommon {
|
|
|
784
791
|
resetCacheOnModificationOf?: string[]; // ins.db.col | api_bundle.version
|
|
785
792
|
acceptOnlyEncryptedData?: boolean; // database & collection & api level setting
|
|
786
793
|
|
|
787
|
-
reqBodySchema?:
|
|
788
|
-
reqQueryParametersSchema?:
|
|
794
|
+
reqBodySchema?: ISchemaTypeCustomApi;
|
|
795
|
+
reqQueryParametersSchema?: ISchemaTypeCustomApi;
|
|
789
796
|
|
|
790
797
|
/**
|
|
791
798
|
* - If true, code will execute on original Node.js process and not in sandbox.<br/>
|
|
@@ -2083,6 +2090,15 @@ export interface IDBMasterConfig {
|
|
|
2083
2090
|
/** Default: false, If true, it will hide close button. */
|
|
2084
2091
|
hideCloseButton?: boolean;
|
|
2085
2092
|
|
|
2093
|
+
/** Default: Save, It will be used as label of save button */
|
|
2094
|
+
labelOfSaveButton?: string;
|
|
2095
|
+
|
|
2096
|
+
/** Default: Update, It will be used as label of update button in edit operation */
|
|
2097
|
+
labelOfUpdateButton?: string;
|
|
2098
|
+
|
|
2099
|
+
/** Default: Cancel, It will be used as label of cancel/close button */
|
|
2100
|
+
labelOfCancelButton?: string;
|
|
2101
|
+
|
|
2086
2102
|
/** Default : true,
|
|
2087
2103
|
* If multiple is coming from API which is not mapped to any field, it will show in table.
|
|
2088
2104
|
* In case of only one error, it will show in notification.
|
|
@@ -3999,6 +4015,9 @@ export interface IPropertyValidation {
|
|
|
3999
4015
|
max?: number; // Allowed Types : number | date
|
|
4000
4016
|
minLength?: number; // Allowed Types : string
|
|
4001
4017
|
maxLength?: number; // Allowed Types : string
|
|
4018
|
+
/**
|
|
4019
|
+
* @deprecated API Maker maintains unique feature and do not use on table which has frequent updates.
|
|
4020
|
+
*/
|
|
4002
4021
|
unique?: boolean;
|
|
4003
4022
|
email?: boolean; // Allowed Types : string
|
|
4004
4023
|
validatorFun?: Function;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
@font-face{font-family:Verdana;src:url(../fonts/Verdana.ttf)}@font-face{font-family:JetBrains Mono;src:url(../fonts/JetBrainsMonoRegular.ttf)}body{min-width:1349px}::-webkit-scrollbar{height:7px;width:7px}::-webkit-scrollbar-track{background:transparent;border-radius:8px}::-webkit-scrollbar-thumb{background:#5b5b5b;border-radius:10px}::-webkit-scrollbar-thumb:hover{background:#5b5b5b}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}input[type=number]{-moz-appearance:textfield}@keyframes fadein{0%{opacity:0}to{opacity:1}}.cursor-pointer{cursor:pointer}.text-v-small{font-size:70%}.mt-1px{margin-top:1px}.mt--1px{margin-top:-1px}.mt--2px{margin-top:-2px}.dialog-text{margin:30px;text-align:center}.full-body{height:calc(100vh - 56px)}.line-height-1-3{line-height:1.3rem}.line-height-1{line-height:1rem}.line-height-1-plain{line-height:1}.icon-inside-table-cell{height:30px;padding:0!important;text-align:center!important;vertical-align:middle!important;width:30px}.icon-inside-table-cell img{height:20px;width:20px}.font-monospaced{font-family:JetBrains Mono,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.font-verdana{font-family:Verdana,sans-serif}.font-jetbrains-mono{font-family:JetBrains Mono,Monaco,SFMono-Regular,Menlo,Consolas,Liberation Mono,Courier New,monospace}.text-overflow-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.italic{font-style:italic}.w-10-nowrap{white-space:nowrap;width:10px}.btn-xsm-custom{height:23px;line-height:.5;padding:0;width:30px}.text-yellow{color:#dbdb37}textarea{resize:none}.request-cancel-button{left:calc(50% - 50px);margin:0;position:absolute;text-transform:uppercase;top:calc(50% + 40px);width:100px;z-index:2}.maximize-testing-tab{height:calc(100vh - 26px);left:0;position:absolute;top:0;width:100%}.maximize-testing-panel{border:0;position:absolute;top:0;width:100%}.panel-body-h{height:calc(100vh - 75px)}.tab-content-h{height:calc(100vh - 80px)}.tab-content-h-maximize{height:calc(100vh - 64px)}.tab-content-h-maximize .monaco-code-h{height:calc(100vh - 100px)!important}.api-list .monaco-code-h{height:calc(100vh - 238px)}.api-list-test-hook .monaco-code-h{height:calc(100vh - 360px)}.modal-full{max-width:calc(100vw - 100px)}.table-no-padding td{height:30px;padding:0}.table-no-padding td div{min-height:30px;padding:.2rem .75rem}.table-no-padding td div.selected-row{background-color:rgba(47,100,115,.341)}.font-label{font-size:.875rem}.highlightMatchedWord{background:#ff0!important;color:#000!important;font-weight:700!important}.highlightLineHavingError{border-bottom:1px dashed red}.parent-notes-modal .child-notes-grid{height:calc(100% - 10px)!important}.prevent-text-selection{-webkit-user-select:none;-moz-user-select:none;user-select:none}.logs-collapse-div{background:#3d3d3d;height:25px}.preHookCounter{right:.5em;rotate:270deg}.postHookCounter,.preHookCounter{align-items:center;background-color:grey;border-radius:.8em;color:#fff;display:flex;font-size:.8em;height:1.5em;justify-content:center;min-width:1.5em;position:absolute}.postHookCounter{right:-.5em;rotate:90deg}div.delta-to-html .ql-size-huge{font-size:xx-large}div.delta-to-html pre{background:#1d1d1d;color:inherit;display:block;font-size:87.5%;padding:10px}div.delta-to-html table,div.delta-to-html td,div.delta-to-html th{border:1px solid grey;text-align:left}div.delta-to-html table{background:#3b3b3b;border-collapse:collapse;border-color:grey;border-spacing:2px;box-sizing:border-box;display:table;text-indent:0;width:100%}div.delta-to-html td,div.delta-to-html th{padding:6px}div.delta-to-html tr:nth-of-type(odd){background:rgba(40,40,40,.78)}app-fun-man-layout .custom-api-grid-height{height:calc(100vh - 82px)}app-db-cell-layout app-w-instances .instance-grid-height{height:calc(100vh - 94px)}app-db-cell-layout app-w-collections .collection-grid-height,app-db-cell-layout app-w-databases .database-grid-height{height:calc(50vh - 68px)}app-system-api-layout app-system-api-w .system-api-grid-height{height:calc(100vh - 82px)}app-event-man-layout app-events-grid .events-grid-height,app-tp-api-layout app-w-supported-tp-api .system-api-grid-height{height:calc(100vh - 94px)}app-scheduler-man-layout app-scheduler-man-w .schedulers-grid-height,app-web-socket-events-layout-grid app-web-socket-events-grid .ws-events-grid-height{height:calc(100vh - 82px)}app-logprofile-layout app-w-logprofiles .log-profile-grid-height,app-utility-classes-layout app-utility-classes-list .utility-classes-grid-height{height:calc(100vh - 94px)}app-notes-layout app-notes-list .notes-grid-height{height:calc(100vh - 86px)}app-notes-layout app-notes-form .notes-form-height{height:calc(100vh - 94px)}app-notes-modal app-notes-list .notes-grid-height{height:calc(100vh - 102px)}app-notes-modal app-notes-form .notes-form-height{height:calc(100vh - 94px)}app-code-finder-modal app-code-finder-w .code-finder-height{height:calc(100vh - 72px)!important}app-root app-code-finder-w .code-finder-height{height:calc(100vh - 52px)}.dropdown-menu{z-index:1051}a{color:#aaa}.p-tree-empty-message{padding-top:20px;position:absolute;text-align:center;width:100%}.json-key{color:#9d74af}.json-val{color:#6aab73}#svgContainerId svg{height:calc(100vh - 88px);width:calc(100vw - 20px)}#svgContainerId rect,#svgContainerId text{cursor:grab}.p-datatable-header{padding:0!important}.width-300{width:300px}.p-datatable.p-datatable-hoverable-rows .p-datatable-tbody>tr:not(.p-highlight):hover{background:none!important;color:inherit!important}p-radioButton.inline-small-radio .p-radiobutton-label{margin-bottom:0!important}.word-break-all{word-break:break-all}#id_api_maker_deploy_file_upload .p-fileupload-content{padding:10px 0;text-align:left}#id_api_maker_deploy_file_upload .p-fileupload-content .p-fileupload-row div:first-of-type{display:none}#id_api_maker_deploy_file_upload .p-fileupload-content .p-fileupload-row div:nth-of-type(2){padding:0 0 0 10px;width:75%}#id_api_maker_deploy_file_upload .p-fileupload-content .p-fileupload-row div:nth-of-type(3){padding:0;text-align:center}#id_api_maker_deploy_file_upload .p-fileupload-content .p-fileupload-row div:nth-of-type(4){padding:0 10px 0 0;width:74px}.id_ptree_db_master_config_outline .p-tree .p-tree-container .p-treenode .p-treenode-content .p-tree-toggler{height:1.5rem;margin-right:0;width:1.5rem}.id_ptree_db_master_config_outline .tree-width{width:auto}.id_ptree_db_master_config_outline .tree-width .p-tree-container{display:table}p-dropdown .fix-height-issue{height:29px}
|
|
1
|
+
@font-face{font-family:Verdana;src:url(../fonts/Verdana.ttf)}@font-face{font-family:JetBrains Mono;src:url(../fonts/JetBrainsMonoRegular.ttf)}body{min-width:1349px}::-webkit-scrollbar{height:7px;width:7px}::-webkit-scrollbar-track{background:transparent;border-radius:8px}::-webkit-scrollbar-thumb{background:#5b5b5b;border-radius:10px}::-webkit-scrollbar-thumb:hover{background:#5b5b5b}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}input[type=number]{-moz-appearance:textfield}@keyframes fadein{0%{opacity:0}to{opacity:1}}.cursor-pointer{cursor:pointer}.text-v-small{font-size:70%}.mt-1px{margin-top:1px}.mt--1px{margin-top:-1px}.mt--2px{margin-top:-2px}.dialog-text{margin:30px;text-align:center}.full-body{height:calc(100vh - 56px)}.line-height-1-3{line-height:1.3rem}.line-height-1{line-height:1rem}.line-height-1-plain{line-height:1}.icon-inside-table-cell{height:30px;padding:0!important;text-align:center!important;vertical-align:middle!important;width:30px}.icon-inside-table-cell img{height:20px;width:20px}.font-monospaced{font-family:JetBrains Mono,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.font-verdana{font-family:Verdana,sans-serif}.font-jetbrains-mono{font-family:JetBrains Mono,Monaco,SFMono-Regular,Menlo,Consolas,Liberation Mono,Courier New,monospace}.text-overflow-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.italic{font-style:italic}.w-10-nowrap{white-space:nowrap;width:10px}.btn-xsm-custom{height:23px;line-height:.5;padding:0;width:30px}.text-yellow{color:#dbdb37}textarea{resize:none}.request-cancel-button{left:calc(50% - 50px);margin:0;position:absolute;text-transform:uppercase;top:calc(50% + 40px);width:100px;z-index:2}.maximize-testing-tab{height:calc(100vh - 26px);left:0;position:absolute;top:0;width:100%}.maximize-testing-panel{border:0;position:absolute;top:0;width:100%}.panel-body-h{height:calc(100vh - 75px)}.tab-content-h{height:calc(100vh - 80px)}.tab-content-h-maximize{height:calc(100vh - 64px)}.tab-content-h-maximize .monaco-code-h{height:calc(100vh - 100px)!important}.api-list .monaco-code-h{height:calc(100vh - 238px)}.api-list-test-hook .monaco-code-h{height:calc(100vh - 360px)}.modal-full{max-width:calc(100vw - 100px)}.table-no-padding td{height:30px;padding:0}.table-no-padding td div{min-height:30px;padding:.2rem .75rem}.table-no-padding td div.selected-row{background-color:rgba(47,100,115,.341)}.font-label{font-size:.875rem}.highlightMatchedWord{background:#ff0!important;color:#000!important;font-weight:700!important}.highlightLineHavingError{border-bottom:1px dashed red}.parent-notes-modal .child-notes-grid{height:calc(100% - 10px)!important}.prevent-text-selection{-webkit-user-select:none;-moz-user-select:none;user-select:none}.logs-collapse-div{background:#3d3d3d;height:25px}.preHookCounter{right:.5em;rotate:270deg}.postHookCounter,.preHookCounter{align-items:center;background-color:grey;border-radius:.8em;color:#fff;display:flex;font-size:.8em;height:1.5em;justify-content:center;min-width:1.5em;position:absolute}.postHookCounter{right:-.5em;rotate:90deg}div.delta-to-html .ql-size-huge{font-size:xx-large}div.delta-to-html pre{background:#1d1d1d;color:inherit;display:block;font-size:87.5%;padding:10px}div.delta-to-html table,div.delta-to-html td,div.delta-to-html th{border:1px solid grey;text-align:left}div.delta-to-html table{background:#3b3b3b;border-collapse:collapse;border-color:grey;border-spacing:2px;box-sizing:border-box;display:table;text-indent:0;width:100%}div.delta-to-html td,div.delta-to-html th{padding:6px}div.delta-to-html tr:nth-of-type(odd){background:rgba(40,40,40,.78)}app-fun-man-layout .custom-api-grid-height{height:calc(100vh - 82px)}app-db-cell-layout app-w-instances .instance-grid-height{height:calc(100vh - 94px)}app-db-cell-layout app-w-collections .collection-grid-height,app-db-cell-layout app-w-databases .database-grid-height{height:calc(50vh - 68px)}app-system-api-layout app-system-api-w .system-api-grid-height{height:calc(100vh - 82px)}app-event-man-layout app-events-grid .events-grid-height,app-tp-api-layout app-w-supported-tp-api .system-api-grid-height{height:calc(100vh - 94px)}app-scheduler-man-layout app-scheduler-man-w .schedulers-grid-height,app-web-socket-events-layout-grid app-web-socket-events-grid .ws-events-grid-height{height:calc(100vh - 82px)}app-logprofile-layout app-w-logprofiles .log-profile-grid-height,app-utility-classes-layout app-utility-classes-list .utility-classes-grid-height{height:calc(100vh - 94px)}app-notes-layout app-notes-list .notes-grid-height{height:calc(100vh - 86px)}app-notes-layout app-notes-form .notes-form-height{height:calc(100vh - 94px)}app-notes-modal app-notes-list .notes-grid-height{height:calc(100vh - 102px)}app-notes-modal app-notes-form .notes-form-height{height:calc(100vh - 94px)}app-code-finder-modal app-code-finder-w .code-finder-height{height:calc(100vh - 72px)!important}app-root app-code-finder-w .code-finder-height{height:calc(100vh - 52px)}.dropdown-menu{z-index:1051}a{color:#aaa}.p-tree-empty-message{padding-top:20px;position:absolute;text-align:center;width:100%}.json-key{color:#9d74af}.json-val{color:#6aab73}#svgContainerId svg{height:calc(100vh - 88px);width:calc(100vw - 20px)}#svgContainerId rect,#svgContainerId text{cursor:grab}.p-datatable-header{padding:0!important}.width-300{width:300px}.p-datatable.p-datatable-hoverable-rows .p-datatable-tbody>tr:not(.p-highlight):hover{background:none!important;color:inherit!important}p-radioButton.inline-small-radio .p-radiobutton-label{margin-bottom:0!important}.word-break-all{word-break:break-all}#id_api_maker_deploy_file_upload .p-fileupload-content{padding:10px 0;text-align:left}#id_api_maker_deploy_file_upload .p-fileupload-content .p-fileupload-row div:first-of-type{display:none}#id_api_maker_deploy_file_upload .p-fileupload-content .p-fileupload-row div:nth-of-type(2){padding:0 0 0 10px;width:75%}#id_api_maker_deploy_file_upload .p-fileupload-content .p-fileupload-row div:nth-of-type(3){padding:0;text-align:center}#id_api_maker_deploy_file_upload .p-fileupload-content .p-fileupload-row div:nth-of-type(4){padding:0 10px 0 0;width:74px}.id_ptree_db_master_config_outline .p-tree .p-tree-container .p-treenode .p-treenode-content .p-tree-toggler{height:1.5rem;margin-right:0;width:1.5rem}.id_ptree_db_master_config_outline .tree-width{width:auto}.id_ptree_db_master_config_outline .tree-width .p-tree-container{display:table}p-dropdown .fix-height-issue{height:29px}.grid-pill-custom-api{border-radius:3px;font-size:x-small;padding:2px 5px}
|
|
2
2
|
/*# sourceMappingURL=styles.css.map */
|
package/dist/index.html
CHANGED
|
@@ -82,9 +82,16 @@
|
|
|
82
82
|
<!-- svg -->
|
|
83
83
|
<script src="/assets/lib/svg-pan-zoom.min.js" type="text/javascript"></script>
|
|
84
84
|
|
|
85
|
+
<!-- load required assets -->
|
|
86
|
+
<link rel="prefetch" href="/assets/monaco-assets/grammars/typescript.tmLanguage.json" as="fetch" crossorigin="anonymous">
|
|
87
|
+
<link rel="prefetch" href="/assets/monaco-assets/grammars/json.tmLanguage.json" as="fetch" crossorigin="anonymous">
|
|
88
|
+
<link rel="prefetch" href="/assets/monaco-assets/grammars/xml.tmLanguage.json" as="fetch" crossorigin="anonymous">
|
|
89
|
+
<link rel="prefetch" href="/assets/monaco-assets/grammars/yaml.tmLanguage.json" as="fetch" crossorigin="anonymous">
|
|
90
|
+
<link rel="prefetch" href="/assets/monaco-assets/onig.wasm" as="fetch" crossorigin="anonymous">
|
|
91
|
+
|
|
85
92
|
<!-- monaco supported sub libraries -->
|
|
86
|
-
<script src="https://cdn.jsdelivr.net/npm/vscode-textmate@
|
|
87
|
-
<script src="https://cdn.jsdelivr.net/npm/vscode-oniguruma@
|
|
93
|
+
<script src="https://cdn.jsdelivr.net/npm/vscode-textmate@9.3.0/release/main.min.js"></script>
|
|
94
|
+
<script src="https://cdn.jsdelivr.net/npm/vscode-oniguruma@2.0.1/release/main.min.js"></script>
|
|
88
95
|
<script type="text/javascript">
|
|
89
96
|
const onigGlobal = onig;
|
|
90
97
|
setTimeout(() => {
|
|
@@ -93,11 +100,12 @@
|
|
|
93
100
|
</script>
|
|
94
101
|
|
|
95
102
|
<!-- monaco editor -->
|
|
96
|
-
|
|
103
|
+
<!-- command pallet is not working after 44 in angular apps -->
|
|
104
|
+
<script src="https://cdn.jsdelivr.net/npm/monaco-editor@0.44.0/min/vs/loader.js"></script>
|
|
97
105
|
<script type="text/javascript">
|
|
98
106
|
const requireJs = require;
|
|
99
107
|
window.requireJs = requireJs;
|
|
100
|
-
requireJs.config({ paths: { vs: 'https://
|
|
108
|
+
requireJs.config({ paths: { vs: 'https://cdn.jsdelivr.net/npm/monaco-editor@0.44.0/min/vs' } });
|
|
101
109
|
requireJs(['vs/editor/editor.main'], () => {
|
|
102
110
|
});
|
|
103
111
|
</script>
|
|
@@ -112,7 +120,7 @@
|
|
|
112
120
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.20.0/components/prism-core.min.js" type="text/javascript"></script>
|
|
113
121
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.20.0/plugins/autoloader/prism-autoloader.min.js" type="text/javascript"></script>
|
|
114
122
|
|
|
115
|
-
<style>@layer primeng{}:root{--surface-a:#3b3b3b;--surface-b:#303030;--surface-c:#610000;--surface-d:#4f4f4f;--surface-e:#3b3b3b;--surface-f:#3b3b3b;--text-color:#b0b0b0;--text-color-secondary:#7a7a7a;--primary-color:#790109;--primary-color-text:#ebebeb;--font-family:-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;--surface-0:#20262e;--surface-50:#363c43;--surface-100:#4d5158;--surface-200:#63676d;--surface-300:#797d82;--surface-400:#909397;--surface-500:#a6a8ab;--surface-600:#bcbec0;--surface-700:#d2d4d5;--surface-800:#e9e9ea;--surface-900:#ffffff;--gray-50:#e9e9ea;--gray-100:#d2d4d5;--gray-200:#bcbec0;--gray-300:#a6a8ab;--gray-400:#909397;--gray-500:#797d82;--gray-600:#63676d;--gray-700:#4d5158;--gray-800:#363c43;--gray-900:#20262e;--content-padding:1.25rem;--inline-spacing:.5rem;--border-radius:4px;--surface-ground:#20262e;--surface-section:#20262e;--surface-card:#2a323d;--surface-overlay:#2a323d;--surface-border:#3f4b5b;--surface-hover:rgba(255,255,255,.04);--maskbg:rgba(0, 0, 0, .4);--focus-ring:0 0 0 1px #8a0000;--highlight-bg:#750008;--highlight-text-color:#dedede;color-scheme:dark}*{box-sizing:border-box}:root{--blue-50:#f3f8ff;--blue-100:#c5dcff;--blue-200:#97c1fe;--blue-300:#69a5fe;--blue-400:#3b8afd;--blue-500:#0d6efd;--blue-600:#0b5ed7;--blue-700:#094db1;--blue-800:#073d8b;--blue-900:#052c65;--green-50:#f4f9f6;--green-100:#c8e2d6;--green-200:#9ccbb5;--green-300:#70b595;--green-400:#459e74;--green-500:#198754;--green-600:#157347;--green-700:#125f3b;--green-800:#0e4a2e;--green-900:#0a3622;--yellow-50:#fffcf3;--yellow-100:#fff0c3;--yellow-200:#ffe494;--yellow-300:#ffd965;--yellow-400:#ffcd36;--yellow-500:#ffc107;--yellow-600:#d9a406;--yellow-700:#b38705;--yellow-800:#8c6a04;--yellow-900:#664d03;--cyan-50:#f3fcfe;--cyan-100:#c5f2fb;--cyan-200:#97e8f9;--cyan-300:#69def6;--cyan-400:#3bd4f3;--cyan-500:#0dcaf0;--cyan-600:#0baccc;--cyan-700:#098da8;--cyan-800:#076f84;--cyan-900:#055160;--pink-50:#fdf5f9;--pink-100:#f5cee1;--pink-200:#eda7ca;--pink-300:#e681b3;--pink-400:#de5a9b;--pink-500:#d63384;--pink-600:#b62b70;--pink-700:#96245c;--pink-800:#761c49;--pink-900:#561435;--indigo-50:#f7f3fe;--indigo-100:#dac6fc;--indigo-200:#bd98f9;--indigo-300:#a06bf7;--indigo-400:#833df4;--indigo-500:#6610f2;--indigo-600:#570ece;--indigo-700:#470ba9;--indigo-800:#380985;--indigo-900:#290661;--teal-50:#f4fcfa;--teal-100:#c9f2e6;--teal-200:#9fe8d2;--teal-300:#75debf;--teal-400:#4ad3ab;--teal-500:#20c997;--teal-600:#1bab80;--teal-700:#168d6a;--teal-800:#126f53;--teal-900:#0d503c;--orange-50:#fff9f3;--orange-100:#ffe0c7;--orange-200:#fec89a;--orange-300:#feaf6d;--orange-400:#fd9741;--orange-500:#fd7e14;--orange-600:#d76b11;--orange-700:#b1580e;--orange-800:#8b450b;--orange-900:#653208;--bluegray-50:#f8f9fb;--bluegray-100:#e0e4ea;--bluegray-200:#c7ced9;--bluegray-300:#aeb9c8;--bluegray-400:#95a3b8;--bluegray-500:#7c8ea7;--bluegray-600:#69798e;--bluegray-700:#576375;--bluegray-800:#444e5c;--bluegray-900:#323943;--purple-50:#f8f6fc;--purple-100:#dcd2f0;--purple-200:#c1aee4;--purple-300:#a68ad9;--purple-400:#8a66cd;--purple-500:#6f42c1;--purple-600:#5e38a4;--purple-700:#4e2e87;--purple-800:#3d246a;--purple-900:#2c1a4d;--red-50:#fdf5f6;--red-100:#f7cfd2;--red-200:#f0a8af;--red-300:#e9828c;--red-400:#e35b68;--red-500:#dc3545;--red-600:#bb2d3b;--red-700:#9a2530;--red-800:#791d26;--red-900:#58151c;--primary-50:#f8f2f3;--primary-100:#dfc2c4;--primary-200:#c59295;--primary-300:#ac6266;--primary-400:#923138;--primary-500:#790109;--primary-600:#670108;--primary-700:#550106;--primary-800:#430105;--primary-900:#300004}</style><link rel="stylesheet" href="styles.
|
|
123
|
+
<style>@layer primeng{}:root{--surface-a:#3b3b3b;--surface-b:#303030;--surface-c:#610000;--surface-d:#4f4f4f;--surface-e:#3b3b3b;--surface-f:#3b3b3b;--text-color:#b0b0b0;--text-color-secondary:#7a7a7a;--primary-color:#790109;--primary-color-text:#ebebeb;--font-family:-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;--surface-0:#20262e;--surface-50:#363c43;--surface-100:#4d5158;--surface-200:#63676d;--surface-300:#797d82;--surface-400:#909397;--surface-500:#a6a8ab;--surface-600:#bcbec0;--surface-700:#d2d4d5;--surface-800:#e9e9ea;--surface-900:#ffffff;--gray-50:#e9e9ea;--gray-100:#d2d4d5;--gray-200:#bcbec0;--gray-300:#a6a8ab;--gray-400:#909397;--gray-500:#797d82;--gray-600:#63676d;--gray-700:#4d5158;--gray-800:#363c43;--gray-900:#20262e;--content-padding:1.25rem;--inline-spacing:.5rem;--border-radius:4px;--surface-ground:#20262e;--surface-section:#20262e;--surface-card:#2a323d;--surface-overlay:#2a323d;--surface-border:#3f4b5b;--surface-hover:rgba(255,255,255,.04);--maskbg:rgba(0, 0, 0, .4);--focus-ring:0 0 0 1px #8a0000;--highlight-bg:#750008;--highlight-text-color:#dedede;color-scheme:dark}*{box-sizing:border-box}:root{--blue-50:#f3f8ff;--blue-100:#c5dcff;--blue-200:#97c1fe;--blue-300:#69a5fe;--blue-400:#3b8afd;--blue-500:#0d6efd;--blue-600:#0b5ed7;--blue-700:#094db1;--blue-800:#073d8b;--blue-900:#052c65;--green-50:#f4f9f6;--green-100:#c8e2d6;--green-200:#9ccbb5;--green-300:#70b595;--green-400:#459e74;--green-500:#198754;--green-600:#157347;--green-700:#125f3b;--green-800:#0e4a2e;--green-900:#0a3622;--yellow-50:#fffcf3;--yellow-100:#fff0c3;--yellow-200:#ffe494;--yellow-300:#ffd965;--yellow-400:#ffcd36;--yellow-500:#ffc107;--yellow-600:#d9a406;--yellow-700:#b38705;--yellow-800:#8c6a04;--yellow-900:#664d03;--cyan-50:#f3fcfe;--cyan-100:#c5f2fb;--cyan-200:#97e8f9;--cyan-300:#69def6;--cyan-400:#3bd4f3;--cyan-500:#0dcaf0;--cyan-600:#0baccc;--cyan-700:#098da8;--cyan-800:#076f84;--cyan-900:#055160;--pink-50:#fdf5f9;--pink-100:#f5cee1;--pink-200:#eda7ca;--pink-300:#e681b3;--pink-400:#de5a9b;--pink-500:#d63384;--pink-600:#b62b70;--pink-700:#96245c;--pink-800:#761c49;--pink-900:#561435;--indigo-50:#f7f3fe;--indigo-100:#dac6fc;--indigo-200:#bd98f9;--indigo-300:#a06bf7;--indigo-400:#833df4;--indigo-500:#6610f2;--indigo-600:#570ece;--indigo-700:#470ba9;--indigo-800:#380985;--indigo-900:#290661;--teal-50:#f4fcfa;--teal-100:#c9f2e6;--teal-200:#9fe8d2;--teal-300:#75debf;--teal-400:#4ad3ab;--teal-500:#20c997;--teal-600:#1bab80;--teal-700:#168d6a;--teal-800:#126f53;--teal-900:#0d503c;--orange-50:#fff9f3;--orange-100:#ffe0c7;--orange-200:#fec89a;--orange-300:#feaf6d;--orange-400:#fd9741;--orange-500:#fd7e14;--orange-600:#d76b11;--orange-700:#b1580e;--orange-800:#8b450b;--orange-900:#653208;--bluegray-50:#f8f9fb;--bluegray-100:#e0e4ea;--bluegray-200:#c7ced9;--bluegray-300:#aeb9c8;--bluegray-400:#95a3b8;--bluegray-500:#7c8ea7;--bluegray-600:#69798e;--bluegray-700:#576375;--bluegray-800:#444e5c;--bluegray-900:#323943;--purple-50:#f8f6fc;--purple-100:#dcd2f0;--purple-200:#c1aee4;--purple-300:#a68ad9;--purple-400:#8a66cd;--purple-500:#6f42c1;--purple-600:#5e38a4;--purple-700:#4e2e87;--purple-800:#3d246a;--purple-900:#2c1a4d;--red-50:#fdf5f6;--red-100:#f7cfd2;--red-200:#f0a8af;--red-300:#e9828c;--red-400:#e35b68;--red-500:#dc3545;--red-600:#bb2d3b;--red-700:#9a2530;--red-800:#791d26;--red-900:#58151c;--primary-50:#f8f2f3;--primary-100:#dfc2c4;--primary-200:#c59295;--primary-300:#ac6266;--primary-400:#923138;--primary-500:#790109;--primary-600:#670108;--primary-700:#550106;--primary-800:#430105;--primary-900:#300004}</style><link rel="stylesheet" href="styles.242217e145c3f7ab.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="styles.242217e145c3f7ab.css"></noscript></head>
|
|
116
124
|
<body>
|
|
117
125
|
<app-root></app-root>
|
|
118
126
|
|
|
@@ -162,5 +170,5 @@
|
|
|
162
170
|
</style>
|
|
163
171
|
</noscript>
|
|
164
172
|
|
|
165
|
-
<script src="runtime.
|
|
173
|
+
<script src="runtime.662c613ba3c97743.js" type="module"></script><script src="polyfills.93062920aa87d580.js" type="module"></script><script src="main.45d0e6ca86c448ba.js" type="module"></script></body>
|
|
166
174
|
</html>
|