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.
Files changed (62) hide show
  1. package/lib/compat.js +3 -1
  2. package/lib/compat.js.map +2 -2
  3. package/lib/components/Overlay.js +6 -3
  4. package/lib/components/Overlay.js.map +2 -2
  5. package/lib/components/Transfer.js +3 -2
  6. package/lib/components/Transfer.js.map +2 -2
  7. package/lib/index.js +1 -1
  8. package/lib/renderers/Carousel.js +5 -2
  9. package/lib/renderers/Carousel.js.map +2 -2
  10. package/lib/renderers/Form/Transfer.d.ts +4 -0
  11. package/lib/renderers/Form/Transfer.js +2 -2
  12. package/lib/renderers/Form/Transfer.js.map +2 -2
  13. package/lib/renderers/Image.d.ts +12 -0
  14. package/lib/renderers/Image.js +9 -4
  15. package/lib/renderers/Image.js.map +2 -2
  16. package/lib/themes/ang-ie11.css +19 -16
  17. package/lib/themes/ang.css +19 -16
  18. package/lib/themes/ang.css.map +1 -1
  19. package/lib/themes/antd-ie11.css +19 -16
  20. package/lib/themes/antd.css +19 -16
  21. package/lib/themes/antd.css.map +1 -1
  22. package/lib/themes/cxd-ie11.css +19 -16
  23. package/lib/themes/cxd.css +19 -16
  24. package/lib/themes/cxd.css.map +1 -1
  25. package/lib/themes/dark-ie11.css +19 -16
  26. package/lib/themes/dark.css +19 -16
  27. package/lib/themes/dark.css.map +1 -1
  28. package/lib/themes/default.css +19 -16
  29. package/lib/themes/default.css.map +1 -1
  30. package/package.json +1 -1
  31. package/schema.json +31 -14
  32. package/scss/components/_carousel.scss +23 -21
  33. package/scss/components/_images.scss +0 -1
  34. package/sdk/ang-ie11.css +20 -17
  35. package/sdk/ang.css +20 -17
  36. package/sdk/antd-ie11.css +20 -17
  37. package/sdk/antd.css +20 -17
  38. package/sdk/charts.js +13 -13
  39. package/sdk/color-picker.js +65 -65
  40. package/sdk/cropperjs.js +2 -2
  41. package/sdk/cxd-ie11.css +20 -17
  42. package/sdk/cxd.css +20 -17
  43. package/sdk/dark-ie11.css +20 -17
  44. package/sdk/dark.css +20 -17
  45. package/sdk/exceljs.js +1 -1
  46. package/sdk/markdown.js +69 -69
  47. package/sdk/papaparse.js +1 -1
  48. package/sdk/renderers/Form/CityDB.js +1 -1
  49. package/sdk/rest.js +25 -25
  50. package/sdk/rich-text.js +63 -63
  51. package/sdk/sdk-ie11.css +20 -17
  52. package/sdk/sdk.css +20 -17
  53. package/sdk/sdk.js +1115 -1113
  54. package/sdk/thirds/hls.js/hls.js +1 -1
  55. package/sdk/thirds/mpegts.js/mpegts.js +1 -1
  56. package/sdk/tinymce.js +57 -57
  57. package/src/compat.ts +5 -1
  58. package/src/components/Overlay.tsx +9 -6
  59. package/src/components/Transfer.tsx +3 -1
  60. package/src/renderers/Carousel.tsx +13 -1
  61. package/src/renderers/Form/Transfer.tsx +7 -0
  62. package/src/renderers/Image.tsx +38 -1
@@ -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-arrowsControl {
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-arrowsControl .antd-Carousel-leftArrow svg {
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-arrowsControl .antd-Carousel-rightArrow {
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-arrowsControl .antd-Carousel-rightArrow svg {
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-arrowsControl:hover .antd-Carousel-leftArrow {
9151
+ .antd-Carousel:hover .antd-Carousel-leftArrow {
9157
9152
  display: block;
9158
9153
  }
9159
- .antd-Carousel-arrowsControl:hover .antd-Carousel-rightArrow {
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
  }
@@ -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-arrowsControl {
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-arrowsControl .antd-Carousel-leftArrow svg {
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-arrowsControl .antd-Carousel-rightArrow {
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-arrowsControl .antd-Carousel-rightArrow svg {
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-arrowsControl:hover .antd-Carousel-leftArrow {
9151
+ .antd-Carousel:hover .antd-Carousel-leftArrow {
9157
9152
  display: block;
9158
9153
  }
9159
- .antd-Carousel-arrowsControl:hover .antd-Carousel-rightArrow {
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
  }