cc-core-cli 1.0.140 → 1.0.141

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.140",
3
+ "version": "1.0.141",
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": {
@@ -0,0 +1,144 @@
1
+ .json-diff-viewer {
2
+ width: 100%;
3
+ border-collapse: collapse;
4
+ border-spacing: 0;
5
+ table-layout: fixed;
6
+ }
7
+ .json-diff-viewer tr {
8
+ vertical-align: top;
9
+ }
10
+ .json-diff-viewer tr .line-add {
11
+ background: #a5d6a7;
12
+ }
13
+ .json-diff-viewer tr .line-remove {
14
+ background: #ef9a9a;
15
+ }
16
+ .json-diff-viewer tr .line-modify {
17
+ background: #ffe082;
18
+ }
19
+ .json-diff-viewer tr:hover td {
20
+ position: relative;
21
+ }
22
+ .json-diff-viewer tr:hover td:before {
23
+ position: absolute;
24
+ top: 0;
25
+ left: 0;
26
+ width: 100%;
27
+ height: 100%;
28
+ background: rgba(0, 0, 0, 0.05);
29
+ content: '';
30
+ pointer-events: none;
31
+ }
32
+ .json-diff-viewer tr.message-line {
33
+ border-top: 1px solid;
34
+ border-bottom: 1px solid;
35
+ text-align: center;
36
+ }
37
+ .json-diff-viewer tr.message-line td {
38
+ padding: 4px 0;
39
+ font-size: 12px;
40
+ }
41
+ .json-diff-viewer tr.expand-line {
42
+ text-align: center;
43
+ }
44
+ .json-diff-viewer tr.expand-line td {
45
+ padding: 4px 0;
46
+ }
47
+ .json-diff-viewer tr.expand-line:hover td:before {
48
+ background: transparent;
49
+ }
50
+ .json-diff-viewer tr.expand-line .has-lines-before {
51
+ border-bottom: 1px solid;
52
+ }
53
+ .json-diff-viewer tr.expand-line .has-lines-after {
54
+ border-top: 1px solid;
55
+ }
56
+ .json-diff-viewer tr.expand-line button {
57
+ padding: 0;
58
+ border: none;
59
+ margin: 0 0.5em;
60
+ background: transparent;
61
+ color: #2196f3;
62
+ cursor: pointer;
63
+ font-size: 12px;
64
+ user-select: none;
65
+ }
66
+ .json-diff-viewer tr.expand-line button:hover {
67
+ text-decoration: underline;
68
+ }
69
+ .json-diff-viewer td {
70
+ padding: 1px;
71
+ font-size: 0;
72
+ }
73
+ .json-diff-viewer td.line-number {
74
+ box-sizing: content-box;
75
+ padding: 0 8px;
76
+ border-right: 1px solid;
77
+ font-family: monospace;
78
+ font-size: 14px;
79
+ text-align: right;
80
+ user-select: none;
81
+ }
82
+ .json-diff-viewer pre {
83
+ overflow: hidden;
84
+ margin: 0;
85
+ font-size: 12px;
86
+ line-height: 16px;
87
+ white-space: pre-wrap;
88
+ word-break: break-all;
89
+ }
90
+ .json-diff-viewer pre .inline-diff-add {
91
+ background: rgba(0, 0, 0, 0.08);
92
+ text-decoration: underline;
93
+ word-break: break-all;
94
+ }
95
+ .json-diff-viewer pre .inline-diff-remove {
96
+ background: rgba(0, 0, 0, 0.08);
97
+ text-decoration: line-through;
98
+ word-break: break-all;
99
+ }
100
+ .json-diff-viewer-virtual pre {
101
+ overflow-x: auto;
102
+ white-space: pre;
103
+ }
104
+ .json-diff-viewer-virtual pre::-webkit-scrollbar {
105
+ display: none;
106
+ }
107
+
108
+ .json-diff-viewer.json-diff-viewer-theme-monokai {
109
+ background: #272822;
110
+ color: #f8f8f2;
111
+ }
112
+ .json-diff-viewer.json-diff-viewer-theme-monokai .line-number {
113
+ color: #999;
114
+ }
115
+ .json-diff-viewer.json-diff-viewer-theme-monokai tr:hover {
116
+ background: #3e3d32;
117
+ }
118
+ .json-diff-viewer.json-diff-viewer-theme-monokai tr .line-add {
119
+ background: #040;
120
+ }
121
+ .json-diff-viewer.json-diff-viewer-theme-monokai tr .line-remove {
122
+ background: #400;
123
+ }
124
+ .json-diff-viewer.json-diff-viewer-theme-monokai tr .line-modify {
125
+ background: #440;
126
+ }
127
+ .json-diff-viewer.json-diff-viewer-theme-monokai tr.expand-line button {
128
+ color: #f8f8f2;
129
+ }
130
+ .json-diff-viewer.json-diff-viewer-theme-monokai .string {
131
+ color: #e6db74;
132
+ }
133
+ .json-diff-viewer.json-diff-viewer-theme-monokai .number,
134
+ .json-diff-viewer.json-diff-viewer-theme-monokai .boolean,
135
+ .json-diff-viewer.json-diff-viewer-theme-monokai .null {
136
+ color: #ae81ff;
137
+ }
138
+ .json-diff-viewer.json-diff-viewer-theme-monokai .key {
139
+ color: #f92672;
140
+ }
141
+ .json-diff-viewer.json-diff-viewer-theme-monokai .invalid {
142
+ background: #960050;
143
+ color: #fff;
144
+ }
@@ -35,6 +35,8 @@
35
35
  @import url("./editTable.css");
36
36
  @import url("./menu.css");
37
37
  @import url("@xyflow/react/dist/style.css");
38
+ @import url("./json-diff-viewer.css");
39
+
38
40
 
39
41
  /*----- Custom table ------*/
40
42
  .ant-table-column-sorters {