dante2-editor 0.4.3 → 0.4.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/demo/assets/index.html +1 -1
- data/demo/assets/license.html +1 -1
- data/demo/assets/options.html +1 -1
- data/dist/Dante2.js +5992 -4276
- data/dist/Dante2.min.js +2 -2
- data/dist/Dante2.min.js.map +1 -1
- data/dist/DanteStyles.js +6 -6
- data/dist/DanteStyles.min.js +1 -1
- data/dist/DanteStyles.min.js.map +1 -1
- data/dist/dante-vendors.js +665 -634
- data/dist/dante-vendors.min.js +2 -2
- data/dist/dante-vendors.min.js.map +1 -1
- data/docs/app.js +10 -10
- data/docs/app.js.map +1 -1
- data/docs/dante-vendors.js +8949 -7309
- data/docs/dante-vendors.js.map +1 -1
- data/docs/dante.js +272 -194
- data/docs/dante.js.map +1 -1
- data/package.json +4 -6
- data/rb_lib/dante2-editor/version.rb +1 -1
- data/src/components/blocks/image.js +3 -1
- data/src/components/core/editor.js +68 -11
- data/src/components/popovers/addButton.js +3 -27
- data/src/components/popovers/image.js +26 -19
- data/src/components/popovers/link.js +12 -3
- data/src/components/popovers/toolTip.js +16 -2
- data/src/model/index.js +1 -1
- data/src/utils/save_content.js +1 -1
- data/src/utils/selection.js +13 -0
- data/yarn.lock +22 -173
- metadata +2 -2
data/src/utils/save_content.js
CHANGED
@@ -5,6 +5,7 @@ class SaveBehavior {
|
|
5
5
|
constructor(options) {
|
6
6
|
this.getLocks = options.getLocks
|
7
7
|
this.config = options.config
|
8
|
+
this.editor = options.editor
|
8
9
|
this.editorContent = options.editorContent
|
9
10
|
this.editorState = options.editorState
|
10
11
|
}
|
@@ -89,7 +90,6 @@ class SaveBehavior {
|
|
89
90
|
}
|
90
91
|
|
91
92
|
save(content){
|
92
|
-
|
93
93
|
// use save handler from config if exists
|
94
94
|
if (this.config.data_storage.save_handler){
|
95
95
|
this.config.data_storage.save_handler(this, content)
|
data/src/utils/selection.js
CHANGED
@@ -1,3 +1,16 @@
|
|
1
|
+
export const getRelativeParent = (element) => {
|
2
|
+
if (!element) {
|
3
|
+
return null;
|
4
|
+
}
|
5
|
+
|
6
|
+
const position = window.getComputedStyle(element).getPropertyValue('position');
|
7
|
+
if (position !== 'static') {
|
8
|
+
return element;
|
9
|
+
}
|
10
|
+
|
11
|
+
return getRelativeParent(element.parentElement);
|
12
|
+
};
|
13
|
+
|
1
14
|
/*
|
2
15
|
Returns the `boundingClientRect` of the passed selection.
|
3
16
|
*/
|
data/yarn.lock
CHANGED
@@ -1246,27 +1246,6 @@ chalk@^2.1.0:
|
|
1246
1246
|
escape-string-regexp "^1.0.5"
|
1247
1247
|
supports-color "^4.0.0"
|
1248
1248
|
|
1249
|
-
cheerio@^0.22.0:
|
1250
|
-
version "0.22.0"
|
1251
|
-
resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-0.22.0.tgz#a9baa860a3f9b595a6b81b1a86873121ed3a269e"
|
1252
|
-
dependencies:
|
1253
|
-
css-select "~1.2.0"
|
1254
|
-
dom-serializer "~0.1.0"
|
1255
|
-
entities "~1.1.1"
|
1256
|
-
htmlparser2 "^3.9.1"
|
1257
|
-
lodash.assignin "^4.0.9"
|
1258
|
-
lodash.bind "^4.1.4"
|
1259
|
-
lodash.defaults "^4.0.1"
|
1260
|
-
lodash.filter "^4.4.0"
|
1261
|
-
lodash.flatten "^4.2.0"
|
1262
|
-
lodash.foreach "^4.3.0"
|
1263
|
-
lodash.map "^4.4.0"
|
1264
|
-
lodash.merge "^4.4.0"
|
1265
|
-
lodash.pick "^4.2.1"
|
1266
|
-
lodash.reduce "^4.4.0"
|
1267
|
-
lodash.reject "^4.4.0"
|
1268
|
-
lodash.some "^4.4.0"
|
1269
|
-
|
1270
1249
|
child-process-promise@^2.2.0:
|
1271
1250
|
version "2.2.1"
|
1272
1251
|
resolved "https://registry.yarnpkg.com/child-process-promise/-/child-process-promise-2.2.1.tgz#4730a11ef610fad450b8f223c79d31d7bdad8074"
|
@@ -1593,7 +1572,7 @@ css-loader@^0.25.0:
|
|
1593
1572
|
postcss-modules-values "^1.1.0"
|
1594
1573
|
source-list-map "^0.1.4"
|
1595
1574
|
|
1596
|
-
css-select@^1.1.0
|
1575
|
+
css-select@^1.1.0:
|
1597
1576
|
version "1.2.0"
|
1598
1577
|
resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858"
|
1599
1578
|
dependencies:
|
@@ -1835,7 +1814,7 @@ dom-converter@~0.1:
|
|
1835
1814
|
dependencies:
|
1836
1815
|
utila "~0.3"
|
1837
1816
|
|
1838
|
-
dom-serializer@0
|
1817
|
+
dom-serializer@0:
|
1839
1818
|
version "0.1.0"
|
1840
1819
|
resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82"
|
1841
1820
|
dependencies:
|
@@ -1846,7 +1825,7 @@ domain-browser@^1.1.1:
|
|
1846
1825
|
version "1.1.7"
|
1847
1826
|
resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc"
|
1848
1827
|
|
1849
|
-
domelementtype@1
|
1828
|
+
domelementtype@1:
|
1850
1829
|
version "1.3.0"
|
1851
1830
|
resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2"
|
1852
1831
|
|
@@ -1860,12 +1839,6 @@ domhandler@2.1:
|
|
1860
1839
|
dependencies:
|
1861
1840
|
domelementtype "1"
|
1862
1841
|
|
1863
|
-
domhandler@^2.3.0:
|
1864
|
-
version "2.4.1"
|
1865
|
-
resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.1.tgz#892e47000a99be55bbf3774ffea0561d8879c259"
|
1866
|
-
dependencies:
|
1867
|
-
domelementtype "1"
|
1868
|
-
|
1869
1842
|
domutils@1.1:
|
1870
1843
|
version "1.1.6"
|
1871
1844
|
resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.1.6.tgz#bddc3de099b9a2efacc51c623f28f416ecc57485"
|
@@ -1879,41 +1852,33 @@ domutils@1.5.1:
|
|
1879
1852
|
dom-serializer "0"
|
1880
1853
|
domelementtype "1"
|
1881
1854
|
|
1882
|
-
|
1883
|
-
version "1.
|
1884
|
-
resolved "https://registry.yarnpkg.com/
|
1885
|
-
dependencies:
|
1886
|
-
dom-serializer "0"
|
1887
|
-
domelementtype "1"
|
1888
|
-
|
1889
|
-
draft-convert@^1.2.3:
|
1890
|
-
version "1.4.10"
|
1891
|
-
resolved "https://registry.yarnpkg.com/draft-convert/-/draft-convert-1.4.10.tgz#05007f009b18025451a2ce259aa008f4aa6a1add"
|
1855
|
+
draft-convert@^2.1.2:
|
1856
|
+
version "2.1.2"
|
1857
|
+
resolved "https://registry.yarnpkg.com/draft-convert/-/draft-convert-2.1.2.tgz#00624b40fc80dca320c4e693a5fd21debb78206d"
|
1892
1858
|
dependencies:
|
1893
1859
|
immutable "~3.7.4"
|
1894
1860
|
invariant "^2.2.1"
|
1895
1861
|
|
1896
|
-
draft-js-custom-styles@^2.0.
|
1897
|
-
version "2.0.
|
1898
|
-
resolved "https://registry.yarnpkg.com/draft-js-custom-styles/-/draft-js-custom-styles-2.0.
|
1862
|
+
draft-js-custom-styles@^2.0.4:
|
1863
|
+
version "2.0.4"
|
1864
|
+
resolved "https://registry.yarnpkg.com/draft-js-custom-styles/-/draft-js-custom-styles-2.0.4.tgz#2632306ce11c7af7da22108ad4fcb99c1ead2f5a"
|
1899
1865
|
dependencies:
|
1900
|
-
draft-js "^0.10.
|
1866
|
+
draft-js "^0.10.5"
|
1901
1867
|
immutable "^3.8.1"
|
1902
1868
|
lodash.camelcase "^4.3.0"
|
1903
1869
|
lodash.snakecase "^4.1.1"
|
1904
1870
|
|
1905
|
-
draft-js@0.10.
|
1906
|
-
version "0.10.
|
1907
|
-
resolved "https://registry.yarnpkg.com/draft-js/-/draft-js-0.10.
|
1871
|
+
draft-js@0.10.4:
|
1872
|
+
version "0.10.4"
|
1873
|
+
resolved "https://registry.yarnpkg.com/draft-js/-/draft-js-0.10.4.tgz#147741642097c8120d8edc232e9503e8b7fb8d35"
|
1908
1874
|
dependencies:
|
1909
|
-
enzyme "^2.9.1"
|
1910
1875
|
fbjs "^0.8.15"
|
1911
1876
|
immutable "~3.7.4"
|
1912
1877
|
object-assign "^4.1.0"
|
1913
1878
|
|
1914
|
-
draft-js@^0.10.
|
1915
|
-
version "0.10.
|
1916
|
-
resolved "https://registry.yarnpkg.com/draft-js/-/draft-js-0.10.
|
1879
|
+
draft-js@^0.10.5:
|
1880
|
+
version "0.10.5"
|
1881
|
+
resolved "https://registry.yarnpkg.com/draft-js/-/draft-js-0.10.5.tgz#bfa9beb018fe0533dbb08d6675c371a6b08fa742"
|
1917
1882
|
dependencies:
|
1918
1883
|
fbjs "^0.8.15"
|
1919
1884
|
immutable "~3.7.4"
|
@@ -1968,25 +1933,10 @@ enhanced-resolve@^3.3.0:
|
|
1968
1933
|
object-assign "^4.0.1"
|
1969
1934
|
tapable "^0.2.7"
|
1970
1935
|
|
1971
|
-
entities
|
1936
|
+
entities@~1.1.1:
|
1972
1937
|
version "1.1.1"
|
1973
1938
|
resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0"
|
1974
1939
|
|
1975
|
-
enzyme@^2.9.1:
|
1976
|
-
version "2.9.1"
|
1977
|
-
resolved "https://registry.yarnpkg.com/enzyme/-/enzyme-2.9.1.tgz#07d5ce691241240fb817bf2c4b18d6e530240df6"
|
1978
|
-
dependencies:
|
1979
|
-
cheerio "^0.22.0"
|
1980
|
-
function.prototype.name "^1.0.0"
|
1981
|
-
is-subset "^0.1.1"
|
1982
|
-
lodash "^4.17.4"
|
1983
|
-
object-is "^1.0.1"
|
1984
|
-
object.assign "^4.0.4"
|
1985
|
-
object.entries "^1.0.4"
|
1986
|
-
object.values "^1.0.4"
|
1987
|
-
prop-types "^15.5.10"
|
1988
|
-
uuid "^3.0.1"
|
1989
|
-
|
1990
1940
|
errno@^0.1.3:
|
1991
1941
|
version "0.1.4"
|
1992
1942
|
resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d"
|
@@ -1999,7 +1949,7 @@ error-ex@^1.2.0:
|
|
1999
1949
|
dependencies:
|
2000
1950
|
is-arrayish "^0.2.1"
|
2001
1951
|
|
2002
|
-
es-abstract@^1.
|
1952
|
+
es-abstract@^1.7.0:
|
2003
1953
|
version "1.9.0"
|
2004
1954
|
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.9.0.tgz#690829a07cae36b222e7fd9b75c0d0573eb25227"
|
2005
1955
|
dependencies:
|
@@ -2485,18 +2435,10 @@ fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2:
|
|
2485
2435
|
mkdirp ">=0.5 0"
|
2486
2436
|
rimraf "2"
|
2487
2437
|
|
2488
|
-
function-bind@^1.0.2, function-bind@^1.1.
|
2438
|
+
function-bind@^1.0.2, function-bind@^1.1.1:
|
2489
2439
|
version "1.1.1"
|
2490
2440
|
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
|
2491
2441
|
|
2492
|
-
function.prototype.name@^1.0.0:
|
2493
|
-
version "1.0.3"
|
2494
|
-
resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.0.3.tgz#0099ae5572e9dd6f03c97d023fd92bcc5e639eac"
|
2495
|
-
dependencies:
|
2496
|
-
define-properties "^1.1.2"
|
2497
|
-
function-bind "^1.1.0"
|
2498
|
-
is-callable "^1.1.3"
|
2499
|
-
|
2500
2442
|
gauge@~2.7.3:
|
2501
2443
|
version "2.7.4"
|
2502
2444
|
resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
|
@@ -2805,17 +2747,6 @@ html-webpack-plugin@^2.24.1:
|
|
2805
2747
|
pretty-error "^2.0.2"
|
2806
2748
|
toposort "^1.0.0"
|
2807
2749
|
|
2808
|
-
htmlparser2@^3.9.1:
|
2809
|
-
version "3.9.2"
|
2810
|
-
resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.9.2.tgz#1bdf87acca0f3f9e53fa4fcceb0f4b4cbb00b338"
|
2811
|
-
dependencies:
|
2812
|
-
domelementtype "^1.3.0"
|
2813
|
-
domhandler "^2.3.0"
|
2814
|
-
domutils "^1.5.1"
|
2815
|
-
entities "^1.1.1"
|
2816
|
-
inherits "^2.0.1"
|
2817
|
-
readable-stream "^2.0.2"
|
2818
|
-
|
2819
2750
|
htmlparser2@~3.3.0:
|
2820
2751
|
version "3.3.0"
|
2821
2752
|
resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.3.0.tgz#cc70d05a59f6542e43f0e685c982e14c924a9efe"
|
@@ -3125,10 +3056,6 @@ is-stream@^1.0.1:
|
|
3125
3056
|
version "1.1.0"
|
3126
3057
|
resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
|
3127
3058
|
|
3128
|
-
is-subset@^0.1.1:
|
3129
|
-
version "0.1.1"
|
3130
|
-
resolved "https://registry.yarnpkg.com/is-subset/-/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6"
|
3131
|
-
|
3132
3059
|
is-svg@^2.0.0:
|
3133
3060
|
version "2.1.0"
|
3134
3061
|
resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-2.1.0.tgz#cf61090da0d9efbcab8722deba6f032208dbb0e9"
|
@@ -3473,14 +3400,6 @@ lodash.assign@^4.0.0, lodash.assign@^4.0.9, lodash.assign@^4.2.0:
|
|
3473
3400
|
version "4.2.0"
|
3474
3401
|
resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7"
|
3475
3402
|
|
3476
|
-
lodash.assignin@^4.0.9:
|
3477
|
-
version "4.2.0"
|
3478
|
-
resolved "https://registry.yarnpkg.com/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2"
|
3479
|
-
|
3480
|
-
lodash.bind@^4.1.4:
|
3481
|
-
version "4.2.1"
|
3482
|
-
resolved "https://registry.yarnpkg.com/lodash.bind/-/lodash.bind-4.2.1.tgz#7ae3017e939622ac31b7d7d7dcb1b34db1690d35"
|
3483
|
-
|
3484
3403
|
lodash.camelcase@^3.0.1:
|
3485
3404
|
version "3.0.1"
|
3486
3405
|
resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-3.0.1.tgz#932c8b87f8a4377897c67197533282f97aeac298"
|
@@ -3508,22 +3427,6 @@ lodash.deburr@^3.0.0:
|
|
3508
3427
|
dependencies:
|
3509
3428
|
lodash._root "^3.0.0"
|
3510
3429
|
|
3511
|
-
lodash.defaults@^4.0.1:
|
3512
|
-
version "4.2.0"
|
3513
|
-
resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c"
|
3514
|
-
|
3515
|
-
lodash.filter@^4.4.0:
|
3516
|
-
version "4.6.0"
|
3517
|
-
resolved "https://registry.yarnpkg.com/lodash.filter/-/lodash.filter-4.6.0.tgz#668b1d4981603ae1cc5a6fa760143e480b4c4ace"
|
3518
|
-
|
3519
|
-
lodash.flatten@^4.2.0:
|
3520
|
-
version "4.4.0"
|
3521
|
-
resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f"
|
3522
|
-
|
3523
|
-
lodash.foreach@^4.3.0:
|
3524
|
-
version "4.5.0"
|
3525
|
-
resolved "https://registry.yarnpkg.com/lodash.foreach/-/lodash.foreach-4.5.0.tgz#1a6a35eace401280c7f06dddec35165ab27e3e53"
|
3526
|
-
|
3527
3430
|
lodash.isarguments@^3.0.0:
|
3528
3431
|
version "3.1.0"
|
3529
3432
|
resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a"
|
@@ -3559,10 +3462,6 @@ lodash.keysin@^3.0.0:
|
|
3559
3462
|
lodash.isarguments "^3.0.0"
|
3560
3463
|
lodash.isarray "^3.0.0"
|
3561
3464
|
|
3562
|
-
lodash.map@^4.4.0:
|
3563
|
-
version "4.6.0"
|
3564
|
-
resolved "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3"
|
3565
|
-
|
3566
3465
|
lodash.memoize@^4.1.2:
|
3567
3466
|
version "4.1.2"
|
3568
3467
|
resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
|
@@ -3583,10 +3482,6 @@ lodash.merge@^3.3.2:
|
|
3583
3482
|
lodash.keysin "^3.0.0"
|
3584
3483
|
lodash.toplainobject "^3.0.0"
|
3585
3484
|
|
3586
|
-
lodash.merge@^4.4.0:
|
3587
|
-
version "4.6.0"
|
3588
|
-
resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.0.tgz#69884ba144ac33fe699737a6086deffadd0f89c5"
|
3589
|
-
|
3590
3485
|
lodash.mergewith@^4.6.0:
|
3591
3486
|
version "4.6.0"
|
3592
3487
|
resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.0.tgz#150cf0a16791f5903b8891eab154609274bdea55"
|
@@ -3604,22 +3499,10 @@ lodash.omit@^3.1.0:
|
|
3604
3499
|
lodash.keysin "^3.0.0"
|
3605
3500
|
lodash.restparam "^3.0.0"
|
3606
3501
|
|
3607
|
-
lodash.pick@^4.2.1:
|
3608
|
-
version "4.4.0"
|
3609
|
-
resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3"
|
3610
|
-
|
3611
3502
|
lodash.pickby@^4.0.0:
|
3612
3503
|
version "4.6.0"
|
3613
3504
|
resolved "https://registry.yarnpkg.com/lodash.pickby/-/lodash.pickby-4.6.0.tgz#7dea21d8c18d7703a27c704c15d3b84a67e33aff"
|
3614
3505
|
|
3615
|
-
lodash.reduce@^4.4.0:
|
3616
|
-
version "4.6.0"
|
3617
|
-
resolved "https://registry.yarnpkg.com/lodash.reduce/-/lodash.reduce-4.6.0.tgz#f1ab6b839299ad48f784abbf476596f03b914d3b"
|
3618
|
-
|
3619
|
-
lodash.reject@^4.4.0:
|
3620
|
-
version "4.6.0"
|
3621
|
-
resolved "https://registry.yarnpkg.com/lodash.reject/-/lodash.reject-4.6.0.tgz#80d6492dc1470864bbf583533b651f42a9f52415"
|
3622
|
-
|
3623
3506
|
lodash.restparam@^3.0.0:
|
3624
3507
|
version "3.6.1"
|
3625
3508
|
resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805"
|
@@ -3628,10 +3511,6 @@ lodash.snakecase@^4.1.1:
|
|
3628
3511
|
version "4.1.1"
|
3629
3512
|
resolved "https://registry.yarnpkg.com/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz#39d714a35357147837aefd64b5dcbb16becd8f8d"
|
3630
3513
|
|
3631
|
-
lodash.some@^4.4.0:
|
3632
|
-
version "4.6.0"
|
3633
|
-
resolved "https://registry.yarnpkg.com/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d"
|
3634
|
-
|
3635
3514
|
lodash.toplainobject@^3.0.0:
|
3636
3515
|
version "3.0.0"
|
3637
3516
|
resolved "https://registry.yarnpkg.com/lodash.toplainobject/-/lodash.toplainobject-3.0.0.tgz#28790ad942d293d78aa663a07ecf7f52ca04198d"
|
@@ -4084,31 +3963,10 @@ object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1:
|
|
4084
3963
|
version "4.1.1"
|
4085
3964
|
resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
|
4086
3965
|
|
4087
|
-
object-
|
4088
|
-
version "1.0.1"
|
4089
|
-
resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.0.1.tgz#0aa60ec9989a0b3ed795cf4d06f62cf1ad6539b6"
|
4090
|
-
|
4091
|
-
object-keys@^1.0.10, object-keys@^1.0.8:
|
3966
|
+
object-keys@^1.0.8:
|
4092
3967
|
version "1.0.11"
|
4093
3968
|
resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d"
|
4094
3969
|
|
4095
|
-
object.assign@^4.0.4:
|
4096
|
-
version "4.0.4"
|
4097
|
-
resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.0.4.tgz#b1c9cc044ef1b9fe63606fc141abbb32e14730cc"
|
4098
|
-
dependencies:
|
4099
|
-
define-properties "^1.1.2"
|
4100
|
-
function-bind "^1.1.0"
|
4101
|
-
object-keys "^1.0.10"
|
4102
|
-
|
4103
|
-
object.entries@^1.0.4:
|
4104
|
-
version "1.0.4"
|
4105
|
-
resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.0.4.tgz#1bf9a4dd2288f5b33f3a993d257661f05d161a5f"
|
4106
|
-
dependencies:
|
4107
|
-
define-properties "^1.1.2"
|
4108
|
-
es-abstract "^1.6.1"
|
4109
|
-
function-bind "^1.1.0"
|
4110
|
-
has "^1.0.1"
|
4111
|
-
|
4112
3970
|
object.omit@^2.0.0:
|
4113
3971
|
version "2.0.1"
|
4114
3972
|
resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
|
@@ -4116,15 +3974,6 @@ object.omit@^2.0.0:
|
|
4116
3974
|
for-own "^0.1.4"
|
4117
3975
|
is-extendable "^0.1.1"
|
4118
3976
|
|
4119
|
-
object.values@^1.0.4:
|
4120
|
-
version "1.0.4"
|
4121
|
-
resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.0.4.tgz#e524da09b4f66ff05df457546ec72ac99f13069a"
|
4122
|
-
dependencies:
|
4123
|
-
define-properties "^1.1.2"
|
4124
|
-
es-abstract "^1.6.1"
|
4125
|
-
function-bind "^1.1.0"
|
4126
|
-
has "^1.0.1"
|
4127
|
-
|
4128
3977
|
obuf@^1.0.0, obuf@^1.1.1:
|
4129
3978
|
version "1.1.1"
|
4130
3979
|
resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.1.tgz#104124b6c602c6796881a042541d36db43a5264e"
|
@@ -4618,7 +4467,7 @@ promise@^7.1.1:
|
|
4618
4467
|
dependencies:
|
4619
4468
|
asap "~2.0.3"
|
4620
4469
|
|
4621
|
-
prop-types@^15.
|
4470
|
+
prop-types@^15.6.0:
|
4622
4471
|
version "15.6.0"
|
4623
4472
|
resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.0.tgz#ceaf083022fc46b4a35f69e13ef75aed0d639856"
|
4624
4473
|
dependencies:
|
@@ -5640,7 +5489,7 @@ uuid@^2.0.2:
|
|
5640
5489
|
version "2.0.3"
|
5641
5490
|
resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a"
|
5642
5491
|
|
5643
|
-
uuid@^3.0.0, uuid@^3.
|
5492
|
+
uuid@^3.0.0, uuid@^3.1.0:
|
5644
5493
|
version "3.1.0"
|
5645
5494
|
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04"
|
5646
5495
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dante2-editor
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Miguel Michelson
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2018-05-19 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: dante-editor yet another Medium editor clone.
|
15
15
|
email:
|