dante2-editor 0.3.6 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (42) hide show
  1. checksums.yaml +4 -4
  2. data/dist/Dante2.js +19801 -32971
  3. data/dist/Dante2.min.js +6 -15
  4. data/dist/Dante2.min.js.map +1 -1
  5. data/dist/DanteStyles.css +1 -1
  6. data/dist/DanteStyles.js +6 -6
  7. data/dist/DanteStyles.min.js +1 -1
  8. data/dist/DanteStyles.min.js.map +1 -1
  9. data/dist/dante-vendors.js +10602 -28851
  10. data/dist/dante-vendors.min.js +6 -15
  11. data/dist/dante-vendors.min.js.map +1 -1
  12. data/dist/fonts/dante.svg +1 -0
  13. data/docs/app.js +10 -10
  14. data/docs/app.js.map +1 -1
  15. data/docs/dante-vendors.js +16906 -31387
  16. data/docs/dante-vendors.js.map +1 -1
  17. data/docs/dante.css +168 -0
  18. data/docs/dante.css.map +1 -1
  19. data/docs/dante.js +1593 -179
  20. data/docs/dante.js.map +1 -1
  21. data/docs/fonts/dante.svg +1 -0
  22. data/package.json +15 -13
  23. data/rb_lib/dante2-editor/version.rb +1 -1
  24. data/src/components/{dante.js → core/dante.js} +12 -20
  25. data/src/components/{debug.js → core/debug.js} +0 -0
  26. data/src/components/{dante_editor.js → core/editor.js} +50 -42
  27. data/src/components/decorators/link.js +2 -1
  28. data/src/components/init.js +8 -0
  29. data/src/components/popovers/addButton.js +7 -0
  30. data/src/components/popovers/toolTip.js +15 -5
  31. data/src/index.js +4 -3
  32. data/src/styles/custom.css +189 -0
  33. data/src/styles/dante/_icons.scss +3 -1
  34. data/src/styles/dante.scss +2 -0
  35. data/src/styles/draft.css +5 -0
  36. data/src/styles/fonts/dante/dante.svg +1 -0
  37. data/src/utils/find_entities.js +3 -2
  38. data/src/utils/html2content.js +3 -1
  39. data/webpack/base.config.js +2 -2
  40. data/yarn.lock +1781 -1362
  41. metadata +7 -6
  42. data/src/components/wrapper.js +0 -0
data/docs/dante.css CHANGED
@@ -268,6 +268,9 @@
268
268
  -webkit-font-smoothing: antialiased;
269
269
  -moz-osx-font-smoothing: grayscale; }
270
270
 
271
+ .dante-icon-divider:before {
272
+ content: "\E904"; }
273
+
271
274
  .dante-icon-image-center:before {
272
275
  content: "\E900"; }
273
276
 
