d2coreui 23.0.21 → 23.0.23
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/components/codemirror/SyntaxHighlighter.js.map +1 -1
- package/components/color/colorSwatch.js.map +1 -1
- package/components/grid/cell/cellEditorUtils.js.map +1 -1
- package/components/grid/columnUtils.js.map +1 -1
- package/components/grid/dataGrid.d.ts +1 -0
- package/components/grid/dataGrid.js +3 -2
- package/components/grid/dataGrid.js.map +1 -1
- package/components/grid/export/progressPopup.js.map +1 -1
- package/components/grid/export/worker/clipboardExport.js.map +1 -1
- package/components/grid/export/worker/csvExport.js.map +1 -1
- package/components/grid/export/worker/txtExport.js.map +1 -1
- package/components/grid/extendedDataGrid.js +2 -1
- package/components/grid/extendedDataGrid.js.map +1 -1
- package/components/icons/ant-design-double-right-outline.svg +5 -5
- package/components/icons/ant-design_close-outline.svg +5 -5
- package/components/icons/undoIcon.js.map +1 -1
- package/components/input/draftUtils.js.map +1 -1
- package/components/input/draftail.js.map +1 -1
- package/components/input/mask/inputMaskCore.js.map +1 -1
- package/components/input/mask/pattern.js.map +1 -1
- package/components/input/passwordInput.js.map +1 -1
- package/components/input/textarea/extractSpansOfClasses.js.map +1 -1
- package/components/input/textarea/getRanges.js.map +1 -1
- package/components/input/textarea/getType.js.map +1 -1
- package/components/input/textarea/highlighedContents.js.map +1 -1
- package/components/input/textarea/mentionsWithHighlighting.js.map +1 -1
- package/components/keyboard/keyboardUtils.js.map +1 -1
- package/components/platformSpecific.js.map +1 -1
- package/components/text/impl/innerSize.js.map +1 -1
- package/components/text/impl/series.js.map +1 -1
- package/components/text/impl/shallowEqual.js.map +1 -1
- package/components/text/impl/uniqueId.js.map +1 -1
- package/components/text/impl/whilst.js.map +1 -1
- package/i18n/componentsLocaleHolder.js.map +1 -1
- package/package.json +1 -1
- package/style/ag-grid/_ag-theme-antd-vars.scss +194 -194
- package/style/ag-grid/ag-theme-antd.scss +87 -87
- package/style/ag-grid/aggrid-adaptations.css +42 -42
- package/style/ag-grid/aggrid.scss +11 -11
- package/style/flexLayout/flexLayout.scss +130 -130
- package/style/flexLayout/flexLayoutBase.scss +623 -623
- package/style/flexLayout/new/_base.scss +616 -616
- package/style/flexLayout/new/flexLayoutBase.scss +621 -621
- package/style/flexLayout/new/light.scss +107 -107
- package/style/flexLayout/old/_base.scss +551 -551
- package/style/flexLayout/old/light.scss +16 -16
- package/style/form/niceFormItem.css +38 -38
- package/style/index.less +7 -0
- package/style/loading.css +31 -31
- package/style/splitPane/splitPane.css +48 -48
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
$color_text: black !default;
|
|
2
|
-
$color_background: white !default;
|
|
3
|
-
$color_base: white !default;
|
|
4
|
-
$color_1: scale_color($color_base, $lightness:-3%) !default;
|
|
5
|
-
$color_2: scale_color($color_base, $lightness:-10%) !default;
|
|
6
|
-
$color_3: scale_color($color_base, $lightness:-15%) !default;
|
|
7
|
-
$color_4: scale_color($color_base, $lightness:-20%) !default;
|
|
8
|
-
$color_5: scale_color($color_base, $lightness:-25%) !default;
|
|
9
|
-
$color_6: scale_color($color_base, $lightness:-30%) !default;
|
|
10
|
-
$color_drag1: red !default;
|
|
11
|
-
$color_drag2: green !default;
|
|
12
|
-
|
|
13
|
-
$font-size: medium !default;
|
|
14
|
-
$font-family: Roboto, Arial, sans-serif !default;
|
|
15
|
-
|
|
16
|
-
@import "_base";
|
|
1
|
+
$color_text: black !default;
|
|
2
|
+
$color_background: white !default;
|
|
3
|
+
$color_base: white !default;
|
|
4
|
+
$color_1: scale_color($color_base, $lightness:-3%) !default;
|
|
5
|
+
$color_2: scale_color($color_base, $lightness:-10%) !default;
|
|
6
|
+
$color_3: scale_color($color_base, $lightness:-15%) !default;
|
|
7
|
+
$color_4: scale_color($color_base, $lightness:-20%) !default;
|
|
8
|
+
$color_5: scale_color($color_base, $lightness:-25%) !default;
|
|
9
|
+
$color_6: scale_color($color_base, $lightness:-30%) !default;
|
|
10
|
+
$color_drag1: red !default;
|
|
11
|
+
$color_drag2: green !default;
|
|
12
|
+
|
|
13
|
+
$font-size: medium !default;
|
|
14
|
+
$font-family: Roboto, Arial, sans-serif !default;
|
|
15
|
+
|
|
16
|
+
@import "_base";
|
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
|
|
2
|
-
.nice-form-item {
|
|
3
|
-
padding-top: 24px;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
.nice-float-label {
|
|
7
|
-
position: relative;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.nice-label {
|
|
11
|
-
font-size: 12px;
|
|
12
|
-
font-weight: normal;
|
|
13
|
-
position: absolute;
|
|
14
|
-
pointer-events: none;
|
|
15
|
-
left: 12px;
|
|
16
|
-
top: 6px;
|
|
17
|
-
transition: 0.2s ease all;
|
|
18
|
-
color: rgba(0,0,0,.70);
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.nice-label-float {
|
|
22
|
-
top: -15px;
|
|
23
|
-
z-index: 1;
|
|
24
|
-
font-size: 12px !important;
|
|
25
|
-
background: white;
|
|
26
|
-
padding: 0 4px;
|
|
27
|
-
margin-left: -4px;
|
|
28
|
-
margin-bottom: 1px;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.nice-form-item-box {
|
|
32
|
-
position: relative;
|
|
33
|
-
display: inline-block;
|
|
34
|
-
width: 100%;
|
|
35
|
-
border: 1px solid rgba(0,0,0,.06);
|
|
36
|
-
border-radius: 2px;
|
|
37
|
-
transition: all .2s;
|
|
38
|
-
padding: 8px;
|
|
1
|
+
|
|
2
|
+
.nice-form-item {
|
|
3
|
+
padding-top: 24px;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.nice-float-label {
|
|
7
|
+
position: relative;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.nice-label {
|
|
11
|
+
font-size: 12px;
|
|
12
|
+
font-weight: normal;
|
|
13
|
+
position: absolute;
|
|
14
|
+
pointer-events: none;
|
|
15
|
+
left: 12px;
|
|
16
|
+
top: 6px;
|
|
17
|
+
transition: 0.2s ease all;
|
|
18
|
+
color: rgba(0,0,0,.70);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.nice-label-float {
|
|
22
|
+
top: -15px;
|
|
23
|
+
z-index: 1;
|
|
24
|
+
font-size: 12px !important;
|
|
25
|
+
background: white;
|
|
26
|
+
padding: 0 4px;
|
|
27
|
+
margin-left: -4px;
|
|
28
|
+
margin-bottom: 1px;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.nice-form-item-box {
|
|
32
|
+
position: relative;
|
|
33
|
+
display: inline-block;
|
|
34
|
+
width: 100%;
|
|
35
|
+
border: 1px solid rgba(0,0,0,.06);
|
|
36
|
+
border-radius: 2px;
|
|
37
|
+
transition: all .2s;
|
|
38
|
+
padding: 8px;
|
|
39
39
|
}
|
package/style/index.less
CHANGED
|
@@ -243,4 +243,11 @@ body {
|
|
|
243
243
|
.d2-page-header-heading-extra > * {
|
|
244
244
|
margin-left: 12px;
|
|
245
245
|
white-space: unset;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
// ag-grid with no header
|
|
249
|
+
.ag-grid-no-header .ag-theme-balham .ag-header {
|
|
250
|
+
height: 0 !important;
|
|
251
|
+
min-height: 0 !important;
|
|
252
|
+
border-bottom: 0 !important;
|
|
246
253
|
}
|
package/style/loading.css
CHANGED
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
.loadingPage {
|
|
2
|
-
position: fixed;
|
|
3
|
-
top: 0;
|
|
4
|
-
left: 0;
|
|
5
|
-
width: 100%;
|
|
6
|
-
height: 100%;
|
|
7
|
-
background-position: center center;
|
|
8
|
-
background-repeat: no-repeat;
|
|
9
|
-
background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDFweCIgIGhlaWdodD0iNDFweCIgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDEwMCAxMDAiIHByZXNlcnZlQXNwZWN0UmF0aW89InhNaWRZTWlkIiBjbGFzcz0ibGRzLXJvbGxpbmciPiAgICA8Y2lyY2xlIGN4PSI1MCIgY3k9IjUwIiBmaWxsPSJub25lIiBuZy1hdHRyLXN0cm9rZT0ie3tjb25maWcuY29sb3J9fSIgbmctYXR0ci1zdHJva2Utd2lkdGg9Int7Y29uZmlnLndpZHRofX0iIG5nLWF0dHItcj0ie3tjb25maWcucmFkaXVzfX0iIG5nLWF0dHItc3Ryb2tlLWRhc2hhcnJheT0ie3tjb25maWcuZGFzaGFycmF5fX0iIHN0cm9rZT0iIzAxOTBmZSIgc3Ryb2tlLXdpZHRoPSIxMCIgcj0iMzUiIHN0cm9rZS1kYXNoYXJyYXk9IjE2NC45MzM2MTQzMTM0NjQxNSA1Ni45Nzc4NzE0Mzc4MjEzOCIgdHJhbnNmb3JtPSJyb3RhdGUoODQgNTAgNTApIj4gICAgICA8YW5pbWF0ZVRyYW5zZm9ybSBhdHRyaWJ1dGVOYW1lPSJ0cmFuc2Zvcm0iIHR5cGU9InJvdGF0ZSIgY2FsY01vZGU9ImxpbmVhciIgdmFsdWVzPSIwIDUwIDUwOzM2MCA1MCA1MCIga2V5VGltZXM9IjA7MSIgZHVyPSIxcyIgYmVnaW49IjBzIiByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSI+PC9hbmltYXRlVHJhbnNmb3JtPiAgICA8L2NpcmNsZT4gIDwvc3ZnPg==);
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
.handle {
|
|
13
|
-
position: absolute;
|
|
14
|
-
bottom: 0px;
|
|
15
|
-
right: 0px;
|
|
16
|
-
z-index: 1000;
|
|
17
|
-
display: flex;
|
|
18
|
-
align-items: center;
|
|
19
|
-
justify-content: center;
|
|
20
|
-
width: 48px;
|
|
21
|
-
height: 48px;
|
|
22
|
-
font-size: 16px;
|
|
23
|
-
text-align: center;
|
|
24
|
-
background: #1890ff;
|
|
25
|
-
border-radius: 4px 0 0 4px;
|
|
26
|
-
cursor: pointer;
|
|
27
|
-
pointer-events: auto;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
body {
|
|
31
|
-
border-top: #aaaaaa 1px;
|
|
1
|
+
.loadingPage {
|
|
2
|
+
position: fixed;
|
|
3
|
+
top: 0;
|
|
4
|
+
left: 0;
|
|
5
|
+
width: 100%;
|
|
6
|
+
height: 100%;
|
|
7
|
+
background-position: center center;
|
|
8
|
+
background-repeat: no-repeat;
|
|
9
|
+
background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDFweCIgIGhlaWdodD0iNDFweCIgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDEwMCAxMDAiIHByZXNlcnZlQXNwZWN0UmF0aW89InhNaWRZTWlkIiBjbGFzcz0ibGRzLXJvbGxpbmciPiAgICA8Y2lyY2xlIGN4PSI1MCIgY3k9IjUwIiBmaWxsPSJub25lIiBuZy1hdHRyLXN0cm9rZT0ie3tjb25maWcuY29sb3J9fSIgbmctYXR0ci1zdHJva2Utd2lkdGg9Int7Y29uZmlnLndpZHRofX0iIG5nLWF0dHItcj0ie3tjb25maWcucmFkaXVzfX0iIG5nLWF0dHItc3Ryb2tlLWRhc2hhcnJheT0ie3tjb25maWcuZGFzaGFycmF5fX0iIHN0cm9rZT0iIzAxOTBmZSIgc3Ryb2tlLXdpZHRoPSIxMCIgcj0iMzUiIHN0cm9rZS1kYXNoYXJyYXk9IjE2NC45MzM2MTQzMTM0NjQxNSA1Ni45Nzc4NzE0Mzc4MjEzOCIgdHJhbnNmb3JtPSJyb3RhdGUoODQgNTAgNTApIj4gICAgICA8YW5pbWF0ZVRyYW5zZm9ybSBhdHRyaWJ1dGVOYW1lPSJ0cmFuc2Zvcm0iIHR5cGU9InJvdGF0ZSIgY2FsY01vZGU9ImxpbmVhciIgdmFsdWVzPSIwIDUwIDUwOzM2MCA1MCA1MCIga2V5VGltZXM9IjA7MSIgZHVyPSIxcyIgYmVnaW49IjBzIiByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSI+PC9hbmltYXRlVHJhbnNmb3JtPiAgICA8L2NpcmNsZT4gIDwvc3ZnPg==);
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.handle {
|
|
13
|
+
position: absolute;
|
|
14
|
+
bottom: 0px;
|
|
15
|
+
right: 0px;
|
|
16
|
+
z-index: 1000;
|
|
17
|
+
display: flex;
|
|
18
|
+
align-items: center;
|
|
19
|
+
justify-content: center;
|
|
20
|
+
width: 48px;
|
|
21
|
+
height: 48px;
|
|
22
|
+
font-size: 16px;
|
|
23
|
+
text-align: center;
|
|
24
|
+
background: #1890ff;
|
|
25
|
+
border-radius: 4px 0 0 4px;
|
|
26
|
+
cursor: pointer;
|
|
27
|
+
pointer-events: auto;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
body {
|
|
31
|
+
border-top: #aaaaaa 1px;
|
|
32
32
|
}
|
|
@@ -1,49 +1,49 @@
|
|
|
1
|
-
.Resizer {
|
|
2
|
-
background: #000;
|
|
3
|
-
opacity: 0.2;
|
|
4
|
-
z-index: 1;
|
|
5
|
-
-moz-box-sizing: border-box;
|
|
6
|
-
-webkit-box-sizing: border-box;
|
|
7
|
-
box-sizing: border-box;
|
|
8
|
-
-moz-background-clip: padding;
|
|
9
|
-
-webkit-background-clip: padding;
|
|
10
|
-
background-clip: padding-box;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.Resizer:hover {
|
|
14
|
-
-webkit-transition: all 2s ease;
|
|
15
|
-
transition: all 2s ease;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.Resizer.horizontal {
|
|
19
|
-
height: 11px;
|
|
20
|
-
margin: -5px 0;
|
|
21
|
-
border-top: 5px solid rgba(255, 255, 255, 0);
|
|
22
|
-
border-bottom: 5px solid rgba(255, 255, 255, 0);
|
|
23
|
-
cursor: row-resize;
|
|
24
|
-
width: 100%;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.Resizer.horizontal:hover {
|
|
28
|
-
border-top: 5px solid rgba(0, 0, 0, 0.5);
|
|
29
|
-
border-bottom: 5px solid rgba(0, 0, 0, 0.5);
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.Resizer.vertical {
|
|
33
|
-
width: 11px;
|
|
34
|
-
margin: 0 -5px;
|
|
35
|
-
border-left: 5px solid rgba(255, 255, 255, 0);
|
|
36
|
-
border-right: 5px solid rgba(255, 255, 255, 0);
|
|
37
|
-
cursor: col-resize;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.Resizer.vertical:hover {
|
|
41
|
-
border-left: 5px solid rgba(0, 0, 0, 0.5);
|
|
42
|
-
border-right: 5px solid rgba(0, 0, 0, 0.5);
|
|
43
|
-
}
|
|
44
|
-
.Resizer.disabled {
|
|
45
|
-
cursor: not-allowed;
|
|
46
|
-
}
|
|
47
|
-
.Resizer.disabled:hover {
|
|
48
|
-
border-color: transparent;
|
|
1
|
+
.Resizer {
|
|
2
|
+
background: #000;
|
|
3
|
+
opacity: 0.2;
|
|
4
|
+
z-index: 1;
|
|
5
|
+
-moz-box-sizing: border-box;
|
|
6
|
+
-webkit-box-sizing: border-box;
|
|
7
|
+
box-sizing: border-box;
|
|
8
|
+
-moz-background-clip: padding;
|
|
9
|
+
-webkit-background-clip: padding;
|
|
10
|
+
background-clip: padding-box;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.Resizer:hover {
|
|
14
|
+
-webkit-transition: all 2s ease;
|
|
15
|
+
transition: all 2s ease;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.Resizer.horizontal {
|
|
19
|
+
height: 11px;
|
|
20
|
+
margin: -5px 0;
|
|
21
|
+
border-top: 5px solid rgba(255, 255, 255, 0);
|
|
22
|
+
border-bottom: 5px solid rgba(255, 255, 255, 0);
|
|
23
|
+
cursor: row-resize;
|
|
24
|
+
width: 100%;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.Resizer.horizontal:hover {
|
|
28
|
+
border-top: 5px solid rgba(0, 0, 0, 0.5);
|
|
29
|
+
border-bottom: 5px solid rgba(0, 0, 0, 0.5);
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.Resizer.vertical {
|
|
33
|
+
width: 11px;
|
|
34
|
+
margin: 0 -5px;
|
|
35
|
+
border-left: 5px solid rgba(255, 255, 255, 0);
|
|
36
|
+
border-right: 5px solid rgba(255, 255, 255, 0);
|
|
37
|
+
cursor: col-resize;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.Resizer.vertical:hover {
|
|
41
|
+
border-left: 5px solid rgba(0, 0, 0, 0.5);
|
|
42
|
+
border-right: 5px solid rgba(0, 0, 0, 0.5);
|
|
43
|
+
}
|
|
44
|
+
.Resizer.disabled {
|
|
45
|
+
cursor: not-allowed;
|
|
46
|
+
}
|
|
47
|
+
.Resizer.disabled:hover {
|
|
48
|
+
border-color: transparent;
|
|
49
49
|
}
|