cc-core-cli 1.0.95 → 1.0.96

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cc-core-cli",
3
- "version": "1.0.95",
3
+ "version": "1.0.96",
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": {
@@ -27,6 +27,70 @@
27
27
  }
28
28
  }
29
29
 
30
+ .widget-template-container {
31
+ .widget {
32
+ cursor: pointer;
33
+ background-color: @background-color;
34
+ margin-bottom: 5px;
35
+ border-radius: 5px;
36
+ padding: 5px 15px;
37
+ white-space: nowrap;
38
+ overflow: hidden;
39
+ text-overflow: ellipsis;
40
+ }
41
+ }
42
+
43
+ .template-dnd {
44
+ // min-height: 300px;
45
+ }
46
+
47
+ .template-rows {
48
+ border : 1px dashed #d9d9d9;
49
+ height: 100%;
50
+ position: relative;
51
+ }
52
+
53
+ .template-rows-is-empty {
54
+ width: 100%;
55
+ }
56
+
57
+ .template-colums {
58
+ min-width: 100%;
59
+ display: flex;
60
+ }
61
+
62
+ .template-colums-left {
63
+ display: flex;
64
+ width: 50%;
65
+ height: 100%;
66
+ z-index: 99;
67
+ }
68
+
69
+ .template-colums-right {
70
+ display: flex;
71
+ width: 50%;
72
+ height: 100%;
73
+ z-index: 99;
74
+ }
75
+
76
+ .pagebuilder-column-resize-handle {
77
+ cursor: col-resize;
78
+ position: absolute;
79
+ right: 0;
80
+ width: 15px;
81
+ z-index: 28;
82
+ }
83
+
84
+ .resize {
85
+ border: 1px solid black;
86
+ overflow:auto;
87
+ width: 100%;
88
+ display: flex;
89
+ }
90
+ .resize.horizontal {
91
+ resize: horizontal;
92
+ }
93
+
30
94
  @media (max-width: @screen-sm-max) {
31
95
  .ant-drawer.print-template {
32
96
  .ant-drawer-content-wrapper {
@@ -34,3 +98,612 @@
34
98
  }
35
99
  }
36
100
  }
