@jotforminc/dnd-builder 2.3.0 → 2.4.3
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/CHANGELOG.md +35 -0
- package/lib/cjs/assets/svg/page_settings.svg.js +4 -26
- package/lib/cjs/assets/svg/page_settings.svg.js.map +1 -1
- package/lib/cjs/assets/svg/presentation/enter_fullscreen.svg.js +6 -3
- package/lib/cjs/assets/svg/presentation/enter_fullscreen.svg.js.map +1 -1
- package/lib/cjs/assets/svg/presentation/exit_fullscreen.svg.js +7 -4
- package/lib/cjs/assets/svg/presentation/exit_fullscreen.svg.js.map +1 -1
- package/lib/cjs/components/Builder/ZoomControls.js +3 -3
- package/lib/cjs/components/Builder/ZoomControls.js.map +1 -1
- package/lib/cjs/components/Panels/RightPanel/RightPanel.js +1 -1
- package/lib/cjs/components/Panels/RightPanel/RightPanel.js.map +1 -1
- package/lib/cjs/components/Panels/SlidesPanel/SlidesPanel.js +1 -1
- package/lib/cjs/components/Panels/SlidesPanel/SlidesPanel.js.map +1 -1
- package/lib/cjs/components/TextEditor/CustomToolbar/CustomToolbar.js +2 -2
- package/lib/cjs/components/TextEditor/CustomToolbar/CustomToolbar.js.map +1 -1
- package/lib/cjs/components/TextEditor/QuillEditor.js +9 -3
- package/lib/cjs/components/TextEditor/QuillEditor.js.map +1 -1
- package/lib/cjs/components/TextEditor/TextEditor.js +2 -2
- package/lib/cjs/components/TextEditor/TextEditor.js.map +1 -1
- package/lib/cjs/styles/_jfDarkTheme.scss +1 -1
- package/lib/cjs/styles/_jfLightTheme.scss +1 -1
- package/lib/cjs/styles/_jfReportsFloatings.scss +61 -32
- package/lib/cjs/styles/_jfReportsPages.scss +7 -2
- package/lib/cjs/styles/_jfReportsPanelElements.scss +12 -8
- package/lib/cjs/styles/_jfReportsPanels.scss +1 -1
- package/lib/cjs/styles/_jfReportsReportItem.scss +21 -7
- package/lib/cjs/styles/_jfReportsSVG.scss +1 -1
- package/lib/cjs/styles/_jfReportsTextEditor.scss +76 -29
- package/lib/cjs/styles/_jfReportsVariables.scss +2 -2
- package/lib/esm/assets/svg/page_settings.svg.js +4 -26
- package/lib/esm/assets/svg/page_settings.svg.js.map +1 -1
- package/lib/esm/assets/svg/presentation/enter_fullscreen.svg.js +6 -3
- package/lib/esm/assets/svg/presentation/enter_fullscreen.svg.js.map +1 -1
- package/lib/esm/assets/svg/presentation/exit_fullscreen.svg.js +7 -4
- package/lib/esm/assets/svg/presentation/exit_fullscreen.svg.js.map +1 -1
- package/lib/esm/components/Builder/ZoomControls.js +3 -3
- package/lib/esm/components/Builder/ZoomControls.js.map +1 -1
- package/lib/esm/components/Panels/RightPanel/RightPanel.js +1 -1
- package/lib/esm/components/Panels/RightPanel/RightPanel.js.map +1 -1
- package/lib/esm/components/Panels/SlidesPanel/SlidesPanel.js +1 -1
- package/lib/esm/components/Panels/SlidesPanel/SlidesPanel.js.map +1 -1
- package/lib/esm/components/TextEditor/CustomToolbar/CustomToolbar.js +2 -2
- package/lib/esm/components/TextEditor/CustomToolbar/CustomToolbar.js.map +1 -1
- package/lib/esm/components/TextEditor/QuillEditor.js +8 -3
- package/lib/esm/components/TextEditor/QuillEditor.js.map +1 -1
- package/lib/esm/components/TextEditor/TextEditor.js +2 -2
- package/lib/esm/components/TextEditor/TextEditor.js.map +1 -1
- package/lib/esm/styles/_jfDarkTheme.scss +1 -1
- package/lib/esm/styles/_jfLightTheme.scss +1 -1
- package/lib/esm/styles/_jfReportsFloatings.scss +61 -32
- package/lib/esm/styles/_jfReportsPages.scss +7 -2
- package/lib/esm/styles/_jfReportsPanelElements.scss +12 -8
- package/lib/esm/styles/_jfReportsPanels.scss +1 -1
- package/lib/esm/styles/_jfReportsReportItem.scss +21 -7
- package/lib/esm/styles/_jfReportsSVG.scss +1 -1
- package/lib/esm/styles/_jfReportsTextEditor.scss +76 -29
- package/lib/esm/styles/_jfReportsVariables.scss +2 -2
- package/package.json +2 -2
|
@@ -15,7 +15,8 @@
|
|
|
15
15
|
display: flex;
|
|
16
16
|
flex-direction: column;
|
|
17
17
|
background-color: $white;
|
|
18
|
-
box-shadow: 0 0
|
|
18
|
+
box-shadow: 0 0 4px rgba(10, 21, 81, 0.06);
|
|
19
|
+
border-radius: 4px;
|
|
19
20
|
|
|
20
21
|
.controllerItem {
|
|
21
22
|
transition: $transition;
|
|
@@ -24,6 +25,10 @@
|
|
|
24
25
|
background-color: $inputGray;
|
|
25
26
|
}
|
|
26
27
|
|
|
28
|
+
&.isWhite {
|
|
29
|
+
background-color: $white;
|
|
30
|
+
}
|
|
31
|
+
|
|
27
32
|
&.isSingle {
|
|
28
33
|
border-radius: 6px;
|
|
29
34
|
}
|
|
@@ -31,7 +36,6 @@
|
|
|
31
36
|
&:hover .jfReportSVG:not(.icon-trashLine) {
|
|
32
37
|
fill: $blue;
|
|
33
38
|
}
|
|
34
|
-
|
|
35
39
|
&:hover .jfReportSVG.icon-trashLine {
|
|
36
40
|
fill: $danger;
|
|
37
41
|
}
|
|
@@ -39,12 +43,14 @@
|
|
|
39
43
|
|
|
40
44
|
.controllerIndicator {
|
|
41
45
|
font-size: 0.75rem;
|
|
46
|
+
font-weight: 500;
|
|
42
47
|
margin: 15px auto;
|
|
43
48
|
text-align: center;
|
|
49
|
+
color: #0A1551;
|
|
44
50
|
}
|
|
45
51
|
|
|
46
52
|
& + .floatingController-container {
|
|
47
|
-
margin-top:
|
|
53
|
+
margin-top: 8px;
|
|
48
54
|
}
|
|
49
55
|
}
|
|
50
56
|
|
|
@@ -54,18 +60,17 @@
|
|
|
54
60
|
|
|
55
61
|
&.forBar {
|
|
56
62
|
height: 50px;
|
|
57
|
-
background: #
|
|
63
|
+
background: #252D5B;
|
|
58
64
|
border-radius: 6px;
|
|
59
65
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
|
|
60
66
|
max-width: 436px;
|
|
61
|
-
|
|
62
|
-
padding: 13px 15px;
|
|
67
|
+
padding: 12px;
|
|
63
68
|
text-align: center;
|
|
64
69
|
|
|
65
70
|
.divider {
|
|
66
71
|
width: 1px;
|
|
67
|
-
height:
|
|
68
|
-
background: #
|
|
72
|
+
height: 20px;
|
|
73
|
+
background: rgba(#FFFFFF, 0.1);
|
|
69
74
|
}
|
|
70
75
|
|
|
71
76
|
.select-zoom {
|
|
@@ -80,46 +85,58 @@
|
|
|
80
85
|
}
|
|
81
86
|
|
|
82
87
|
.forSlide {
|
|
83
|
-
margin: 0
|
|
88
|
+
margin: 0 12px;
|
|
84
89
|
}
|
|
85
90
|
|
|
86
91
|
.jfReportButton, .controllerItem {
|
|
87
|
-
height:
|
|
88
|
-
width:
|
|
92
|
+
height: 28px;
|
|
93
|
+
width: 28px;
|
|
89
94
|
padding: 0 4px;
|
|
90
95
|
}
|
|
91
96
|
|
|
92
97
|
.jfReportButton {
|
|
93
98
|
&.download {
|
|
99
|
+
background-color: rgba(120, 187, 7, 0.2);
|
|
100
|
+
&:hover { background-color: rgba(120, 187, 7, 0.6); }
|
|
94
101
|
.icon-download {
|
|
95
102
|
width: 8px;
|
|
96
103
|
height: 10px;
|
|
97
104
|
}
|
|
98
105
|
}
|
|
99
106
|
&.print {
|
|
100
|
-
border: 1px solid #
|
|
107
|
+
border: 1px solid #6F76A7;
|
|
108
|
+
background-color: rgba(111, 118, 167, 0.2);
|
|
109
|
+
&:hover { background-color: rgba(111, 118, 167, 0.6); }
|
|
101
110
|
.icon-print {
|
|
102
|
-
width:
|
|
103
|
-
height:
|
|
104
|
-
fill: #
|
|
111
|
+
width: 12px;
|
|
112
|
+
height: 12px;
|
|
113
|
+
fill: #FFF;
|
|
105
114
|
}
|
|
106
115
|
}
|
|
107
|
-
&.
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
116
|
+
&.isSuccess {
|
|
117
|
+
border: 1px solid #78BB07;
|
|
118
|
+
background-color: rgba(120, 187, 7, 0.2);
|
|
119
|
+
&:hover { background-color: rgba(120, 187, 7, 0.6); }
|
|
120
|
+
.icon-download {
|
|
121
|
+
width: 11px;
|
|
122
|
+
height: 14px;
|
|
123
|
+
fill: #fff;
|
|
111
124
|
}
|
|
112
125
|
}
|
|
126
|
+
&.forAction {
|
|
127
|
+
.icon-close { fill: rgba(200, 206, 237, 0.6); }
|
|
128
|
+
&:hover .icon-close { fill: #fff; }
|
|
129
|
+
}
|
|
113
130
|
.icon-fullscreen {
|
|
114
|
-
width:
|
|
115
|
-
height:
|
|
131
|
+
width: 12px;
|
|
132
|
+
height: 12px;
|
|
116
133
|
}
|
|
117
134
|
}
|
|
118
135
|
|
|
119
136
|
.action-container {
|
|
120
|
-
margin-left:
|
|
137
|
+
margin-left: 12px;
|
|
121
138
|
.jfReportButton + .jfReportButton:not(.close) {
|
|
122
|
-
margin-left:
|
|
139
|
+
margin-left: 8px;
|
|
123
140
|
}
|
|
124
141
|
.close {
|
|
125
142
|
margin-left: 15px;
|
|
@@ -135,13 +152,13 @@
|
|
|
135
152
|
}
|
|
136
153
|
|
|
137
154
|
.controllerItem {
|
|
138
|
-
background: #
|
|
155
|
+
background: #343C6A;
|
|
139
156
|
border-radius: 3px;
|
|
140
157
|
border: none;
|
|
141
158
|
transition: $transition;
|
|
142
159
|
|
|
143
160
|
&:hover {
|
|
144
|
-
background:
|
|
161
|
+
background: rgba(111, 118, 167, 0.6);
|
|
145
162
|
}
|
|
146
163
|
}
|
|
147
164
|
|
|
@@ -171,7 +188,7 @@
|
|
|
171
188
|
letter-spacing: .7px;
|
|
172
189
|
font-size: 0.875rem;
|
|
173
190
|
line-height: 28px;
|
|
174
|
-
min-width:
|
|
191
|
+
min-width: 57px;
|
|
175
192
|
padding: 0 5px;
|
|
176
193
|
|
|
177
194
|
span {
|
|
@@ -187,6 +204,7 @@
|
|
|
187
204
|
|
|
188
205
|
.floatingController-container {
|
|
189
206
|
border-radius: 6px;
|
|
207
|
+
background-color: $inputGray;
|
|
190
208
|
|
|
191
209
|
& > .controllerItem:not(.isSingle) {
|
|
192
210
|
padding: 8px 6px;
|
|
@@ -219,9 +237,10 @@
|
|
|
219
237
|
|
|
220
238
|
&.forSlides, &.forPageAction {
|
|
221
239
|
.floatingController-container:not(.hasGroup) {
|
|
240
|
+
padding: 4px;
|
|
222
241
|
.controllerItem {
|
|
223
|
-
padding:
|
|
224
|
-
border-radius:
|
|
242
|
+
padding: 0;
|
|
243
|
+
border-radius: 3px;
|
|
225
244
|
}
|
|
226
245
|
}
|
|
227
246
|
}
|
|
@@ -233,12 +252,22 @@
|
|
|
233
252
|
|
|
234
253
|
.floatingController-container {
|
|
235
254
|
border-radius: 3px;
|
|
236
|
-
}
|
|
237
255
|
|
|
238
|
-
.floatingController-container.hasGroup {
|
|
239
|
-
padding: 6px 0;
|
|
240
256
|
.controllerItem {
|
|
241
|
-
|
|
257
|
+
width: 20px;
|
|
258
|
+
height: 20px;
|
|
259
|
+
&:hover { background-color: #F3F3FE; }
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
&.hasGroup {
|
|
263
|
+
padding: 4px;
|
|
264
|
+
.controllerItem {
|
|
265
|
+
border-radius: 3px;
|
|
266
|
+
padding: 0;
|
|
267
|
+
margin-top: 4px;
|
|
268
|
+
&:first-child { margin-top: 0; }
|
|
269
|
+
}
|
|
270
|
+
.isDanger:hover { background-color: rgba(235, 63, 63, 0.1); }
|
|
242
271
|
}
|
|
243
272
|
}
|
|
244
273
|
}
|
|
@@ -35,9 +35,11 @@
|
|
|
35
35
|
width: 40px;
|
|
36
36
|
padding: 3px;
|
|
37
37
|
font-size: 0.875rem;
|
|
38
|
+
font-weight: 500;
|
|
38
39
|
background-color: $white;
|
|
39
40
|
border-radius: 3px;
|
|
40
|
-
box-shadow: 0 0
|
|
41
|
+
box-shadow: 0 0 4px rgba(10, 21, 81, 0.06);
|
|
42
|
+
color: #0A1551;
|
|
41
43
|
}
|
|
42
44
|
}
|
|
43
45
|
}
|
|
@@ -156,7 +158,7 @@
|
|
|
156
158
|
color: #fff;
|
|
157
159
|
display: block;
|
|
158
160
|
position: absolute;
|
|
159
|
-
width:
|
|
161
|
+
width: 165px;
|
|
160
162
|
z-index: 10;
|
|
161
163
|
box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
|
|
162
164
|
}
|
|
@@ -171,6 +173,7 @@
|
|
|
171
173
|
height: 45px;
|
|
172
174
|
width: 100%;
|
|
173
175
|
font-size: 0.875rem;
|
|
176
|
+
padding-left: 14px;
|
|
174
177
|
|
|
175
178
|
.contextMenu-icon {
|
|
176
179
|
margin-right: 9px;
|
|
@@ -182,6 +185,8 @@
|
|
|
182
185
|
height: 14px;
|
|
183
186
|
fill: $blue;
|
|
184
187
|
stroke: $blue;
|
|
188
|
+
|
|
189
|
+
> path { fill: $blue; }
|
|
185
190
|
}
|
|
186
191
|
}
|
|
187
192
|
|
|
@@ -717,7 +717,7 @@
|
|
|
717
717
|
}
|
|
718
718
|
|
|
719
719
|
.floatingController.forBar .toolSection-dropdownWrapper {
|
|
720
|
-
margin-right:
|
|
720
|
+
margin-right: 12px;
|
|
721
721
|
|
|
722
722
|
&:after {
|
|
723
723
|
display: none;
|
|
@@ -725,18 +725,22 @@
|
|
|
725
725
|
|
|
726
726
|
&:before {
|
|
727
727
|
right: 7px;
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
728
|
+
top: calc(50% - 2px);
|
|
729
|
+
background-repeat: no-repeat;
|
|
730
|
+
background-image: url("data:image/svg+xml,%3Csvg width=%276%27 height=%274%27 viewBox=%270 0 6 4%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M5.00506 0.413817C5.23825 0.191095 5.60551 0.195263 5.83143 0.427641C6.0582 0.660893 6.05369 1.03103 5.8167 1.2733L3.40473 3.58782C3.17841 3.80363 2.82568 3.80438 2.5933 3.58747C2.29148 3.29771 2.29148 3.29771 1.38603 2.42839C0.482784 1.56125 0.482784 1.56125 0.16829 1.25885C-0.0560968 1.02805 -0.0560968 0.65844 0.16829 0.427641C0.393201 0.196305 0.757388 0.191435 0.995763 0.413283L2.99983 2.33753L5.00506 0.413817Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");
|
|
731
|
+
background-size: contain;
|
|
732
|
+
width: 8px;
|
|
733
|
+
height: 5px;
|
|
734
|
+
border: 0;
|
|
732
735
|
}
|
|
733
736
|
|
|
734
737
|
.toolSection-dropdown {
|
|
735
|
-
width:
|
|
736
|
-
height:
|
|
738
|
+
width: 58px;
|
|
739
|
+
height: 28px;
|
|
737
740
|
font-size: 0.675rem;
|
|
738
|
-
padding-left:
|
|
741
|
+
padding-left: 6px;
|
|
739
742
|
color: $white;
|
|
743
|
+
appearance: none;
|
|
740
744
|
}
|
|
741
745
|
}
|
|
742
746
|
|
|
@@ -221,7 +221,7 @@
|
|
|
221
221
|
top: 0;
|
|
222
222
|
right: -24px;
|
|
223
223
|
background-color: $blue;
|
|
224
|
-
border-radius:
|
|
224
|
+
border-radius: 4px;
|
|
225
225
|
text-align: center;
|
|
226
226
|
pointer-events: all;
|
|
227
227
|
animation: .2s fadeRight forwards;
|
|
@@ -238,20 +238,34 @@
|
|
|
238
238
|
transition: .3s ease-in-out;
|
|
239
239
|
transform: translateZ(0);
|
|
240
240
|
}
|
|
241
|
-
|
|
242
|
-
&:hover svg {
|
|
243
|
-
opacity: .7;
|
|
244
|
-
}
|
|
245
241
|
}
|
|
246
242
|
|
|
247
243
|
&:not(.forLocked) {
|
|
244
|
+
padding: 0 4px;
|
|
248
245
|
.reportItemMenu-item {
|
|
246
|
+
display: inline-flex;
|
|
247
|
+
align-items: center;
|
|
248
|
+
justify-content: center;
|
|
249
|
+
width: 20px;
|
|
250
|
+
height: 20px;
|
|
251
|
+
padding: 0;
|
|
252
|
+
border-radius: 3px;
|
|
253
|
+
transition: 0.3s ease-in;
|
|
254
|
+
|
|
255
|
+
+ .reportItemMenu-item {
|
|
256
|
+
margin-top: 4px;
|
|
257
|
+
}
|
|
258
|
+
|
|
249
259
|
&:first-child {
|
|
250
|
-
margin-top:
|
|
260
|
+
margin-top: 4px;
|
|
251
261
|
}
|
|
252
262
|
|
|
253
263
|
&:last-child {
|
|
254
|
-
margin-bottom:
|
|
264
|
+
margin-bottom: 4px;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
&:hover {
|
|
268
|
+
background-color: rgba(255, 255, 255, 0.2);
|
|
255
269
|
}
|
|
256
270
|
}
|
|
257
271
|
}
|
|
@@ -51,11 +51,6 @@
|
|
|
51
51
|
}
|
|
52
52
|
}
|
|
53
53
|
|
|
54
|
-
.ql-toolbar.ql-snow {
|
|
55
|
-
padding: 0;
|
|
56
|
-
border: none;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
54
|
.ql-toolbar {
|
|
60
55
|
font-family: inherit;
|
|
61
56
|
font-size: .75rem;
|
|
@@ -69,6 +64,8 @@
|
|
|
69
64
|
border-radius: 3px;
|
|
70
65
|
max-width: 100%;
|
|
71
66
|
padding: 4px;
|
|
67
|
+
right: 0;
|
|
68
|
+
box-shadow: 0 2px 4px 0 rgba(#0A1551, 0.04);
|
|
72
69
|
|
|
73
70
|
&.isOpened {
|
|
74
71
|
width: auto;
|
|
@@ -76,11 +73,11 @@
|
|
|
76
73
|
}
|
|
77
74
|
|
|
78
75
|
.ql-button {
|
|
79
|
-
width:
|
|
76
|
+
width: 20px;
|
|
80
77
|
flex-shrink: 0;
|
|
81
78
|
|
|
82
79
|
svg {
|
|
83
|
-
width:
|
|
80
|
+
width: 16px;
|
|
84
81
|
}
|
|
85
82
|
|
|
86
83
|
&.hiddenVisibility {
|
|
@@ -88,21 +85,21 @@
|
|
|
88
85
|
}
|
|
89
86
|
|
|
90
87
|
.ql-stroke {
|
|
91
|
-
stroke: #
|
|
88
|
+
stroke: #6F76A7;
|
|
92
89
|
}
|
|
93
90
|
|
|
94
91
|
.ql-fill {
|
|
95
|
-
fill: #
|
|
92
|
+
fill: #6F76A7;
|
|
96
93
|
stroke-width: 0;
|
|
97
94
|
}
|
|
98
95
|
|
|
99
96
|
&.ql-active {
|
|
100
97
|
.ql-stroke {
|
|
101
|
-
stroke: #
|
|
98
|
+
stroke: #6F76A7;
|
|
102
99
|
}
|
|
103
100
|
|
|
104
101
|
.ql-fill {
|
|
105
|
-
fill: #
|
|
102
|
+
fill: #6F76A7;
|
|
106
103
|
}
|
|
107
104
|
}
|
|
108
105
|
}
|
|
@@ -111,11 +108,11 @@
|
|
|
111
108
|
display: inline-flex;
|
|
112
109
|
justify-content: center;
|
|
113
110
|
align-items: center;
|
|
114
|
-
height:
|
|
111
|
+
height: 20px;
|
|
115
112
|
padding: 0;
|
|
116
|
-
border-radius:
|
|
113
|
+
border-radius: 3px;
|
|
117
114
|
border: none;
|
|
118
|
-
|
|
115
|
+
color: #6F76A7;
|
|
119
116
|
|
|
120
117
|
&:hover {
|
|
121
118
|
stroke: $blue;
|
|
@@ -124,13 +121,12 @@
|
|
|
124
121
|
&.ql-active {
|
|
125
122
|
color: #8D8FA8;
|
|
126
123
|
background-color: rgba($inputGrayBorder, .3);
|
|
127
|
-
border-radius:
|
|
124
|
+
border-radius: 3px;
|
|
128
125
|
}
|
|
129
126
|
}
|
|
130
127
|
|
|
131
|
-
|
|
132
128
|
.qlMore {
|
|
133
|
-
height:
|
|
129
|
+
height: 20px;
|
|
134
130
|
color: #8D8FA8;
|
|
135
131
|
position: absolute;
|
|
136
132
|
right: 0;
|
|
@@ -143,7 +139,7 @@
|
|
|
143
139
|
}
|
|
144
140
|
|
|
145
141
|
.ql-picker.ql-size {
|
|
146
|
-
width:
|
|
142
|
+
width: 52px;
|
|
147
143
|
|
|
148
144
|
.ql-picker-label {
|
|
149
145
|
justify-content: flex-start;
|
|
@@ -154,7 +150,7 @@
|
|
|
154
150
|
|
|
155
151
|
.ql-select {
|
|
156
152
|
width: auto;
|
|
157
|
-
height:
|
|
153
|
+
height: 20px;
|
|
158
154
|
flex-shrink: 0;
|
|
159
155
|
font-size: .75rem;
|
|
160
156
|
|
|
@@ -170,7 +166,8 @@
|
|
|
170
166
|
}
|
|
171
167
|
|
|
172
168
|
.ql-select:not(.ql-size) .ql-picker-label {
|
|
173
|
-
width:
|
|
169
|
+
width: 20px;
|
|
170
|
+
margin-left: 0;
|
|
174
171
|
}
|
|
175
172
|
|
|
176
173
|
.ql-divider {
|
|
@@ -189,7 +186,7 @@
|
|
|
189
186
|
}
|
|
190
187
|
|
|
191
188
|
.ql-color svg, .ql-align .ql-picker-label svg {
|
|
192
|
-
width:
|
|
189
|
+
width: 16px;
|
|
193
190
|
}
|
|
194
191
|
|
|
195
192
|
.ql-align .ql-picker-options {
|
|
@@ -208,23 +205,27 @@
|
|
|
208
205
|
/* stylelint-disable-next-line declaration-no-important */
|
|
209
206
|
left: auto !important;
|
|
210
207
|
align-items: center;
|
|
211
|
-
height:
|
|
212
|
-
transform: translate(100%,
|
|
208
|
+
height: 30px;
|
|
209
|
+
transform: translate(100%, 170%);
|
|
213
210
|
background-color: $inputGray;
|
|
214
211
|
border: 1px solid $inputGrayBorder;
|
|
215
212
|
border-radius: 3px;
|
|
216
213
|
box-shadow: none;
|
|
217
214
|
font-size: .75rem;
|
|
218
215
|
font-weight: 500;
|
|
219
|
-
margin-left: -
|
|
220
|
-
padding: 4px;
|
|
216
|
+
margin-left: -207px;
|
|
217
|
+
padding: 4px 4px 4px 8px;
|
|
221
218
|
color: #8483A9;
|
|
222
219
|
|
|
223
220
|
input[type="text"] {
|
|
224
221
|
border-radius: 3px;
|
|
225
|
-
height:
|
|
222
|
+
height: 20px;
|
|
226
223
|
font-size: .75rem;
|
|
227
224
|
padding: 0 5px;
|
|
225
|
+
background-color: #F3F3FE;
|
|
226
|
+
color: rgba(#6F76A7, 0.6);
|
|
227
|
+
border: 0;
|
|
228
|
+
width: 217px;
|
|
228
229
|
}
|
|
229
230
|
|
|
230
231
|
&:not(.ql-hidden) {
|
|
@@ -233,11 +234,12 @@
|
|
|
233
234
|
|
|
234
235
|
a.ql-action {
|
|
235
236
|
margin-left: 4px;
|
|
236
|
-
padding:
|
|
237
|
+
padding: 2px 8px;
|
|
238
|
+
height: 20px;
|
|
237
239
|
color: $white;
|
|
238
240
|
background-color: $blue;
|
|
239
|
-
line-height:
|
|
240
|
-
border-radius:
|
|
241
|
+
line-height: 16px;
|
|
242
|
+
border-radius: 3px;
|
|
241
243
|
|
|
242
244
|
&:after {
|
|
243
245
|
margin: 0;
|
|
@@ -245,9 +247,54 @@
|
|
|
245
247
|
border: none;
|
|
246
248
|
}
|
|
247
249
|
}
|
|
250
|
+
|
|
251
|
+
&.ql-editing {
|
|
252
|
+
background-color: $white;
|
|
253
|
+
box-shadow: 0 0 4px rgba(10, 21, 81, 0.06);
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
&[data-mode="link"]:before {
|
|
257
|
+
content: "Link";
|
|
258
|
+
color: #6F76A7;
|
|
259
|
+
}
|
|
248
260
|
}
|
|
249
261
|
|
|
250
262
|
.ql-editing {
|
|
251
263
|
z-index: 100000;
|
|
252
264
|
}
|
|
265
|
+
|
|
266
|
+
.ql-toolbar.ql-snow {
|
|
267
|
+
padding: 0;
|
|
268
|
+
border: none;
|
|
269
|
+
|
|
270
|
+
.ql-picker {
|
|
271
|
+
border-radius: 3px;
|
|
272
|
+
&:hover {
|
|
273
|
+
background-color: #F3F3FE;
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.ql-button,
|
|
278
|
+
.ql-icon-picker,
|
|
279
|
+
.ql-color-picker,
|
|
280
|
+
.ql-color + .ql-divider {
|
|
281
|
+
margin-left: 8px;
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.reportItemMenu + .ql-toolbar.ql-snow {
|
|
286
|
+
.ql-stroke {
|
|
287
|
+
/* stylelint-disable-next-line declaration-no-important */
|
|
288
|
+
stroke: #6F76A7 !important;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.ql-fill {
|
|
292
|
+
/* stylelint-disable-next-line declaration-no-important */
|
|
293
|
+
fill: #6F76A7 !important;
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.reportItemMenu + .ql-toolbar.ql-snow .ql-button:hover {
|
|
299
|
+
background-color: #F3F3FE;
|
|
253
300
|
}
|
|
@@ -10,9 +10,9 @@ $blue: #4277FF;
|
|
|
10
10
|
$white: #FFFFFF;
|
|
11
11
|
$danger: #d13723;
|
|
12
12
|
$lightGray: #cccdd9;
|
|
13
|
-
$gray: #
|
|
13
|
+
$gray: #6F76A7;
|
|
14
14
|
$inputGray: #fbfbfe;
|
|
15
|
-
$inputGrayBorder: #
|
|
15
|
+
$inputGrayBorder: #E3E5F5;
|
|
16
16
|
$inputDarkGrayBorder:#303339;
|
|
17
17
|
$ctaGreen: #04bd6f;
|
|
18
18
|
$ctaBlue: #0099FF;
|
|
@@ -1,38 +1,16 @@
|
|
|
1
1
|
import { createElement } from 'react';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _path;
|
|
4
4
|
|
|
5
5
|
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
6
6
|
|
|
7
7
|
function SvgPageSettings(props) {
|
|
8
8
|
return /*#__PURE__*/createElement("svg", _extends({
|
|
9
|
-
viewBox: "0 0
|
|
9
|
+
viewBox: "0 0 12 13",
|
|
10
10
|
fill: "none",
|
|
11
11
|
xmlns: "http://www.w3.org/2000/svg"
|
|
12
|
-
}, props),
|
|
13
|
-
|
|
14
|
-
maskUnits: "userSpaceOnUse",
|
|
15
|
-
x: 0,
|
|
16
|
-
y: 1.371,
|
|
17
|
-
width: 11,
|
|
18
|
-
height: 12,
|
|
19
|
-
fill: "#000"
|
|
20
|
-
}, /*#__PURE__*/createElement("path", {
|
|
21
|
-
fill: "#fff",
|
|
22
|
-
d: "M0 1.371h11v12H0z"
|
|
23
|
-
}), /*#__PURE__*/createElement("path", {
|
|
24
|
-
fillRule: "evenodd",
|
|
25
|
-
clipRule: "evenodd",
|
|
26
|
-
d: "M8.262 6.214a.869.869 0 00-.23.408c-.067.265-.24.378-.436.378h-.192c-.197 0-.37-.113-.436-.378a.875.875 0 00-1.299-.539c-.234.14-.436.099-.576-.04l-.135-.136c-.14-.14-.182-.342-.041-.576a.875.875 0 00-.539-1.299C4.113 3.965 4 3.792 4 3.596v-.192c0-.197.114-.37.378-.436a.87.87 0 00.626-.597H6.83A1.312 1.312 0 108.262 4.57v1.645zm0 1.625c-.218.114-.45.161-.666.161h-.192a1.417 1.417 0 01-1.246-.729.333.333 0 00-.376-.156 1.417 1.417 0 01-1.396-.366l-.134-.134a1.418 1.418 0 01-.367-1.398.333.333 0 00-.156-.375A1.416 1.416 0 013 3.596v-.192a1.417 1.417 0 01.439-1.033H1.734A.734.734 0 001 3.106v8.16c0 .405.329.734.734.734h5.794a.734.734 0 00.734-.734V7.839z"
|
|
27
|
-
}))), _path || (_path = /*#__PURE__*/createElement("path", {
|
|
28
|
-
clipRule: "evenodd",
|
|
29
|
-
d: "M8.262 6.214a.869.869 0 00-.23.408c-.067.265-.24.378-.436.378h-.192c-.197 0-.37-.113-.436-.378a.875.875 0 00-1.299-.539c-.234.14-.436.099-.576-.04l-.135-.136c-.14-.14-.182-.342-.041-.576a.875.875 0 00-.539-1.299C4.113 3.965 4 3.792 4 3.596v-.192c0-.197.114-.37.378-.436a.87.87 0 00.626-.597H6.83A1.312 1.312 0 108.262 4.57v1.645zm0 1.625c-.218.114-.45.161-.666.161h-.192a1.417 1.417 0 01-1.246-.729.333.333 0 00-.376-.156 1.417 1.417 0 01-1.396-.366l-.134-.134a1.418 1.418 0 01-.367-1.398.333.333 0 00-.156-.375A1.416 1.416 0 013 3.596v-.192a1.417 1.417 0 01.439-1.033H1.734A.734.734 0 001 3.106v8.16c0 .405.329.734.734.734h5.794a.734.734 0 00.734-.734V7.839z"
|
|
30
|
-
})), _path2 || (_path2 = /*#__PURE__*/createElement("path", {
|
|
31
|
-
d: "M8.032 6.622l.97.242-.97-.242zm.23-.408l.706.71.294-.294v-.416h-1zm-1.294.408l.97-.242-.97.242zm-1.299-.539l-.514-.857h-.001l.515.857zm-.576-.04l-.707.706.707-.707zm-.135-.136l.707-.707-.001-.002-.706.709zm-.041-.576l.857.515-.857-.515zm-.539-1.299l-.242.97.242-.97zm0-1.064l-.242-.97.242.97zm.626-.597v-1h-.742l-.215.711.957.29zm1.826 0l.511.86 3.126-1.86H6.83v1zM8.262 4.57h1V2.625l-1.581 1.13.581.814zm0 3.27h1V6.186l-1.464.767.464.886zm-1.753-.15l-.627.778.627-.778zm-.351-.418l.872-.49-.872.49zm-.376-.156l-.27-.962.27.962zm-.542.047l.106-.994-.106.994zm-.854-.413l-.707.708.707-.708zm-.134-.134l.707-.707-.001-.001-.706.708zm-.414-.854l.994-.106-.994.106zm.047-.544l.962.27-.962-.27zm-.156-.375l-.49.872.49-.872zm-.418-.351l.779-.628-.779.628zm.001-1.983l-.778-.628.778.628zm.127-.137l.688.726 1.82-1.726H3.438v1zm5.563 4.493a.137.137 0 01-.035.059l-1.41-1.418c-.234.233-.41.53-.495.874l1.94.485zM7.596 8c.294 0 .617-.087.895-.311.277-.224.436-.524.511-.825l-1.94-.485a.494.494 0 01.173-.247.584.584 0 01.36-.132v2zm-.192 0h.192V6h-.192v2zM5.998 6.863c.075.302.234.602.511.826.278.224.601.311.895.311V6c.097 0 .235.03.36.132.126.1.165.212.174.248l-1.94.483zm.185.078a.125.125 0 01-.185-.077l1.94-.484a1.875 1.875 0 00-2.783-1.154L6.183 6.94zm-1.797-.192c.209.209.499.375.854.413.353.038.678-.062.944-.221l-1.03-1.715c.032-.02.14-.07.298-.052.16.017.28.092.348.161L4.386 6.75zm-.135-.135l.135.135L5.8 5.335 5.665 5.2 4.25 6.614zm-.192-1.798c-.16.266-.26.591-.221.945.038.356.205.646.414.854l1.412-1.417a.585.585 0 01.162.35.495.495 0 01-.052.298l-1.715-1.03zm.077.186a.125.125 0 01-.077-.186l1.715 1.03A1.875 1.875 0 004.62 3.062l-.485 1.94zM3 3.596c0 .294.087.617.311.895.224.277.524.436.825.511l.485-1.94a.494.494 0 01.247.173.584.584 0 01.132.36H3zm0-.192v.192h2v-.192H3zm1.136-1.406c-.3.075-.6.234-.824.51-.224.278-.312.6-.312.896h2a.584.584 0 01-.132.361.494.494 0 01-.247.173l-.485-1.94zm-.09.084a.12.12 0 01.032-.05.133.133 0 01.058-.034l.484 1.94A1.87 1.87 0 005.962 2.66l-1.915-.578zm.958 1.29H6.83v-2H5.004v2zm1.315-1.86A2.312 2.312 0 005.188 3.5h2c0-.113.059-.213.153-.27L6.32 1.513zM5.188 3.5A2.312 2.312 0 007.5 5.813v-2a.312.312 0 01-.313-.313h-2zM7.5 5.813c.5 0 .965-.16 1.344-.43L7.68 3.754a.307.307 0 01-.181.058v2zm-.238-1.244v1.645h2V4.57h-2zM7.8 6.953A.437.437 0 017.595 7v2c.36 0 .753-.078 1.13-.276l-.928-1.771zM7.595 7h-.192v2h.192V7zm-.192 0a.417.417 0 01-.267-.09L5.882 8.467c.48.388 1.034.533 1.522.533V7zm-.267-.09a.436.436 0 01-.107-.128l-1.744.979c.143.255.339.5.596.706L7.137 6.91zm-.107-.128a1.333 1.333 0 00-1.518-.63l.54 1.926a.667.667 0 01-.766-.317l1.744-.98zm-1.518-.63a.436.436 0 01-.166.016l-.212 1.989c.327.035.637 0 .918-.079l-.54-1.925zm-.166.016a.418.418 0 01-.253-.126L3.68 7.457c.347.346.841.634 1.455.7l.212-1.99zm-.253-.126l-.134-.134-1.414 1.414.134.135 1.414-1.415zm-.135-.135a.418.418 0 01-.126-.252l-1.989.213c.066.615.357 1.11.702 1.455l1.413-1.416zm-.126-.252a.436.436 0 01.015-.167l-1.925-.541c-.08.282-.114.593-.079.921l1.989-.213zm.015-.167a1.333 1.333 0 00-.629-1.518L3.24 5.714a.667.667 0 01-.318-.767l1.925.54zM4.218 3.97a.437.437 0 01-.128-.107L2.533 5.119c.207.256.451.452.707.595l.978-1.744zm-.128-.107A.417.417 0 014 3.596H2c0 .488.145 1.042.533 1.523L4.09 3.863zM4 3.596v-.192H2v.192h2zm0-.192c0-.1.029-.192.09-.267L2.534 1.88A2.417 2.417 0 002 3.404h2zm.09-.267a.413.413 0 01.037-.04L2.751 1.646c-.076.072-.148.15-.217.234L4.09 3.137zm-2.356.234H3.44v-2H1.734v2zM2 3.106a.266.266 0 01-.266.265v-2C.777 1.371 0 2.148 0 3.106h2zm0 8.16v-8.16H0v8.16h2zM1.734 11c.147 0 .266.119.266.266H0C0 12.223.777 13 1.734 13v-2zm5.794 0H1.734v2h5.794v-2zm-.266.266c0-.147.12-.266.266-.266v2c.958 0 1.734-.777 1.734-1.734h-2zm0-3.427v3.427h2V7.839h-2z",
|
|
32
|
-
fill: "#fff",
|
|
33
|
-
mask: "url(#page_settings_svg__a)"
|
|
34
|
-
})), _path3 || (_path3 = /*#__PURE__*/createElement("path", {
|
|
35
|
-
d: "M10.622 2.968a.875.875 0 01-.539-1.299c.141-.234.099-.437-.04-.576L9.906.958c-.14-.14-.342-.182-.576-.041A.875.875 0 018.032.378C7.966.113 7.792 0 7.596 0h-.192c-.197 0-.37.113-.436.378a.875.875 0 01-1.299.539c-.234-.141-.437-.099-.576.04l-.136.136c-.139.139-.181.342-.04.576a.875.875 0 01-.539 1.299c-.264.066-.378.239-.378.436v.192c0 .197.113.37.378.436.57.143.84.795.539 1.299-.141.234-.099.437.04.576l.136.135c.14.14.342.182.576.041a.875.875 0 011.299.539c.066.265.24.378.436.378h.192c.197 0 .37-.113.436-.378a.875.875 0 011.299-.539c.234.14.436.099.576-.04l.135-.136c.14-.14.182-.342.041-.576a.875.875 0 01.539-1.299c.265-.066.378-.24.378-.436v-.192c0-.197-.114-.37-.378-.436zM7.5 4.813a1.312 1.312 0 110-2.625 1.312 1.312 0 010 2.624z"
|
|
12
|
+
}, props), _path || (_path = /*#__PURE__*/createElement("path", {
|
|
13
|
+
d: "M11.351 5.096a1.5 1.5 0 01-.922-2.227c.241-.402.168-.749-.07-.987l-.233-.233c-.239-.238-.585-.31-.987-.07A1.5 1.5 0 016.912.656c-.113-.455-.41-.648-.748-.648h-.328c-.338 0-.634.193-.748.648a1.5 1.5 0 01-2.227.923c-.402-.242-.749-.169-.988.07l-.232.232c-.238.239-.311.586-.07.988A1.5 1.5 0 01.65 5.096c-.454.113-.649.41-.649.747v.329c0 .337.194.634.649.748a1.5 1.5 0 01.922 2.226c-.241.402-.168.749.07.987l.233.233c.24.24.587.311.987.07a1.5 1.5 0 012.227.923c.113.455.41.649.748.649h.328c.338 0 .634-.194.748-.65a1.5 1.5 0 012.227-.922c.401.241.748.17.987-.07l.232-.233c.239-.238.311-.585.07-.987a1.5 1.5 0 01.923-2.226c.455-.114.649-.41.649-.748v-.329c0-.338-.195-.634-.649-.747zM6 8.258a2.25 2.25 0 110-4.5 2.25 2.25 0 010 4.5z"
|
|
36
14
|
})));
|
|
37
15
|
}
|
|
38
16
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"page_settings.svg.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"page_settings.svg.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { createElement } from 'react';
|
|
2
2
|
|
|
3
|
-
var _path, _path2;
|
|
3
|
+
var _path, _path2, _path3;
|
|
4
4
|
|
|
5
5
|
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
6
6
|
|
|
@@ -10,10 +10,13 @@ function SvgEnterFullscreen(props) {
|
|
|
10
10
|
fill: "none",
|
|
11
11
|
xmlns: "http://www.w3.org/2000/svg"
|
|
12
12
|
}, props), _path || (_path = /*#__PURE__*/createElement("path", {
|
|
13
|
-
d: "
|
|
13
|
+
d: "M1.627 7.534a.621.621 0 00-.629.629l.027 3.16v.01c.003.35.29.637.64.64l3.17.027a.621.621 0 00.629-.629.647.647 0 00-.64-.64l-2.536-.02-.022-2.537a.647.647 0 00-.64-.64z",
|
|
14
14
|
fill: "#fff"
|
|
15
15
|
})), _path2 || (_path2 = /*#__PURE__*/createElement("path", {
|
|
16
|
-
d: "M1.
|
|
16
|
+
d: "M1.953 10.06a.696.696 0 00.984.985L6.22 7.764a.696.696 0 00-.985-.985l-3.281 3.282zM12.37 4.466a.621.621 0 00.628-.629l-.027-3.16v-.01a.647.647 0 00-.64-.64L9.162 0a.621.621 0 00-.629.629c.003.35.29.636.64.64l2.536.02.022 2.537c.003.35.289.637.64.64z",
|
|
17
|
+
fill: "#fff"
|
|
18
|
+
})), _path3 || (_path3 = /*#__PURE__*/createElement("path", {
|
|
19
|
+
d: "M12.043 1.94a.696.696 0 00-.984-.985L7.777 4.236a.696.696 0 00.985.985l3.281-3.282z",
|
|
17
20
|
fill: "#fff"
|
|
18
21
|
})));
|
|
19
22
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"enter_fullscreen.svg.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"enter_fullscreen.svg.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;"}
|