amis 1.3.2 → 1.3.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/lib/compat.js +3 -1
- package/lib/compat.js.map +2 -2
- package/lib/components/Overlay.js +6 -3
- package/lib/components/Overlay.js.map +2 -2
- package/lib/components/Transfer.js +3 -2
- package/lib/components/Transfer.js.map +2 -2
- package/lib/index.js +1 -1
- package/lib/renderers/Carousel.js +5 -2
- package/lib/renderers/Carousel.js.map +2 -2
- package/lib/renderers/Form/Transfer.d.ts +4 -0
- package/lib/renderers/Form/Transfer.js +2 -2
- package/lib/renderers/Form/Transfer.js.map +2 -2
- package/lib/renderers/Image.d.ts +12 -0
- package/lib/renderers/Image.js +9 -4
- package/lib/renderers/Image.js.map +2 -2
- package/lib/themes/ang-ie11.css +19 -16
- package/lib/themes/ang.css +19 -16
- package/lib/themes/ang.css.map +1 -1
- package/lib/themes/antd-ie11.css +19 -16
- package/lib/themes/antd.css +19 -16
- package/lib/themes/antd.css.map +1 -1
- package/lib/themes/cxd-ie11.css +19 -16
- package/lib/themes/cxd.css +19 -16
- package/lib/themes/cxd.css.map +1 -1
- package/lib/themes/dark-ie11.css +19 -16
- package/lib/themes/dark.css +19 -16
- package/lib/themes/dark.css.map +1 -1
- package/lib/themes/default.css +19 -16
- package/lib/themes/default.css.map +1 -1
- package/package.json +1 -1
- package/schema.json +31 -14
- package/scss/components/_carousel.scss +23 -21
- package/scss/components/_images.scss +0 -1
- package/sdk/ang-ie11.css +20 -17
- package/sdk/ang.css +20 -17
- package/sdk/antd-ie11.css +20 -17
- package/sdk/antd.css +20 -17
- package/sdk/charts.js +13 -13
- package/sdk/color-picker.js +65 -65
- package/sdk/cropperjs.js +2 -2
- package/sdk/cxd-ie11.css +20 -17
- package/sdk/cxd.css +20 -17
- package/sdk/dark-ie11.css +20 -17
- package/sdk/dark.css +20 -17
- package/sdk/exceljs.js +1 -1
- package/sdk/markdown.js +69 -69
- package/sdk/papaparse.js +1 -1
- package/sdk/renderers/Form/CityDB.js +1 -1
- package/sdk/rest.js +25 -25
- package/sdk/rich-text.js +63 -63
- package/sdk/sdk-ie11.css +20 -17
- package/sdk/sdk.css +20 -17
- package/sdk/sdk.js +1115 -1113
- package/sdk/thirds/hls.js/hls.js +1 -1
- package/sdk/thirds/mpegts.js/mpegts.js +1 -1
- package/sdk/tinymce.js +57 -57
- package/src/compat.ts +5 -1
- package/src/components/Overlay.tsx +9 -6
- package/src/components/Transfer.tsx +3 -1
- package/src/renderers/Carousel.tsx +13 -1
- package/src/renderers/Form/Transfer.tsx +7 -0
- package/src/renderers/Image.tsx +38 -1
package/lib/themes/antd-ie11.css
CHANGED
@@ -9106,26 +9106,19 @@ input[type=button].antd-Button--block {
|
|
9106
9106
|
.antd-Carousel-dotsControl .antd-Carousel-dot.is-active {
|
9107
9107
|
opacity: 1;
|
9108
9108
|
}
|
9109
|
-
.antd-Carousel-
|
9110
|
-
position: absolute;
|
9111
|
-
width: 100%;
|
9112
|
-
height: 100%;
|
9113
|
-
top: 0;
|
9114
|
-
left: 0;
|
9115
|
-
z-index: 100;
|
9116
|
-
text-align: center;
|
9117
|
-
}
|
9118
|
-
.antd-Carousel-arrowsControl .antd-Carousel-leftArrow {
|
9109
|
+
.antd-Carousel .antd-Carousel-leftArrow {
|
9119
9110
|
width: 10%;
|
9120
9111
|
min-width: var(--Carousel-arrowControl-width);
|
9121
9112
|
height: 100%;
|
9122
9113
|
cursor: pointer;
|
9114
|
+
top: 0;
|
9115
|
+
bottom: 0;
|
9123
9116
|
position: absolute;
|
9124
9117
|
transition-duration: var(--Carousel-transitionDuration);
|
9125
9118
|
display: none;
|
9126
9119
|
left: 0;
|
9127
9120
|
}
|
9128
|
-
.antd-Carousel
|
9121
|
+
.antd-Carousel .antd-Carousel-leftArrow svg {
|
9129
9122
|
position: absolute;
|
9130
9123
|
top: 50%;
|
9131
9124
|
left: 50%;
|
@@ -9134,17 +9127,19 @@ input[type=button].antd-Button--block {
|
|
9134
9127
|
width: var(--Carousel-svg-width);
|
9135
9128
|
height: var(--Carousel-svg-height);
|
9136
9129
|
}
|
9137
|
-
.antd-Carousel
|
9130
|
+
.antd-Carousel .antd-Carousel-rightArrow {
|
9138
9131
|
width: 10%;
|
9139
9132
|
min-width: var(--Carousel-arrowControl-width);
|
9140
9133
|
height: 100%;
|
9141
9134
|
cursor: pointer;
|
9135
|
+
top: 0;
|
9136
|
+
bottom: 0;
|
9142
9137
|
position: absolute;
|
9143
9138
|
transition-duration: var(--Carousel-transitionDuration);
|
9144
9139
|
display: none;
|
9145
9140
|
right: 0;
|
9146
9141
|
}
|
9147
|
-
.antd-Carousel
|
9142
|
+
.antd-Carousel .antd-Carousel-rightArrow svg {
|
9148
9143
|
position: absolute;
|
9149
9144
|
top: 50%;
|
9150
9145
|
left: 50%;
|
@@ -9153,12 +9148,21 @@ input[type=button].antd-Button--block {
|
|
9153
9148
|
width: var(--Carousel-svg-width);
|
9154
9149
|
height: var(--Carousel-svg-height);
|
9155
9150
|
}
|
9156
|
-
.antd-Carousel
|
9151
|
+
.antd-Carousel:hover .antd-Carousel-leftArrow {
|
9157
9152
|
display: block;
|
9158
9153
|
}
|
9159
|
-
.antd-Carousel
|
9154
|
+
.antd-Carousel:hover .antd-Carousel-rightArrow {
|
9160
9155
|
display: block;
|
9161
9156
|
}
|
9157
|
+
.antd-Carousel-arrowsControl {
|
9158
|
+
position: absolute;
|
9159
|
+
width: 100%;
|
9160
|
+
height: 100%;
|
9161
|
+
top: 0;
|
9162
|
+
left: 0;
|
9163
|
+
z-index: 100;
|
9164
|
+
text-align: center;
|
9165
|
+
}
|
9162
9166
|
|
9163
9167
|
@keyframes disappear {
|
9164
9168
|
to {
|
@@ -9367,7 +9371,6 @@ input[type=button].antd-Button--block {
|
|
9367
9371
|
.antd-Image-thumb {
|
9368
9372
|
width: 6.875rem;
|
9369
9373
|
height: 6.875rem;
|
9370
|
-
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjIwMCIgaGVpZ2h0PSI0MDAiPgogICAgPGRlZnM+CiAgICAgICAgPHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CiAgICAgICAgICAgIDxyZWN0IGZpbGw9ImJsYWNrIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIG9wYWNpdHk9IjAuMSIgLz4KICAgICAgICAgICAgPHJlY3QgZmlsbD0id2hpdGUiIHg9IjEwIiB5PSIwIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIC8+CiAgICAgICAgICAgIDxyZWN0IGZpbGw9ImJsYWNrIiB4PSIxMCIgeT0iMTAiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgb3BhY2l0eT0iMC4xIiAvPgogICAgICAgICAgICA8cmVjdCBmaWxsPSJ3aGl0ZSIgeD0iMCIgeT0iMTAiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgLz4KICAgICAgICA8L3BhdHRlcm4+CiAgICA8L2RlZnM+CiAgICA8cmVjdCBmaWxsPSJ1cmwoI2dyaWQpIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiAvPgo8L3N2Zz4=");
|
9371
9374
|
position: relative;
|
9372
9375
|
overflow: hidden;
|
9373
9376
|
}
|
package/lib/themes/antd.css
CHANGED
@@ -9106,26 +9106,19 @@ input[type=button].antd-Button--block {
|
|
9106
9106
|
.antd-Carousel-dotsControl .antd-Carousel-dot.is-active {
|
9107
9107
|
opacity: 1;
|
9108
9108
|
}
|
9109
|
-
.antd-Carousel-
|
9110
|
-
position: absolute;
|
9111
|
-
width: 100%;
|
9112
|
-
height: 100%;
|
9113
|
-
top: 0;
|
9114
|
-
left: 0;
|
9115
|
-
z-index: 100;
|
9116
|
-
text-align: center;
|
9117
|
-
}
|
9118
|
-
.antd-Carousel-arrowsControl .antd-Carousel-leftArrow {
|
9109
|
+
.antd-Carousel .antd-Carousel-leftArrow {
|
9119
9110
|
width: 10%;
|
9120
9111
|
min-width: var(--Carousel-arrowControl-width);
|
9121
9112
|
height: 100%;
|
9122
9113
|
cursor: pointer;
|
9114
|
+
top: 0;
|
9115
|
+
bottom: 0;
|
9123
9116
|
position: absolute;
|
9124
9117
|
transition-duration: var(--Carousel-transitionDuration);
|
9125
9118
|
display: none;
|
9126
9119
|
left: 0;
|
9127
9120
|
}
|
9128
|
-
.antd-Carousel
|
9121
|
+
.antd-Carousel .antd-Carousel-leftArrow svg {
|
9129
9122
|
position: absolute;
|
9130
9123
|
top: 50%;
|
9131
9124
|
left: 50%;
|
@@ -9134,17 +9127,19 @@ input[type=button].antd-Button--block {
|
|
9134
9127
|
width: var(--Carousel-svg-width);
|
9135
9128
|
height: var(--Carousel-svg-height);
|
9136
9129
|
}
|
9137
|
-
.antd-Carousel
|
9130
|
+
.antd-Carousel .antd-Carousel-rightArrow {
|
9138
9131
|
width: 10%;
|
9139
9132
|
min-width: var(--Carousel-arrowControl-width);
|
9140
9133
|
height: 100%;
|
9141
9134
|
cursor: pointer;
|
9135
|
+
top: 0;
|
9136
|
+
bottom: 0;
|
9142
9137
|
position: absolute;
|
9143
9138
|
transition-duration: var(--Carousel-transitionDuration);
|
9144
9139
|
display: none;
|
9145
9140
|
right: 0;
|
9146
9141
|
}
|
9147
|
-
.antd-Carousel
|
9142
|
+
.antd-Carousel .antd-Carousel-rightArrow svg {
|
9148
9143
|
position: absolute;
|
9149
9144
|
top: 50%;
|
9150
9145
|
left: 50%;
|
@@ -9153,12 +9148,21 @@ input[type=button].antd-Button--block {
|
|
9153
9148
|
width: var(--Carousel-svg-width);
|
9154
9149
|
height: var(--Carousel-svg-height);
|
9155
9150
|
}
|
9156
|
-
.antd-Carousel
|
9151
|
+
.antd-Carousel:hover .antd-Carousel-leftArrow {
|
9157
9152
|
display: block;
|
9158
9153
|
}
|
9159
|
-
.antd-Carousel
|
9154
|
+
.antd-Carousel:hover .antd-Carousel-rightArrow {
|
9160
9155
|
display: block;
|
9161
9156
|
}
|
9157
|
+
.antd-Carousel-arrowsControl {
|
9158
|
+
position: absolute;
|
9159
|
+
width: 100%;
|
9160
|
+
height: 100%;
|
9161
|
+
top: 0;
|
9162
|
+
left: 0;
|
9163
|
+
z-index: 100;
|
9164
|
+
text-align: center;
|
9165
|
+
}
|
9162
9166
|
|
9163
9167
|
@keyframes disappear {
|
9164
9168
|
to {
|
@@ -9367,7 +9371,6 @@ input[type=button].antd-Button--block {
|
|
9367
9371
|
.antd-Image-thumb {
|
9368
9372
|
width: 6.875rem;
|
9369
9373
|
height: 6.875rem;
|
9370
|
-
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjIwMCIgaGVpZ2h0PSI0MDAiPgogICAgPGRlZnM+CiAgICAgICAgPHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CiAgICAgICAgICAgIDxyZWN0IGZpbGw9ImJsYWNrIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIG9wYWNpdHk9IjAuMSIgLz4KICAgICAgICAgICAgPHJlY3QgZmlsbD0id2hpdGUiIHg9IjEwIiB5PSIwIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIC8+CiAgICAgICAgICAgIDxyZWN0IGZpbGw9ImJsYWNrIiB4PSIxMCIgeT0iMTAiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgb3BhY2l0eT0iMC4xIiAvPgogICAgICAgICAgICA8cmVjdCBmaWxsPSJ3aGl0ZSIgeD0iMCIgeT0iMTAiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgLz4KICAgICAgICA8L3BhdHRlcm4+CiAgICA8L2RlZnM+CiAgICA8cmVjdCBmaWxsPSJ1cmwoI2dyaWQpIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiAvPgo8L3N2Zz4=");
|
9371
9374
|
position: relative;
|
9372
9375
|
overflow: hidden;
|
9373
9376
|
}
|