101
+
102
+ .react-resizable {
103
+ position: relative;
104
+ display: flex;
105
+ }
106
+ .react-resizable-handle {
107
+ position: absolute;
108
+ width: 15px;
109
+ height: 100%;
110
+ z-index: 99;
111
+ }
112
+ .react-resizable-handle-sw {
113
+ bottom: 0;
114
+ left: 0;
115
+ cursor: sw-resize;
116
+ transform: rotate(90deg);
117
+ }
118
+ .react-resizable-handle-se {
119
+ bottom: 0;
120
+ right: 0;
121
+ cursor: se-resize;
122
+ }
123
+ .react-resizable-handle-nw {
124
+ top: 0;
125
+ left: 0;
126
+ cursor: nw-resize;
127
+ transform: rotate(180deg);
128
+ }
129
+ .react-resizable-handle-ne {
130
+ top: 0;
131
+ right: 0;
132
+ cursor: ne-resize;
133
+ transform: rotate(270deg);
134
+ }
135
+ .react-resizable-handle-w,
136
+ .react-resizable-handle-e {
137
+ top: 50%;
138
+ margin-top: -10px;
139
+ cursor: ew-resize;
140
+ }
141
+ .react-resizable-handle-w {
142
+ left: 0;
143
+ transform: rotate(135deg);
144
+ }
145
+ .react-resizable-handle-e {
146
+ right: 0;
147
+ transform: rotate(315deg);
148
+ }
149
+ .react-resizable-handle-n,
150
+ .react-resizable-handle-s {
151
+ left: 50%;
152
+ margin-left: -10px;
153
+ cursor: ns-resize;
154
+ }
155
+ .react-resizable-handle-n {
156
+ top: 0;
157
+ transform: rotate(225deg);
158
+ }
159
+ .react-resizable-handle-s {
160
+ bottom: 0;
161
+ transform: rotate(45deg);
162
+ }
163
+
164
+ .pagebuilder-options {
165
+ height: 40px;
166
+ opacity: 0;
167
+ position: absolute;
168
+ right: 0;
169
+ text-align: center;
170
+ visibility: hidden;
171
+ z-index: 20;
172
+ right: 50%;
173
+ transform: translate(50%, 0%);
174
+ }
175
+
176
+ .over-pagebuilder-options {
177
+ opacity: 1;
178
+ visibility: visible;
179
+ }
180
+
181
+ .over-pagebuilder-options-delete {
182
+ opacity: 0;
183
+ visibility: hidden;
184
+ }
185
+
186
+ .pagebuilder-options-wrapper{
187
+ background: #fff;
188
+ box-shadow: 0 2px 6px rgba(0,0,0,0.3);
189
+ display: flex;
190
+ }
191
+
192
+ .pagebuilder-options-wrapper-icon {
193
+ color: #373330;
194
+ display: block;
195
+ text-align: center;
196
+ text-decoration: none;
197
+ display: flex;
198
+ justify-content: center;
199
+ align-items: center;
200
+ cursor: pointer;
201
+ padding-left: 10px;
202
+ padding-right: 10px;
203
+ }
204
+ .pagebuilder-options-wrapper-icon-drop {
205
+ color: #373330;
206
+ display: block;
207
+ height: 36px;
208
+ text-align: center;
209
+ text-decoration: none;
210
+ width: 36px;
211
+ display: flex;
212
+ justify-content: center;
213
+ align-items: center;
214
+ cursor: pointer;
215
+ }
216
+
217
+ .pagebuilder-options-wrapper-text {
218
+ display: block;
219
+ text-align: center;
220
+ text-decoration: none;
221
+ display: flex;
222
+ justify-content: center;
223
+ align-items: center;
224
+ }
225
+
226
+ .react-resizable-content {
227
+ width: 100%;
228
+ height: 100%;
229
+ position: absolute;
230
+ display: flex;
231
+ }
232
+
233
+ .template-pagebuilder {
234
+ height: 100%;
235
+ z-index: 15;
236
+ }
237
+
238
+ .template-pagebuilder:hover
239
+ >.pagebuilder-options {
240
+ opacity: 1;
241
+ visibility: visible;
242
+ }
243
+
244
+ .template-pagebuilder:hover
245
+ >.template-dnd
246
+ >.ant-row
247
+ >.dustbin
248
+ >.template-pagebuilder {
249
+ opacity: 1;
250
+ visibility: visible;
251
+ }
252
+
253
+ .template-pagebuilder:hover
254
+ >.react-resizable
255
+ >.pagebuilder-options-columns {
256
+ opacity: 1;
257
+ visibility: visible;
258
+ }
259
+
260
+ .template-pagebuilder:has(.template-pagebuilder:hover)
261
+ > .pagebuilder-options {
262
+ visibility: hidden;
263
+ opacity: 0;
264
+ }
265
+
266
+ .template-pagebuilder:has(.template-pagebuilder:hover)
267
+ >.react-resizable
268
+ >.pagebuilder-options-columns {
269
+ visibility: hidden;
270
+ opacity: 0;
271
+ }
272
+
273
+ .divider-template {
274
+ min-height: 20px;
275
+ display: flex;
276
+ width: 100%;
277
+ align-items: center;
278
+ }
279
+
280
+ .wysiwyg-template {
281
+ min-height: 40px;
282
+ display: flex;
283
+ width: 100%;
284
+ align-items: center;
285
+ }
286
+
287
+
288
+ .template-break-page {
289
+ min-height: 40px;
290
+ // display: flex;
291
+ width: 100%;
292
+ align-items: center;
293
+
294
+ }
295
+ .template-break-page-content {
296
+ border-bottom: 1px dashed #d9d9d9;
297
+ width: 100%;
298
+ height: 10px;
299
+ }
300
+
301
+ .template-break-page-content-text {
302
+ font-size: 10px;
303
+ display: flex !important;
304
+ justify-content: center;
305
+ margin-top: -10px;
306
+ }
307
+
308
+
309
+
310
+
311
+
312
+
313
+ .App {
314
+ font-family: sans-serif;
315
+ text-align: center;
316
+ height: 100vh;
317
+ }
318
+
319
+ .leaflet-container {
320
+ width: 100%;
321
+ height: 100%;
322
+ }
323
+
324
+ .Resizer {
325
+ background: #000;
326
+ opacity: 0.2;
327
+ z-index: 1;
328
+ -moz-box-sizing: border-box;
329
+ -webkit-box-sizing: border-box;
330
+ box-sizing: border-box;
331
+ -moz-background-clip: padding;
332
+ -webkit-background-clip: padding;
333
+ background-clip: padding-box;
334
+ }
335
+
336
+ .Resizer:hover {
337
+ -webkit-transition: all 2s ease;
338
+ transition: all 2s ease;
339
+ }
340
+
341
+ .Resizer.horizontal {
342
+ height: 11px;
343
+ margin: -5px 0;
344
+ border-top: 5px solid rgba(255, 255, 255, 0);
345
+ border-bottom: 5px solid rgba(255, 255, 255, 0);
346
+ cursor: row-resize;
347
+ width: 100%;
348
+ }
349
+
350
+ .Resizer.horizontal:hover {
351
+ border-top: 5px solid rgba(0, 0, 0, 0.5);
352
+ border-bottom: 5px solid rgba(0, 0, 0, 0.5);
353
+ }
354
+
355
+ .Resizer.vertical {
356
+ width: 11px;
357
+ margin: 0 -5px;
358
+ border-left: 5px solid rgba(255, 255, 255, 0);
359
+ border-right: 5px solid rgba(255, 255, 255, 0);
360
+ cursor: col-resize;
361
+ }
362
+
363
+ .Resizer.vertical:hover {
364
+ border-left: 5px solid rgba(0, 0, 0, 0.5);
365
+ border-right: 5px solid rgba(0, 0, 0, 0.5);
366
+ }
367
+ .Resizer.disabled {
368
+ cursor: not-allowed;
369
+ }
370
+ .Resizer.disabled:hover {
371
+ border-color: transparent;
372
+ }
373
+
374
+
375
+ .dustbin {
376
+ width: 100%;
377
+ height: 100%;
378
+ }
379
+
380
+ .empty-data-template {
381
+ font-size: 14px;
382
+ left: 0;
383
+ position: absolute;
384
+ text-align: center;
385
+ top: 50%;
386
+ transform: translateY(-50%);
387
+ transition: .3s;
388
+ width: 100%;
389
+ display: block;
390
+ overflow: hidden;
391
+ }
392
+
393
+ // .template-columns {
394
+ // z-index: 16;
395
+ // }
396
+
397
+
398
+ .form-layout {
399
+ display: inline-block;
400
+ height: 220px;
401
+ vertical-align: top;
402
+ width: 480px;
403
+ background: #f8f8f8;
404
+ }
405
+
406
+ .form-layout-layer {
407
+ height: 220px;
408
+ position: relative;
409
+ width: 480px
410
+ }
411
+
412
+ .form-layout-top {
413
+ left: 50%;
414
+ position: absolute;
415
+ top: 9px;
416
+ transform: translateX(-50%);
417
+ }
418
+
419
+ .form-layout-right {
420
+ position: absolute;
421
+ right: 5px;
422
+ top: 50%;
423
+ transform: translateY(-50%);
424
+ }
425
+
426
+ .form-layout-bottom {
427
+ bottom: -16px;
428
+ left: 50%;
429
+ position: absolute;
430
+ transform: translateX(-50%);
431
+ }
432
+
433
+ .form-layout-left {
434
+ left: 5px;
435
+ position: absolute;
436
+ top: 50%;
437
+ transform: translateY(-50%);
438
+ }
439
+
440
+ .control-text {
441
+ width: 5rem;
442
+ }
443
+
444
+ .form-layout-layer-border {
445
+ background: #ebebeb;
446
+ border: 1px solid #d6d6d6;
447
+ bottom: 50px;
448
+ box-sizing: border-box;
449
+ height: 120px;
450
+ left: 90px;
451
+ position: absolute;
452
+ right: 90px;
453
+ top: 50px;
454
+ width: 300px;
455
+ }
456
+
457
+ .form-layout-box {
458
+ display: flex;
459
+ width: 100%;
460
+ // align-items: center;
461
+ // justify-content: center;
462
+
463
+ }
464
+
465
+ .form-layout-box-label {
466
+ position: relative;
467
+ display: inline-flex;
468
+ align-items: center;
469
+ height: 32px;
470
+ color: rgba(0, 0, 0, 0.65) !important;
471
+ font-size: 14px;
472
+ margin-top: 40px;
473
+ margin-bottom: 10px;
474
+ }
475
+
476
+ .form-layout-label {
477
+ font-size: 12px;
478
+ padding: 10px;
479
+ }
480
+
481
+ .wysiwyg-template{
482
+ table,
483
+ th,
484
+ td {
485
+ border: 1px solid #eceaea;
486
+ border-collapse: collapse;
487
+ }
488
+ }
489
+
490
+ .expandAlt {
491
+ color: #FFF;
492
+ z-index: 9;
493
+ cursor: pointer;
494
+ padding-right: 20px;
495
+ padding-top: 10px;
496
+ }
497
+
498
+ .expandAlt-header {
499
+ width: 100%;
500
+ height: 45px;
501
+ background-color: #363636;
502
+ margin-bottom: 0;
503
+ text-align: end;
504
+ }
505
+
506
+ .modal-template.ant-modal {
507
+ width: 100% !important;
508
+ height: 100vh;
509
+ width: 100vw;
510
+ padding: 0;
511
+ margin: 0;
512
+ top: 0;
513
+ max-width : 100vw;
514
+
515
+ .ant-modal-content {
516
+ // height: 100vh;
517
+ // height: calc(100vh - 45px);
518
+ }
519
+
520
+ .ant-modal-body {
521
+ padding: 0;
522
+ margin: 0;
523
+ }
524
+
525
+ .ant-modal-close-x {
526
+ display: none;
527
+ }
528
+
529
+ .menu-template {
530
+ // width: 21vh;
531
+ background-color: #363636;
532
+ height: calc(100vh - 45px);
533
+
534
+ .ant-menu-sub {
535
+ background-color: #363636;
536
+
537
+ .ant-menu-item {
538
+ background-color: #a7a7a7fd;
539
+ margin :0px;
540
+ margin-top: 1px;
541
+ margin-bottom: 1px;
542
+ color: #FFF;
543
+ }
544
+
545
+ .ant-menu-item-selected::after{
546
+ display: none !important;
547
+ }
548
+ }
549
+
550
+ .ant-menu-submenu-title {
551
+ color: #FFF;
552
+ }
553
+
554
+ .menu-template-title {
555
+ color: #FFF;
556
+ }
557
+
558
+ .ant-menu-submenu-arrow {
559
+ color: #FFF;
560
+ }
561
+
562
+ .ant-menu-inline .ant-menu-item, .ant-menu-inline .ant-menu-submenu-title {
563
+ width: calc(100% + 0px);
564
+ }
565
+ }
566
+
567
+ .box-items-container-template {
568
+ height: calc(100vh - 45px);
569
+ position: relative;
570
+ overflow: scroll;
571
+ padding: 0px;
572
+ -ms-overflow-style: none; /* IE and Edge */
573
+ scrollbar-width: none;
574
+ }
575
+
576
+ .box-items-container-template::-webkit-scrollbar {
577
+ display: none;
578
+ }
579
+
580
+ .tabs-box-items-container-template {
581
+
582
+ .ant-tabs-nav {
583
+ background-color: #363636;
584
+ color: #FFF;
585
+ min-height: 46px;
586
+ margin-bottom: 0px;
587
+ position: unset;
588
+
589
+ .ant-tabs-tab {
590
+ font-size: 10px;
591
+ }
592
+
593
+ .ant-tabs-ink-bar {
594
+ background: unset;
595
+ }
596
+ }
597
+ }
598
+
599
+ .box-items-template {
600
+ // background-color: #484848d6;
601
+ }
602
+ }
603
+
604
+ .box-items-container-template-menu {
605
+ background-color: #363636;
606
+ min-height: 46px;
607
+ width: 100%;
608
+ }
609
+
610
+ .modal-component-layout-edit-template.ant-modal {
611
+ height: 100vh;
612
+ width: calc(100vw - 12.5%) !important;
613
+ left: 12.5%;
614
+ padding: 0;
615
+ margin: 0;
616
+ top: 0;
617
+ max-width : 100vw;
618
+
619
+ .ant-modal-body {
620
+ padding: 0;
621
+ margin: 0;
622
+ }
623
+
624
+ .ant-modal-content {
625
+ border-radius: 0px;
626
+ min-height: calc(100vh);
627
+ }
628
+
629
+ .ant-modal-close-x {
630
+ display: none;
631
+ }
632
+
633
+ }
634
+
635
+ .modal-component-layout-edit-template-title {
636
+ display: flex;
637
+ justify-content: space-between;
638
+ }
639
+
640
+ .box-items-template-container {
641
+ height: 100vh;
642
+ }
643
+
644
+ .modal-component-list-page.ant-modal {
645
+ width:440px !important;
646
+
647
+ .ant-modal-body {
648
+ padding: 0px;
649
+ max-height: 30vh;
650
+ overflow: scroll;
651
+ }
652
+
653
+ .ant-modal-content {
654
+ // border-radius: 0px;
655
+ }
656
+ }
657
+
658
+ .template-list-page {
659
+ -webkit-box-align: center;
660
+ -webkit-align-items: center;
661
+ align-items: center;
662
+ display: -webkit-box;
663
+ display: -webkit-flex;
664
+ display: flex;
665
+ -webkit-box-flex: 1;
666
+ -webkit-flex: 1;
667
+ flex: 1;
668
+ min-height: 64px;
669
+ border-top: 1px solid #f0f0f0;
670
+ padding: 20px;
671
+ cursor: pointer;
672
+ }
673
+
674
+ .template-list-page-action{
675
+ border-left: 4px solid #4285f4;
676
+ box-sizing: border-box;
677
+ cursor: default;
678
+ }
679
+
680
+ .template-list-page-disabled {
681
+ opacity: 0.5;
682
+ }
683
+
684
+ .modal-form-builder-add-tabs.ant-modal {
685
+ width:440px !important;
686
+
687
+ .ant-modal-body {
688
+ padding: 0px;
689
+ max-height: 30vh;
690
+ overflow: scroll;
691
+ }
692
+
693
+ .ant-modal-content {
694
+ // border-radius: 0px;
695
+ }
696
+
697
+ .draggable-row {
698
+ padding-right: 5px;
699
+ }
700
+
701
+ .modal-form-builder-add-tabs-remove {
702
+ cursor: pointer;
703
+ }
704
+ }
705
+
706
+
707
+ // .ant-modal-wrap::-webkit-scrollbar {
708
+ // display: none;
709
+ // }