@@ -1302,6 +1305,9 @@ a[rel=token], .markup--query {
1302
1305
  .DraftEditor-root {
1303
1306
  position: relative; }
1304
1307
 
1308
+ .DraftEditor-root {
1309
+ overflow: auto; }
1310
+
1305
1311
  /**
1306
1312
  * Zero-opacity background used to allow focus in IE. Otherwise, clicks
1307
1313
  * fall through to the placeholder.
@@ -1600,4 +1606,166 @@ a[rel=token], .markup--query {
1600
1606
  background-color: #353232;
1601
1607
  border: 2px solid #c019dc; }
1602
1608
 
1609
+ .signature {
1610
+ position: relative;
1611
+ display: table;
1612
+ float: left;
1613
+ margin-bottom: 20px; }
1614
+
1615
+ .signature img {
1616
+ float: left;
1617
+ margin-right: 30px;
1618
+ margin-bottom: 0 !important;
1619
+ height: 100px;
1620
+ width: 100px;
1621
+ border-radius: 50px; }
1622
+
1623
+ .signature .text {
1624
+ width: 100%;
1625
+ display: table-cell;
1626
+ vertical-align: middle; }
1627
+
1628
+ .signature .text p {
1629
+ margin-bottom: 0 !important; }
1630
+
1631
+ .dante-clearfix:after {
1632
+ clear: both; }
1633
+
1634
+ .dante-clearfix:before {
1635
+ display: table;
1636
+ content: " "; }
1637
+
1638
+ .dropdown .btn {
1639
+ color: #BEC2CC;
1640
+ padding: 0 10px;
1641
+ width: auto;
1642
+ font-size: 12px; }
1643
+
1644
+ .text-toolbar button {
1645
+ position: relative;
1646
+ float: left;
1647
+ height: 40px;
1648
+ width: 40px;
1649
+ background: transparent;
1650
+ border: 0;
1651
+ padding: 0;
1652
+ cursor: pointer;
1653
+ padding: 0; }
1654
+
1655
+ .dropdown {
1656
+ float: left; }
1657
+
1658
+ .dropdown, .dropup {
1659
+ position: relative; }
1660
+
1661
+ .dropdown .btn {
1662
+ color: #BEC2CC;
1663
+ padding: 0 10px;
1664
+ width: auto;
1665
+ font-size: 12px; }
1666
+
1667
+ .dante-menu-button.visible-overflow {
1668
+ overflow: visible; }
1669
+
1670
+ .dante-menu-button button {
1671
+ position: relative;
1672
+ float: left;
1673
+ height: 40px;
1674
+ width: 40px;
1675
+ background: transparent !important;
1676
+ border: 0;
1677
+ padding: 0;
1678
+ cursor: pointer;
1679
+ padding: 0; }
1680
+
1681
+ .dropdown .dropdown-menu {
1682
+ background: #2A2B32;
1683
+ padding: 0;
1684
+ max-height: 300px;
1685
+ overflow-y: auto;
1686
+ width: auto;
1687
+ min-width: 60px; }
1688
+
1689
+ .open > .dropdown-menu {
1690
+ display: block; }
1691
+
1692
+ .dropdown-menu {
1693
+ position: absolute;
1694
+ top: 100%;
1695
+ left: 0;
1696
+ z-index: 1000;
1697
+ display: none;
1698
+ float: left;
1699
+ min-width: 160px;
1700
+ padding: 5px 0;
1701
+ margin: 2px 0 0;
1702
+ font-size: 14px;
1703
+ text-align: left;
1704
+ list-style: none;
1705
+ background-color: #fff;
1706
+ -webkit-background-clip: padding-box;
1707
+ background-clip: padding-box;
1708
+ border: 1px solid #ccc;
1709
+ border: 1px solid rgba(0, 0, 0, 0.15);
1710
+ border-radius: 4px;
1711
+ -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
1712
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); }
1713
+
1714
+ .dropdown .dropdown-menu li {
1715
+ border-bottom: 1px solid #383943; }
1716
+
1717
+ .editor .container .content-edit .text-toolbar .dropdown .dropdown-menu li a {
1718
+ color: #BEC2CC;
1719
+ font-size: 12px;
1720
+ padding: 0 10px;
1721
+ line-height: 30px; }
1722
+
1723
+ .dropdown-menu > li > a {
1724
+ display: block;
1725
+ padding: 3px 20px;
1726
+ clear: both;
1727
+ font-weight: 400;
1728
+ line-height: 1.42857143;
1729
+ color: #fff;
1730
+ white-space: nowrap; }
1731
+
1732
+ .btn-default.active, .btn-default:active, .open > .dropdown-toggle.btn-default {
1733
+ color: #fff;
1734
+ background-color: #e6e6e6;
1735
+ border-color: #adadad; }
1736
+
1737
+ .btn-default.active, .btn-default:active, .open > .dropdown-toggle.btn-default {
1738
+ background-image: none; }
1739
+
1740
+ .btn-default.active, .btn-default:active, .open > .dropdown-toggle.btn-default {
1741
+ color: #fff;
1742
+ background-color: #e6e6e6;
1743
+ border-color: #adadad; }
1744
+
1745
+ .btn-default {
1746
+ color: #fff;
1747
+ background-color: #fff;
1748
+ border-color: #ccc; }
1749
+
1750
+ .btn {
1751
+ display: inline-block;
1752
+ padding: 6px 12px;
1753
+ margin-bottom: 0;
1754
+ font-size: 14px;
1755
+ font-weight: 400;
1756
+ line-height: 1.42857143;
1757
+ text-align: center;
1758
+ white-space: nowrap;
1759
+ vertical-align: middle;
1760
+ -ms-touch-action: manipulation;
1761
+ touch-action: manipulation;
1762
+ cursor: pointer;
1763
+ -webkit-user-select: none;
1764
+ -moz-user-select: none;
1765
+ -ms-user-select: none;
1766
+ user-select: none;
1767
+ background-image: none;
1768
+ border: 1px solid transparent;
1769
+ border-radius: 4px; }
1770
+
1603
1771
  /*# sourceMappingURL=dante.css.map*/
data/docs/dante.css.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"dante.css","sources":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;","sourceRoot":""}
1
+ {"version":3,"file":"dante.css","sources":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;","sourceRoot":""}