cc-core-cli 1.0.60 → 1.0.62

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/bin/index.js CHANGED
@@ -65,7 +65,7 @@ if (action === 'upgrade') {
65
65
  }
66
66
 
67
67
  const spinner = ora('(1/2) Copying files!').start();
68
- const IGNORE_FILES = ['src/modules','docker-compose.yml','Dockerfile','package.json','version.json','README.md','.env.develop','_env','_gitignore','_npmrc'];
68
+ const IGNORE_FILES = ['src/modules','docker-compose.yml','Dockerfile','package.json','version.json','README.md','custom.less', '.env.develop','_env','_gitignore','_npmrc'];
69
69
  fs.copySync(`${__dirname}/../template/${project}`, '.', {
70
70
  recursive: true,
71
71
  filter: (name) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cc-core-cli",
3
- "version": "1.0.60",
3
+ "version": "1.0.62",
4
4
  "description": "Command Line Interface tool for generating project templates for the (Your Platform's Name) platform.",
5
5
  "main": "bin/index.js",
6
6
  "scripts": {
@@ -413,6 +413,34 @@ html {
413
413
  filter: blur(5px);
414
414
  margin-top: -12px;
415
415
  }
416
+ .ant-menu-sub.ant-menu-inline {
417
+ background: @menu-dark-bg !important;
418
+ }
419
+ .ant-menu-submenu-open .ant-menu-submenu-arrow {
420
+ color: @menu-item-color !important;
421
+ }
422
+ .ant-menu-submenu:hover
423
+ > .ant-menu-submenu-title
424
+ > .ant-menu-submenu-arrow {
425
+ color: @menu-item-color !important;
426
+ }
427
+ .ant-menu-submenu-open .ant-menu-submenu-title > span {
428
+ color: @menu-item-color !important;
429
+ }
430
+
431
+ .ant-menu-submenu.ant-menu-submenu-inline.ant-menu-submenu-open {
432
+ color: @menu-item-group-title-color !important;
433
+ background-color: @menu-dark-submenu-bg !important;
434
+ }
435
+ .ant-menu-item a:hover {
436
+ color: @menu-item-color !important;
437
+ }
438
+ .ant-menu-inline .ant-menu-item::after {
439
+ border: none;
440
+ }
441
+ .icon_menu {
442
+ margin-top: 10px;
443
+ }
416
444
  }
417
445
 
418
446
  .layouts-sider {
@@ -97,7 +97,7 @@
97
97
  }
98
98
 
99
99
  .add-menu {
100
- margin: 2px 4px 0px 28px;
100
+ margin: 2px 4px 0px 0px;
101
101
  }
102
102
  }
103
103
 
@@ -357,7 +357,7 @@
357
357
  }
358
358
 
359
359
  .add-menu {
360
- margin: 2px 4px 0px 28px;
360
+ margin: 15px 4px 0px 0px;
361
361
  }
362
362
  }
363
363
 
@@ -406,4 +406,129 @@
406
406
  height: 100%;
407
407
  }
408
408
  }
409
- }
409
+ }
410
+
411
+ .setting-menu-card {
412
+ margin-bottom: 10px;
413
+
414
+ .setting-menu-rows {
415
+ padding: 8px;
416
+ margin-bottom: 15px;
417
+ justify-content: flex-end;
418
+ }
419
+
420
+ .setting-menu-drawer-impor-export {
421
+ margin-right: 8px;
422
+ }
423
+
424
+ .dnd-rows {
425
+ border : 1px dashed #d9d9d9;
426
+ border-radius: 5px;
427
+ }
428
+
429
+ .title-render-new {
430
+ display: flex;
431
+ padding: 0 5px;
432
+ align-items: center;
433
+ background-color: #f6f7f9;
434
+ min-height: 42px;
435
+ }
436
+
437
+ .dnd-container{
438
+ border: 1px dashed #d9d9d9;
439
+
440
+ .content {
441
+ width: 100%;
442
+ padding: 25px;
443
+
444
+ }
445
+
446
+ .title-content {
447
+ cursor: pointer;
448
+ position: relative;
449
+ display: flex;
450
+ flex-direction: row;
451
+ width: 100%;
452
+ max-width: 100%;
453
+ background-color: #fff;
454
+ line-height: 40px;
455
+ max-height: 40px;
456
+ margin-right: 5px;
457
+ }
458
+ }
459
+
460
+ .icon {
461
+ width: 30px;
462
+ text-align: center;
463
+ padding-top: 7px;
464
+ margin-bottom: -7px;
465
+
466
+ svg {
467
+ width: 18px
468
+ }
469
+ }
470
+
471
+ .icon-collapse-render {
472
+ cursor: pointer;
473
+ }
474
+
475
+ .move {
476
+ cursor: move;
477
+ }
478
+ .remove {
479
+ display: none;
480
+ // margin: 20px;
481
+ }
482
+
483
+ .title {
484
+ position: relative;
485
+ display: flex;
486
+ flex-direction: row;
487
+ width: 100%;
488
+ max-width: 100%;
489
+ background-color: #fff;
490
+ line-height: 40px;
491
+ max-height: 40px;
492
+ margin-right: 5px;
493
+
494
+ }
495
+ .title:hover {
496
+ .remove{
497
+ display: initial;
498
+ }
499
+ }
500
+
501
+ &.children,
502
+ &.last-menu {
503
+ &:hover {
504
+ .remove {
505
+ display: none;
506
+ }
507
+ }
508
+ }
509
+
510
+ .title-content {
511
+
512
+ &:hover {
513
+ .title {
514
+ padding-right: 34px;
515
+ }
516
+
517
+ &.last-menu .remove,
518
+ .remove {
519
+ display : initial;
520
+ position: absolute;
521
+ right : 0;
522
+ padding : 0px 10px;
523
+ z-index : 2;
524
+ }
525
+ }
526
+ }
527
+
528
+ &:hover {
529
+ .title {
530
+ padding-right: 34px;
531
+ }
532
+ }
533
+ }
534
+