Several bugfixes
parent
cbaaab2ccf
commit
c65c182e14
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "@librecms/ccm-cms",
|
"name": "@librecms/ccm-cms",
|
||||||
"version": "7.0.0-SNAPSHOT.2022-05-04T172346",
|
"version": "7.0.0-SNAPSHOT.2022-09-20T182133",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@librecms/ccm-cms",
|
"name": "@librecms/ccm-cms",
|
||||||
"version": "7.0.0-SNAPSHOT.2022-05-04T172346",
|
"version": "7.0.0-SNAPSHOT.2022-09-20T182133",
|
||||||
"license": "LGPL-3.0-or-later",
|
"license": "LGPL-3.0-or-later",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@tiptap/core": "^2.0.0-beta.127",
|
"@tiptap/core": "^2.0.0-beta.127",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@librecms/ccm-cms",
|
"name": "@librecms/ccm-cms",
|
||||||
"version": "7.0.0-SNAPSHOT.2022-05-04T172346",
|
"version": "7.0.0-SNAPSHOT.2022-09-20T182133",
|
||||||
"description": "JavaScript stuff for ccm-cms",
|
"description": "JavaScript stuff for ccm-cms",
|
||||||
"main": "target/generated-resources/assets/@content-sections/cms-admin.js",
|
"main": "target/generated-resources/assets/@content-sections/cms-admin.js",
|
||||||
"types": "target/generated-resources/assets/@content-sections/cms-admin.d.ts",
|
"types": "target/generated-resources/assets/@content-sections/cms-admin.d.ts",
|
||||||
|
|
|
||||||
|
|
@ -25,16 +25,6 @@ alter table CCM_CMS.PAGE_THEME_CONFIGURATIONS
|
||||||
foreign key (PAGE_ID)
|
foreign key (PAGE_ID)
|
||||||
references CCM_CMS.PAGES;
|
references CCM_CMS.PAGES;
|
||||||
|
|
||||||
alter table CCM_CMS.PAGES
|
|
||||||
add constraint FKqweb08d151ot4ij9io72w3yhx
|
|
||||||
foreign key (INDEX_PAGE_MODEL_ID)
|
|
||||||
references CCM_CORE.PAGE_MODELS;
|
|
||||||
|
|
||||||
alter table CCM_CMS.PAGES
|
|
||||||
add constraint FKg2p2ahbayc2coei72pk1lnenf
|
|
||||||
foreign key (ITEM_PAGE_MODEL_ID)
|
|
||||||
references CCM_CORE.PAGE_MODELS;
|
|
||||||
|
|
||||||
alter table CCM_CMS.PAGES
|
alter table CCM_CMS.PAGES
|
||||||
add constraint FKmgmth087tmxwieujn2vs5opbo
|
add constraint FKmgmth087tmxwieujn2vs5opbo
|
||||||
foreign key (OBJECT_ID)
|
foreign key (OBJECT_ID)
|
||||||
|
|
|
||||||
|
|
@ -1,85 +1 @@
|
||||||
create table CCM_CMS.CATEGORIZED_ITEM_COMPONENTS (
|
-- Removed
|
||||||
COMPONENT_MODEL_ID bigint not null,
|
|
||||||
primary key (COMPONENT_MODEL_ID)
|
|
||||||
);
|
|
||||||
|
|
||||||
create table CCM_CMS.CATEGORY_TREE_COMPONENTS (
|
|
||||||
SHOW_FULL_TREE boolean,
|
|
||||||
COMPONENT_MODEL_ID bigint not null,
|
|
||||||
primary key (COMPONENT_MODEL_ID)
|
|
||||||
);
|
|
||||||
|
|
||||||
create table CCM_CMS.CONTENT_ITEM_COMPONENTS (
|
|
||||||
MODE varchar(255),
|
|
||||||
COMPONENT_MODEL_ID bigint not null,
|
|
||||||
primary key (COMPONENT_MODEL_ID)
|
|
||||||
);
|
|
||||||
|
|
||||||
create table CCM_CMS.FIXED_CONTENT_ITEM_COMPONENTS (
|
|
||||||
COMPONENT_MODEL_ID bigint not null,
|
|
||||||
CONTENT_ITEM_ID bigint,
|
|
||||||
primary key (COMPONENT_MODEL_ID)
|
|
||||||
);
|
|
||||||
|
|
||||||
create table CCM_CMS.GREETING_ITEM_COMPONENTS (
|
|
||||||
COMPONENT_MODEL_ID bigint not null,
|
|
||||||
primary key (COMPONENT_MODEL_ID)
|
|
||||||
);
|
|
||||||
|
|
||||||
create table CCM_CMS.ITEM_LIST_COMPONENTS (
|
|
||||||
DESCINDING boolean,
|
|
||||||
LIMIT_TO_TYPE varchar(255),
|
|
||||||
PAGE_SIZE integer,
|
|
||||||
COMPONENT_MODEL_ID bigint not null,
|
|
||||||
primary key (COMPONENT_MODEL_ID)
|
|
||||||
);
|
|
||||||
|
|
||||||
create table CCM_CMS.ITEM_LIST_ORDER (
|
|
||||||
ITEM_LIST_ID bigint not null,
|
|
||||||
LIST_ORDER varchar(255)
|
|
||||||
);
|
|
||||||
|
|
||||||
alter table CCM_CMS.CATEGORIZED_ITEM_COMPONENT
|
|
||||||
add constraint FKr9w6qafqrbi83nncn7f6ufas7
|
|
||||||
foreign key (COMPONENT_MODEL_ID)
|
|
||||||
references CCM_CMS.CONTENT_ITEM_COMPONENTS;
|
|
||||||
|
|
||||||
alter table CCM_CMS.CATEGORY_TREE_COMPONENTS
|
|
||||||
add constraint FKfhc51tkdf705o0sy8sndqpkqa
|
|
||||||
foreign key (COMPONENT_MODEL_ID)
|
|
||||||
references CCM_CORE.PAGE_MODEL_COMPONENT_MODELS;
|
|
||||||
|
|
||||||
alter table CCM_CMS.CONTENT_ITEM_COMPONENTS
|
|
||||||
add constraint FKp83o82kxo2ipa0xo03wxp4dcr
|
|
||||||
foreign key (COMPONENT_MODEL_ID)
|
|
||||||
references CCM_CORE.PAGE_MODEL_COMPONENT_MODELS;
|
|
||||||
|
|
||||||
alter table CCM_CMS.CONTENT_ITEM_COMPONENTS
|
|
||||||
add constraint FKp83o82kxo2ipa0xo03wxp4dcr
|
|
||||||
foreign key (COMPONENT_MODEL_ID)
|
|
||||||
references CCM_CORE.PAGE_MODEL_COMPONENT_MODELS;
|
|
||||||
|
|
||||||
alter table CCM_CMS.FIXED_CONTENT_ITEM_COMPONENTS
|
|
||||||
add constraint FKlfv2clu7ubk18unio8fyvlbnf
|
|
||||||
foreign key (CONTENT_ITEM_ID)
|
|
||||||
references CCM_CMS.CONTENT_ITEMS;
|
|
||||||
|
|
||||||
alter table CCM_CMS.FIXED_CONTENT_ITEM_COMPONENTS
|
|
||||||
add constraint FKkpiuth8e994phxy1x1drh2wf5
|
|
||||||
foreign key (COMPONENT_MODEL_ID)
|
|
||||||
references CCM_CMS.CONTENT_ITEM_COMPONENTS;
|
|
||||||
|
|
||||||
alter table CCM_CMS.GREETING_ITEM_COMPONENTS
|
|
||||||
add constraint FK3fble8pmmolb7lmsca8akmb94
|
|
||||||
foreign key (COMPONENT_MODEL_ID)
|
|
||||||
references CCM_CMS.CONTENT_ITEM_COMPONENTS;
|
|
||||||
|
|
||||||
alter table CCM_CMS.ITEM_LIST_COMPONENTS
|
|
||||||
add constraint FKje8r8nvkqv8fj7i0eo1pew2yq
|
|
||||||
foreign key (COMPONENT_MODEL_ID)
|
|
||||||
references CCM_CORE.PAGE_MODEL_COMPONENT_MODELS;
|
|
||||||
|
|
||||||
alter table CCM_CMS.ITEM_LIST_ORDER
|
|
||||||
add constraint FKisnil2ibh98y2ws8or6guij21
|
|
||||||
foreign key (ITEM_LIST_ID)
|
|
||||||
references CCM_CMS.ITEM_LIST_COMPONENTS;
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
alter table ccm_cms.pages drop constraint FKqweb08d151ot4ij9io72w3yhx;
|
-- alter table ccm_cms.pages drop constraint FKqweb08d151ot4ij9io72w3yhx;
|
||||||
alter table ccm_cms.pages drop constraint FKg2p2ahbayc2coei72pk1lnenf;
|
-- alter table ccm_cms.pages drop constraint FKg2p2ahbayc2coei72pk1lnenf;
|
||||||
alter table ccm_cms.pages drop column index_page_model_id;
|
-- alter table ccm_cms.pages drop column index_page_model_id;
|
||||||
alter table ccm_cms.pages drop column item_page_model_id;
|
-- alter table ccm_cms.pages drop column item_page_model_id;
|
||||||
|
|
|
||||||
|
|
@ -25,16 +25,6 @@ alter table CCM_CMS.PAGE_THEME_CONFIGURATIONS
|
||||||
foreign key (PAGE_ID)
|
foreign key (PAGE_ID)
|
||||||
references CCM_CMS.PAGES;
|
references CCM_CMS.PAGES;
|
||||||
|
|
||||||
alter table CCM_CMS.PAGES
|
|
||||||
add constraint FKqweb08d151ot4ij9io72w3yhx
|
|
||||||
foreign key (INDEX_PAGE_MODEL_ID)
|
|
||||||
references CCM_CORE.PAGE_MODELS;
|
|
||||||
|
|
||||||
alter table CCM_CMS.PAGES
|
|
||||||
add constraint FKg2p2ahbayc2coei72pk1lnenf
|
|
||||||
foreign key (ITEM_PAGE_MODEL_ID)
|
|
||||||
references CCM_CORE.PAGE_MODELS;
|
|
||||||
|
|
||||||
alter table CCM_CMS.PAGES
|
alter table CCM_CMS.PAGES
|
||||||
add constraint FKmgmth087tmxwieujn2vs5opbo
|
add constraint FKmgmth087tmxwieujn2vs5opbo
|
||||||
foreign key (OBJECT_ID)
|
foreign key (OBJECT_ID)
|
||||||
|
|
|
||||||
|
|
@ -1,80 +1 @@
|
||||||
create table CCM_CMS.CATEGORIZED_ITEM_COMPONENTS (
|
-- Removed
|
||||||
COMPONENT_MODEL_ID int8 not null,
|
|
||||||
primary key (COMPONENT_MODEL_ID)
|
|
||||||
);
|
|
||||||
|
|
||||||
create table CCM_CMS.CATEGORY_TREE_COMPONENTS (
|
|
||||||
SHOW_FULL_TREE boolean,
|
|
||||||
COMPONENT_MODEL_ID int8 not null,
|
|
||||||
primary key (COMPONENT_MODEL_ID)
|
|
||||||
);
|
|
||||||
|
|
||||||
create table CCM_CMS.CONTENT_ITEM_COMPONENTS (
|
|
||||||
MODE varchar(255),
|
|
||||||
COMPONENT_MODEL_ID int8 not null,
|
|
||||||
primary key (COMPONENT_MODEL_ID)
|
|
||||||
);
|
|
||||||
|
|
||||||
create table CCM_CMS.FIXED_CONTENT_ITEM_COMPONENTS (
|
|
||||||
COMPONENT_MODEL_ID int8 not null,
|
|
||||||
CONTENT_ITEM_ID int8,
|
|
||||||
primary key (COMPONENT_MODEL_ID)
|
|
||||||
);
|
|
||||||
|
|
||||||
create table CCM_CMS.GREETING_ITEM_COMPONENTS (
|
|
||||||
COMPONENT_MODEL_ID int8 not null,
|
|
||||||
primary key (COMPONENT_MODEL_ID)
|
|
||||||
);
|
|
||||||
|
|
||||||
create table CCM_CMS.ITEM_LIST_COMPONENTS (
|
|
||||||
DESCINDING boolean,
|
|
||||||
LIMIT_TO_TYPE varchar(255),
|
|
||||||
PAGE_SIZE int4,
|
|
||||||
COMPONENT_MODEL_ID int8 not null,
|
|
||||||
primary key (COMPONENT_MODEL_ID)
|
|
||||||
);
|
|
||||||
|
|
||||||
create table CCM_CMS.ITEM_LIST_ORDER (
|
|
||||||
ITEM_LIST_ID int8 not null,
|
|
||||||
LIST_ORDER varchar(255)
|
|
||||||
);
|
|
||||||
|
|
||||||
alter table CCM_CMS.CATEGORIZED_ITEM_COMPONENTS
|
|
||||||
add constraint FKlraxqtl9cnntdo0qovq340y7b
|
|
||||||
foreign key (COMPONENT_MODEL_ID)
|
|
||||||
references CCM_CMS.CONTENT_ITEM_COMPONENTS;
|
|
||||||
|
|
||||||
alter table CCM_CMS.CATEGORY_TREE_COMPONENTS
|
|
||||||
add constraint FKfhc51tkdf705o0sy8sndqpkqa
|
|
||||||
foreign key (COMPONENT_MODEL_ID)
|
|
||||||
references CCM_CORE.PAGE_MODEL_COMPONENT_MODELS;
|
|
||||||
|
|
||||||
alter table CCM_CMS.CONTENT_ITEM_COMPONENTS
|
|
||||||
add constraint FKp83o82kxo2ipa0xo03wxp4dcr
|
|
||||||
foreign key (COMPONENT_MODEL_ID)
|
|
||||||
references CCM_CORE.PAGE_MODEL_COMPONENT_MODELS;
|
|
||||||
|
|
||||||
alter table CCM_CMS.FIXED_CONTENT_ITEM_COMPONENTS
|
|
||||||
add constraint FKlfv2clu7ubk18unio8fyvlbnf
|
|
||||||
foreign key (CONTENT_ITEM_ID)
|
|
||||||
references CCM_CMS.CONTENT_ITEMS;
|
|
||||||
|
|
||||||
alter table CCM_CMS.FIXED_CONTENT_ITEM_COMPONENTS
|
|
||||||
add constraint FKkpiuth8e994phxy1x1drh2wf5
|
|
||||||
foreign key (COMPONENT_MODEL_ID)
|
|
||||||
references CCM_CMS.CONTENT_ITEM_COMPONENTS;
|
|
||||||
|
|
||||||
alter table CCM_CMS.GREETING_ITEM_COMPONENTS
|
|
||||||
add constraint FK3fble8pmmolb7lmsca8akmb94
|
|
||||||
foreign key (COMPONENT_MODEL_ID)
|
|
||||||
references CCM_CMS.CONTENT_ITEM_COMPONENTS;
|
|
||||||
|
|
||||||
alter table CCM_CMS.ITEM_LIST_COMPONENTS
|
|
||||||
add constraint FKje8r8nvkqv8fj7i0eo1pew2yq
|
|
||||||
foreign key (COMPONENT_MODEL_ID)
|
|
||||||
references CCM_CORE.PAGE_MODEL_COMPONENT_MODELS;
|
|
||||||
|
|
||||||
alter table CCM_CMS.ITEM_LIST_ORDER
|
|
||||||
add constraint FKisnil2ibh98y2ws8or6guij21
|
|
||||||
foreign key (ITEM_LIST_ID)
|
|
||||||
references CCM_CMS.ITEM_LIST_COMPONENTS;
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
alter table ccm_cms.pages drop constraint FKqweb08d151ot4ij9io72w3yhx;
|
-- alter table ccm_cms.pages drop constraint FKqweb08d151ot4ij9io72w3yhx;
|
||||||
alter table ccm_cms.pages drop constraint FKg2p2ahbayc2coei72pk1lnenf;
|
-- alter table ccm_cms.pages drop constraint FKg2p2ahbayc2coei72pk1lnenf;
|
||||||
alter table ccm_cms.pages drop column index_page_model_id;
|
-- alter table ccm_cms.pages drop column index_page_model_id;
|
||||||
alter table ccm_cms.pages drop column item_page_model_id;
|
-- alter table ccm_cms.pages drop column item_page_model_id;
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
{
|
{
|
||||||
"name": "ccm-core",
|
"name": "@libreccm/ccm-core",
|
||||||
"version": "7.0.0",
|
"version": "7.0.0",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "ccm-core",
|
"name": "@libreccm/ccm-core",
|
||||||
"version": "7.0.0",
|
"version": "7.0.0",
|
||||||
"license": "LGPL-3.0-or-later",
|
"license": "LGPL-3.0-or-later",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
@ -264,6 +264,18 @@
|
||||||
"integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==",
|
"integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
|
"node_modules/acorn": {
|
||||||
|
"version": "8.8.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz",
|
||||||
|
"integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==",
|
||||||
|
"dev": true,
|
||||||
|
"bin": {
|
||||||
|
"acorn": "bin/acorn"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=0.4.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/acorn-import-assertions": {
|
"node_modules/acorn-import-assertions": {
|
||||||
"version": "1.7.6",
|
"version": "1.7.6",
|
||||||
"resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.7.6.tgz",
|
"resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.7.6.tgz",
|
||||||
|
|
@ -273,6 +285,22 @@
|
||||||
"acorn": "^8"
|
"acorn": "^8"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/ajv": {
|
||||||
|
"version": "6.12.6",
|
||||||
|
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
|
||||||
|
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
|
||||||
|
"dev": true,
|
||||||
|
"dependencies": {
|
||||||
|
"fast-deep-equal": "^3.1.1",
|
||||||
|
"fast-json-stable-stringify": "^2.0.0",
|
||||||
|
"json-schema-traverse": "^0.4.1",
|
||||||
|
"uri-js": "^4.2.2"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"type": "github",
|
||||||
|
"url": "https://github.com/sponsors/epoberezkin"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/ajv-keywords": {
|
"node_modules/ajv-keywords": {
|
||||||
"version": "3.5.2",
|
"version": "3.5.2",
|
||||||
"resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
|
"resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
|
||||||
|
|
@ -1601,22 +1629,6 @@
|
||||||
"url": "https://opencollective.com/webpack"
|
"url": "https://opencollective.com/webpack"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/schema-utils/node_modules/ajv": {
|
|
||||||
"version": "6.12.6",
|
|
||||||
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
|
|
||||||
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
|
|
||||||
"dev": true,
|
|
||||||
"dependencies": {
|
|
||||||
"fast-deep-equal": "^3.1.1",
|
|
||||||
"fast-json-stable-stringify": "^2.0.0",
|
|
||||||
"json-schema-traverse": "^0.4.1",
|
|
||||||
"uri-js": "^4.2.2"
|
|
||||||
},
|
|
||||||
"funding": {
|
|
||||||
"type": "github",
|
|
||||||
"url": "https://github.com/sponsors/epoberezkin"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"node_modules/semver": {
|
"node_modules/semver": {
|
||||||
"version": "5.7.1",
|
"version": "5.7.1",
|
||||||
"resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
|
"resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
|
||||||
|
|
@ -2226,18 +2238,6 @@
|
||||||
"node": ">=10.13.0"
|
"node": ">=10.13.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/webpack/node_modules/acorn": {
|
|
||||||
"version": "8.4.1",
|
|
||||||
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.4.1.tgz",
|
|
||||||
"integrity": "sha512-asabaBSkEKosYKMITunzX177CXxQ4Q8BSSzMTKD+FefUhipQC70gfW5SiUDhYQ3vk8G+81HqQk7Fv9OXwwn9KA==",
|
|
||||||
"dev": true,
|
|
||||||
"bin": {
|
|
||||||
"acorn": "bin/acorn"
|
|
||||||
},
|
|
||||||
"engines": {
|
|
||||||
"node": ">=0.4.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"node_modules/webpack/node_modules/browserslist": {
|
"node_modules/webpack/node_modules/browserslist": {
|
||||||
"version": "4.16.8",
|
"version": "4.16.8",
|
||||||
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.8.tgz",
|
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.8.tgz",
|
||||||
|
|
@ -2561,6 +2561,12 @@
|
||||||
"integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==",
|
"integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
|
"acorn": {
|
||||||
|
"version": "8.8.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz",
|
||||||
|
"integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==",
|
||||||
|
"dev": true
|
||||||
|
},
|
||||||
"acorn-import-assertions": {
|
"acorn-import-assertions": {
|
||||||
"version": "1.7.6",
|
"version": "1.7.6",
|
||||||
"resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.7.6.tgz",
|
"resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.7.6.tgz",
|
||||||
|
|
@ -2568,6 +2574,18 @@
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {}
|
"requires": {}
|
||||||
},
|
},
|
||||||
|
"ajv": {
|
||||||
|
"version": "6.12.6",
|
||||||
|
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
|
||||||
|
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
|
||||||
|
"dev": true,
|
||||||
|
"requires": {
|
||||||
|
"fast-deep-equal": "^3.1.1",
|
||||||
|
"fast-json-stable-stringify": "^2.0.0",
|
||||||
|
"json-schema-traverse": "^0.4.1",
|
||||||
|
"uri-js": "^4.2.2"
|
||||||
|
}
|
||||||
|
},
|
||||||
"ajv-keywords": {
|
"ajv-keywords": {
|
||||||
"version": "3.5.2",
|
"version": "3.5.2",
|
||||||
"resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
|
"resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
|
||||||
|
|
@ -3544,20 +3562,6 @@
|
||||||
"@types/json-schema": "^7.0.8",
|
"@types/json-schema": "^7.0.8",
|
||||||
"ajv": "^6.12.5",
|
"ajv": "^6.12.5",
|
||||||
"ajv-keywords": "^3.5.2"
|
"ajv-keywords": "^3.5.2"
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"ajv": {
|
|
||||||
"version": "6.12.6",
|
|
||||||
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
|
|
||||||
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
|
|
||||||
"dev": true,
|
|
||||||
"requires": {
|
|
||||||
"fast-deep-equal": "^3.1.1",
|
|
||||||
"fast-json-stable-stringify": "^2.0.0",
|
|
||||||
"json-schema-traverse": "^0.4.1",
|
|
||||||
"uri-js": "^4.2.2"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"semver": {
|
"semver": {
|
||||||
|
|
@ -3950,12 +3954,6 @@
|
||||||
"webpack-sources": "^3.2.0"
|
"webpack-sources": "^3.2.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"acorn": {
|
|
||||||
"version": "8.4.1",
|
|
||||||
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.4.1.tgz",
|
|
||||||
"integrity": "sha512-asabaBSkEKosYKMITunzX177CXxQ4Q8BSSzMTKD+FefUhipQC70gfW5SiUDhYQ3vk8G+81HqQk7Fv9OXwwn9KA==",
|
|
||||||
"dev": true
|
|
||||||
},
|
|
||||||
"browserslist": {
|
"browserslist": {
|
||||||
"version": "4.16.8",
|
"version": "4.16.8",
|
||||||
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.8.tgz",
|
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.8.tgz",
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
{
|
{
|
||||||
"name": "ccm-core",
|
"name": "@libreccm/ccm-core",
|
||||||
"version": "7.0.0",
|
"version": "7.0.0",
|
||||||
"description": "JavaScript stuff for ccm-core",
|
"description": "JavaScript stuff for ccm-core",
|
||||||
"main": "index.js",
|
"main": "target/generated-resources/assets/@admin/ccm-admin.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "npm-run-all build:*:*",
|
"build": "npm-run-all build:*",
|
||||||
"build:js": "webpack",
|
"build:js": "webpack",
|
||||||
"build:css": "npm-run-all build:css:*",
|
"build:css": "npm-run-all build:css:*",
|
||||||
"build:css:ccm-admin": "sass src/main/scss/ccm-admin/ccm-admin.scss target/generated-resources/assets/@admin/ccm-admin.css"
|
"build:css:ccm-admin": "sass src/main/scss/ccm-admin/ccm-admin.scss target/generated-resources/assets/@admin/ccm-admin.css"
|
||||||
|
|
|
||||||
|
|
@ -122,7 +122,7 @@
|
||||||
id="setting-#{setting.name}-edit-dialog"
|
id="setting-#{setting.name}-edit-dialog"
|
||||||
tabindex="-1">
|
tabindex="-1">
|
||||||
<div class="modal-dialog">
|
<div class="modal-dialog">
|
||||||
<form action="#{mvc.basePath}/configuration/#{configurationClass}/#{settingName}"
|
<form action="#{mvc.basePath}/configuration/#{configurationClass}/#{setting.name}"
|
||||||
class="modal-content"
|
class="modal-content"
|
||||||
method="post">
|
method="post">
|
||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"allowSyntheticDefaultImports": true,
|
||||||
|
"declaration": true,
|
||||||
|
"lib": [
|
||||||
|
"DOM",
|
||||||
|
"ES2016"
|
||||||
|
],
|
||||||
|
"module": "commonjs",
|
||||||
|
"moduleResolution": "node",
|
||||||
|
"outDir": "target/generated-resources/assets/@admin",
|
||||||
|
"sourceMap": true,
|
||||||
|
"strict": true,
|
||||||
|
"target": "ES6"
|
||||||
|
},
|
||||||
|
"include": [
|
||||||
|
"src/main/typescript/**/*"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -2,11 +2,11 @@ module.exports = {
|
||||||
mode: "production",
|
mode: "production",
|
||||||
devtool: "source-map",
|
devtool: "source-map",
|
||||||
entry: {
|
entry: {
|
||||||
"ccm-admin": "./src/main/typescript/ccm-admin.ts",
|
"ccm-admin": "./src/main/typescript/ccm-admin/ccm-admin.ts",
|
||||||
},
|
},
|
||||||
output: {
|
output: {
|
||||||
filename: "[name].js",
|
filename: "[name].js",
|
||||||
path: __dirname + "/target/generated-resources/assets/@content-sections"
|
path: __dirname + "/target/generated-resources/assets/@admin"
|
||||||
},
|
},
|
||||||
resolve: {
|
resolve: {
|
||||||
extensions: [".tsx", ".ts", ".js", ".json"]
|
extensions: [".tsx", ".ts", ".js", ".json"]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue