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
@@ -9083,26 +9083,19 @@ input[type=button].dark-Button--block {
9083
9083
  .dark-Carousel-dotsControl .dark-Carousel-dot.is-active {
9084
9084
  opacity: 1;
9085
9085
  }
9086
- .dark-Carousel-arrowsControl {
9087
- position: absolute;
9088
- width: 100%;
9089
- height: 100%;
9090
- top: 0;
9091
- left: 0;
9092
- z-index: 100;
9093
- text-align: center;
9094
- }
9095
- .dark-Carousel-arrowsControl .dark-Carousel-leftArrow {
9086
+ .dark-Carousel .dark-Carousel-leftArrow {
9096
9087
  width: 10%;
9097
9088
  min-width: var(--Carousel-arrowControl-width);
9098
9089
  height: 100%;
9099
9090
  cursor: pointer;
9091
+ top: 0;
9092
+ bottom: 0;
9100
9093
  position: absolute;
9101
9094
  transition-duration: var(--Carousel-transitionDuration);
9102
9095
  display: none;
9103
9096
  left: 0;
9104
9097
  }
9105
- .dark-Carousel-arrowsControl .dark-Carousel-leftArrow svg {
9098
+ .dark-Carousel .dark-Carousel-leftArrow svg {
9106
9099
  position: absolute;
9107
9100
  top: 50%;
9108
9101
  left: 50%;
@@ -9111,17 +9104,19 @@ input[type=button].dark-Button--block {
9111
9104
  width: var(--Carousel-svg-width);
9112
9105
  height: var(--Carousel-svg-height);
9113
9106
  }
9114
- .dark-Carousel-arrowsControl .dark-Carousel-rightArrow {
9107
+ .dark-Carousel .dark-Carousel-rightArrow {
9115
9108
  width: 10%;
9116
9109
  min-width: var(--Carousel-arrowControl-width);
9117
9110
  height: 100%;
9118
9111
  cursor: pointer;
9112
+ top: 0;
9113
+ bottom: 0;
9119
9114
  position: absolute;
9120
9115
  transition-duration: var(--Carousel-transitionDuration);
9121
9116
  display: none;
9122
9117
  right: 0;
9123
9118
  }
9124
- .dark-Carousel-arrowsControl .dark-Carousel-rightArrow svg {
9119
+ .dark-Carousel .dark-Carousel-rightArrow svg {
9125
9120
  position: absolute;
9126
9121
  top: 50%;
9127
9122
  left: 50%;
@@ -9130,12 +9125,21 @@ input[type=button].dark-Button--block {
9130
9125
  width: var(--Carousel-svg-width);
9131
9126
  height: var(--Carousel-svg-height);
9132
9127
  }
9133
- .dark-Carousel-arrowsControl:hover .dark-Carousel-leftArrow {
9128
+ .dark-Carousel:hover .dark-Carousel-leftArrow {
9134
9129
  display: block;
9135
9130
  }
9136
- .dark-Carousel-arrowsControl:hover .dark-Carousel-rightArrow {
9131
+ .dark-Carousel:hover .dark-Carousel-rightArrow {
9137
9132
  display: block;
9138
9133
  }
9134
+ .dark-Carousel-arrowsControl {
9135
+ position: absolute;
9136
+ width: 100%;
9137
+ height: 100%;
9138
+ top: 0;
9139
+ left: 0;
9140
+ z-index: 100;
9141
+ text-align: center;
9142
+ }
9139
9143
 
9140
9144
  @keyframes disappear {
9141
9145
  to {
@@ -9344,7 +9348,6 @@ input[type=button].dark-Button--block {
9344
9348
  .dark-Image-thumb {
9345
9349
  width: 6.875rem;
9346
9350
  height: 6.875rem;
9347
- background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjIwMCIgaGVpZ2h0PSI0MDAiPgogICAgPGRlZnM+CiAgICAgICAgPHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CiAgICAgICAgICAgIDxyZWN0IGZpbGw9ImJsYWNrIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIG9wYWNpdHk9IjAuMSIgLz4KICAgICAgICAgICAgPHJlY3QgZmlsbD0id2hpdGUiIHg9IjEwIiB5PSIwIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIC8+CiAgICAgICAgICAgIDxyZWN0IGZpbGw9ImJsYWNrIiB4PSIxMCIgeT0iMTAiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgb3BhY2l0eT0iMC4xIiAvPgogICAgICAgICAgICA8cmVjdCBmaWxsPSJ3aGl0ZSIgeD0iMCIgeT0iMTAiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgLz4KICAgICAgICA8L3BhdHRlcm4+CiAgICA8L2RlZnM+CiAgICA8cmVjdCBmaWxsPSJ1cmwoI2dyaWQpIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiAvPgo8L3N2Zz4=");
9348
9351
  position: relative;
9349
9352
  overflow: hidden;
9350
9353
  }
@@ -9083,26 +9083,19 @@ input[type=button].dark-Button--block {
9083
9083
  .dark-Carousel-dotsControl .dark-Carousel-dot.is-active {
9084
9084
  opacity: 1;
9085
9085
  }
9086
- .dark-Carousel-arrowsControl {
9087
- position: absolute;
9088
- width: 100%;
9089
- height: 100%;
9090
- top: 0;
9091
- left: 0;
9092
- z-index: 100;
9093
- text-align: center;
9094
- }
9095
- .dark-Carousel-arrowsControl .dark-Carousel-leftArrow {
9086
+ .dark-Carousel .dark-Carousel-leftArrow {
9096
9087
  width: 10%;
9097
9088
  min-width: var(--Carousel-arrowControl-width);
9098
9089
  height: 100%;
9099
9090
  cursor: pointer;
9091
+ top: 0;
9092
+ bottom: 0;
9100
9093
  position: absolute;
9101
9094
  transition-duration: var(--Carousel-transitionDuration);
9102
9095
  display: none;
9103
9096
  left: 0;
9104
9097
  }
9105
- .dark-Carousel-arrowsControl .dark-Carousel-leftArrow svg {
9098
+ .dark-Carousel .dark-Carousel-leftArrow svg {
9106
9099
  position: absolute;
9107
9100
  top: 50%;
9108
9101
  left: 50%;
@@ -9111,17 +9104,19 @@ input[type=button].dark-Button--block {
9111
9104
  width: var(--Carousel-svg-width);
9112
9105
  height: var(--Carousel-svg-height);
9113
9106
  }
9114
- .dark-Carousel-arrowsControl .dark-Carousel-rightArrow {
9107
+ .dark-Carousel .dark-Carousel-rightArrow {
9115
9108
  width: 10%;
9116
9109
  min-width: var(--Carousel-arrowControl-width);
9117
9110
  height: 100%;
9118
9111
  cursor: pointer;
9112
+ top: 0;
9113
+ bottom: 0;
9119
9114
  position: absolute;
9120
9115
  transition-duration: var(--Carousel-transitionDuration);
9121
9116
  display: none;
9122
9117
  right: 0;
9123
9118
  }
9124
- .dark-Carousel-arrowsControl .dark-Carousel-rightArrow svg {
9119
+ .dark-Carousel .dark-Carousel-rightArrow svg {
9125
9120
  position: absolute;
9126
9121
  top: 50%;
9127
9122
  left: 50%;
@@ -9130,12 +9125,21 @@ input[type=button].dark-Button--block {
9130
9125
  width: var(--Carousel-svg-width);
9131
9126
  height: var(--Carousel-svg-height);
9132
9127
  }
9133
- .dark-Carousel-arrowsControl:hover .dark-Carousel-leftArrow {
9128
+ .dark-Carousel:hover .dark-Carousel-leftArrow {
9134
9129
  display: block;
9135
9130
  }
9136
- .dark-Carousel-arrowsControl:hover .dark-Carousel-rightArrow {
9131
+ .dark-Carousel:hover .dark-Carousel-rightArrow {
9137
9132
  display: block;
9138
9133
  }
9134
+ .dark-Carousel-arrowsControl {
9135
+ position: absolute;
9136
+ width: 100%;
9137
+ height: 100%;
9138
+ top: 0;
9139
+ left: 0;
9140
+ z-index: 100;
9141
+ text-align: center;
9142
+ }
9139
9143
 
9140
9144
  @keyframes disappear {
9141
9145
  to {
@@ -9344,7 +9348,6 @@ input[type=button].dark-Button--block {
9344
9348
  .dark-Image-thumb {
9345
9349
  width: 6.875rem;
9346
9350
  height: 6.875rem;
9347
- background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjIwMCIgaGVpZ2h0PSI0MDAiPgogICAgPGRlZnM+CiAgICAgICAgPHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CiAgICAgICAgICAgIDxyZWN0IGZpbGw9ImJsYWNrIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIG9wYWNpdHk9IjAuMSIgLz4KICAgICAgICAgICAgPHJlY3QgZmlsbD0id2hpdGUiIHg9IjEwIiB5PSIwIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIC8+CiAgICAgICAgICAgIDxyZWN0IGZpbGw9ImJsYWNrIiB4PSIxMCIgeT0iMTAiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgb3BhY2l0eT0iMC4xIiAvPgogICAgICAgICAgICA8cmVjdCBmaWxsPSJ3aGl0ZSIgeD0iMCIgeT0iMTAiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgLz4KICAgICAgICA8L3BhdHRlcm4+CiAgICA8L2RlZnM+CiAgICA8cmVjdCBmaWxsPSJ1cmwoI2dyaWQpIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiAvPgo8L3N2Zz4=");
9348
9351
  position: relative;
9349
9352
  overflow: hidden;
9350
9353
  }