super 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascripts/super/application.js +60 -10831
- data/app/assets/stylesheets/super/application.css +38267 -22475
- data/app/controllers/super/application_controller.rb +34 -30
- data/app/helpers/super/application_helper.rb +32 -0
- data/app/views/layouts/super/application.html.erb +6 -8
- data/app/views/super/application/_form.html.erb +13 -10
- data/app/views/super/application/_form_field__destroy.html.erb +2 -2
- data/app/views/super/application/_form_field_select.html.erb +6 -6
- data/app/views/super/application/_form_field_text.html.erb +3 -3
- data/app/views/super/application/_form_fieldset.html.erb +1 -1
- data/app/views/super/application/_form_has_many.html.erb +4 -4
- data/app/views/super/application/_index.html.erb +38 -53
- data/app/views/super/application/_resource_header.html.erb +16 -0
- data/app/views/super/application/_resources_header.html.erb +16 -0
- data/app/views/super/application/_show.html.erb +0 -2
- data/app/views/super/application/_super_layout.html.erb +34 -0
- data/app/views/super/application/_super_panel.html.erb +11 -0
- data/app/views/super/application/edit.html.erb +1 -6
- data/app/views/super/application/index.html.erb +1 -1
- data/app/views/super/application/new.html.erb +1 -6
- data/app/views/super/application/show.html.erb +1 -1
- data/frontend/super-frontend/build.js +12 -12
- data/frontend/super-frontend/dist/application.css +38267 -22475
- data/frontend/super-frontend/dist/application.js +60 -10831
- data/frontend/super-frontend/package.json +7 -3
- data/frontend/super-frontend/postcss.config.js +4 -4
- data/frontend/super-frontend/src/javascripts/super/application.ts +10 -5
- data/frontend/super-frontend/src/javascripts/super/apply_template_controller.ts +21 -0
- data/frontend/super-frontend/src/javascripts/super/rails__ujs.d.ts +1 -1
- data/frontend/super-frontend/src/javascripts/super/toggle_pending_destruction_controller.ts +15 -0
- data/frontend/super-frontend/src/stylesheets/super/application.css +63 -0
- data/frontend/super-frontend/tailwind.config.js +6 -4
- data/frontend/super-frontend/yarn.lock +115 -40
- data/lib/super.rb +6 -2
- data/lib/super/action.rb +22 -0
- data/lib/super/action/step.rb +36 -0
- data/lib/super/controls.rb +222 -2
- data/lib/super/error.rb +1 -0
- data/lib/super/form/schema_types.rb +1 -1
- data/lib/super/layout.rb +19 -0
- data/lib/super/link.rb +87 -0
- data/lib/super/pagination.rb +19 -8
- data/lib/super/panel.rb +17 -0
- data/lib/super/partial.rb +11 -0
- data/lib/super/test_support/copy_app_templates/controllers/members_controller.rb +17 -0
- data/lib/super/test_support/copy_app_templates/views/members/_favorite_things.html.erb +11 -0
- data/lib/super/test_support/generate_copy_app.rb +1 -0
- data/lib/super/version.rb +1 -1
- metadata +16 -5
- data/frontend/super-frontend/src/javascripts/super/nested_attributes_controller.ts +0 -33
- data/lib/super/inline_callback.rb +0 -82
- data/lib/super/view.rb +0 -25
@@ -1,17 +1,21 @@
|
|
1
1
|
{
|
2
2
|
"dependencies": {
|
3
3
|
"@rails/ujs": "^6.0.2-1",
|
4
|
-
"jquery": "^3.4.1",
|
5
4
|
"stimulus": "^1.1.1",
|
6
5
|
"tailwindcss": "^1.0.1"
|
7
6
|
},
|
8
7
|
"devDependencies": {
|
9
|
-
"@types/jquery": "^3.3.31",
|
10
8
|
"parcel-bundler": "^1.12.3",
|
9
|
+
"prettier": "1.19.1",
|
11
10
|
"typescript": "^3.7.4"
|
12
11
|
},
|
13
12
|
"scripts": {
|
14
13
|
"build": "node build.js",
|
15
|
-
"watch": "node build.js --watch"
|
14
|
+
"watch": "node build.js --watch",
|
15
|
+
"typescript": "tsc --watch",
|
16
|
+
"lint": "prettier --write src/**/*.ts *.js"
|
17
|
+
},
|
18
|
+
"prettier": {
|
19
|
+
"trailingComma": "es5"
|
16
20
|
}
|
17
21
|
}
|
@@ -1,11 +1,16 @@
|
|
1
|
-
import RailsUjs from
|
2
|
-
import { Application, Controller } from
|
3
|
-
import
|
1
|
+
import RailsUjs from "@rails/ujs";
|
2
|
+
import { Application, Controller } from "stimulus";
|
3
|
+
import ApplyTemplateController from "./apply_template_controller";
|
4
|
+
import TogglePendingDestructionController from "./toggle_pending_destruction_controller";
|
4
5
|
|
5
6
|
RailsUjs.start();
|
6
7
|
|
7
|
-
const application = Application.start()
|
8
|
-
application.register(
|
8
|
+
const application = Application.start();
|
9
|
+
application.register("apply-template", ApplyTemplateController);
|
10
|
+
application.register(
|
11
|
+
"toggle-pending-destruction",
|
12
|
+
TogglePendingDestructionController
|
13
|
+
);
|
9
14
|
|
10
15
|
export default {
|
11
16
|
StimulusApplication: application,
|
@@ -0,0 +1,21 @@
|
|
1
|
+
import { Controller } from "stimulus";
|
2
|
+
|
3
|
+
export default class extends Controller {
|
4
|
+
templateTarget: Element | undefined;
|
5
|
+
|
6
|
+
static targets = ["template"];
|
7
|
+
|
8
|
+
call(event: Event) {
|
9
|
+
event.preventDefault();
|
10
|
+
|
11
|
+
if (this.templateTarget) {
|
12
|
+
const unixtime = new Date().getTime();
|
13
|
+
let content = this.templateTarget.innerHTML.replace(
|
14
|
+
/TEMPLATEINDEX/g,
|
15
|
+
unixtime.toString()
|
16
|
+
);
|
17
|
+
|
18
|
+
this.templateTarget.insertAdjacentHTML("beforebegin", content);
|
19
|
+
}
|
20
|
+
}
|
21
|
+
}
|
@@ -1 +1 @@
|
|
1
|
-
declare module
|
1
|
+
declare module "@rails/ujs";
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import { Controller } from "stimulus";
|
2
|
+
|
3
|
+
export default class extends Controller {
|
4
|
+
call(event: Event) {
|
5
|
+
let target = event.target;
|
6
|
+
|
7
|
+
if (target) {
|
8
|
+
if ((<HTMLInputElement>target).checked) {
|
9
|
+
this.element.classList.add("opacity-75", "bg-gray-100");
|
10
|
+
} else {
|
11
|
+
this.element.classList.remove("opacity-75", "bg-gray-100");
|
12
|
+
}
|
13
|
+
}
|
14
|
+
}
|
15
|
+
}
|
@@ -1,5 +1,9 @@
|
|
1
1
|
@tailwind base;
|
2
2
|
|
3
|
+
html {
|
4
|
+
font-size: 15px;
|
5
|
+
}
|
6
|
+
|
3
7
|
a {
|
4
8
|
@apply .text-blue-700;
|
5
9
|
}
|
@@ -11,4 +15,63 @@ a {
|
|
11
15
|
max-width: 100%;
|
12
16
|
}
|
13
17
|
|
18
|
+
.super-input {
|
19
|
+
@apply .py-2 .leading-tight .px-2;
|
20
|
+
@apply .appearance-none .border .rounded .shadow-sm;
|
21
|
+
@apply .bg-white .text-gray-900 .border-gray-400;
|
22
|
+
}
|
23
|
+
.super-input:focus {
|
24
|
+
@apply .border-blue-400;
|
25
|
+
}
|
26
|
+
|
27
|
+
.super-input-select {
|
28
|
+
@apply .relative;
|
29
|
+
}
|
30
|
+
.super-input-select-field {
|
31
|
+
@apply .w-full .pr-8;
|
32
|
+
}
|
33
|
+
.super-input-select-icon {
|
34
|
+
@apply .pointer-events-none;
|
35
|
+
@apply .absolute .inset-y-0 .right-0;
|
36
|
+
@apply .flex .items-center;
|
37
|
+
@apply .px-2;
|
38
|
+
@apply .fill-current;
|
39
|
+
}
|
40
|
+
|
41
|
+
.super-button {
|
42
|
+
@apply .py-2 .leading-tight .px-3;
|
43
|
+
@apply .border .border-transparent .rounded .shadow;
|
44
|
+
@apply .transition .duration-150;
|
45
|
+
}
|
46
|
+
|
47
|
+
.super-button-sm {
|
48
|
+
@apply .text-sm .leading-none .px-2;
|
49
|
+
}
|
50
|
+
|
51
|
+
.super-button--border-blue {
|
52
|
+
@apply .bg-white .text-blue-700 .border-blue-700;
|
53
|
+
}
|
54
|
+
.super-button--border-blue:hover {
|
55
|
+
@apply .bg-blue-700 .text-white;
|
56
|
+
}
|
57
|
+
|
58
|
+
.super-button--border-gray {
|
59
|
+
@apply .bg-white .text-gray-700 .border-gray-500;
|
60
|
+
}
|
61
|
+
.super-button--border-gray:hover {
|
62
|
+
@apply .bg-gray-700 .text-white .border-gray-700;
|
63
|
+
}
|
64
|
+
|
65
|
+
.super-button--fill-blue {
|
66
|
+
@apply .text-white;
|
67
|
+
@apply .bg-blue-700 .border-blue-700;
|
68
|
+
}
|
69
|
+
.super-button--fill-blue:hover {
|
70
|
+
@apply .bg-blue-800 .border-blue-800;
|
71
|
+
}
|
72
|
+
|
73
|
+
.super-field-group {
|
74
|
+
@apply .mt-4;
|
75
|
+
}
|
76
|
+
|
14
77
|
@tailwind utilities;
|
@@ -842,23 +842,16 @@
|
|
842
842
|
resolved "https://registry.yarnpkg.com/@stimulus/webpack-helpers/-/webpack-helpers-1.1.1.tgz#eff60cd4e58b921d1a2764dc5215f5141510f2c2"
|
843
843
|
integrity sha512-XOkqSw53N9072FLHvpLM25PIwy+ndkSSbnTtjKuyzsv8K5yfkFB2rv68jU1pzqYa9FZLcvZWP4yazC0V38dx9A==
|
844
844
|
|
845
|
-
"@types/
|
846
|
-
version "
|
847
|
-
resolved "https://registry.yarnpkg.com/@types/
|
848
|
-
integrity sha512-
|
849
|
-
dependencies:
|
850
|
-
"@types/sizzle" "*"
|
845
|
+
"@types/color-name@^1.1.1":
|
846
|
+
version "1.1.1"
|
847
|
+
resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0"
|
848
|
+
integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==
|
851
849
|
|
852
850
|
"@types/q@^1.5.1":
|
853
851
|
version "1.5.2"
|
854
852
|
resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.2.tgz#690a1475b84f2a884fd07cd797c00f5f31356ea8"
|
855
853
|
integrity sha512-ce5d3q03Ex0sy4R14722Rmt6MT07Ua+k4FwDfdcToYJcMKNtRVQvJ6JCAPdAmAnbRb6CsX6aYb9m96NGod9uTw==
|
856
854
|
|
857
|
-
"@types/sizzle@*":
|
858
|
-
version "2.3.2"
|
859
|
-
resolved "https://registry.yarnpkg.com/@types/sizzle/-/sizzle-2.3.2.tgz#a811b8c18e2babab7d542b3365887ae2e4d9de47"
|
860
|
-
integrity sha512-7EJYyKTL7tFR8+gDbB6Wwz/arpGa0Mywk1TJbNzKzHtzbwVmY4HR9WqS5VV7dsBUKQmPNr192jHr/VpBluj/hg==
|
861
|
-
|
862
855
|
abab@^2.0.0:
|
863
856
|
version "2.0.3"
|
864
857
|
resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.3.tgz#623e2075e02eb2d3f2475e49f99c91846467907a"
|
@@ -872,11 +865,25 @@ acorn-globals@^4.3.0:
|
|
872
865
|
acorn "^6.0.1"
|
873
866
|
acorn-walk "^6.0.1"
|
874
867
|
|
868
|
+
acorn-node@^1.6.1:
|
869
|
+
version "1.8.2"
|
870
|
+
resolved "https://registry.yarnpkg.com/acorn-node/-/acorn-node-1.8.2.tgz#114c95d64539e53dede23de8b9d96df7c7ae2af8"
|
871
|
+
integrity sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==
|
872
|
+
dependencies:
|
873
|
+
acorn "^7.0.0"
|
874
|
+
acorn-walk "^7.0.0"
|
875
|
+
xtend "^4.0.2"
|
876
|
+
|
875
877
|
acorn-walk@^6.0.1:
|
876
878
|
version "6.2.0"
|
877
879
|
resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.2.0.tgz#123cb8f3b84c2171f1f7fb252615b1c78a6b1a8c"
|
878
880
|
integrity sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==
|
879
881
|
|
882
|
+
acorn-walk@^7.0.0:
|
883
|
+
version "7.1.1"
|
884
|
+
resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.1.1.tgz#345f0dffad5c735e7373d2fec9a1023e6a44b83e"
|
885
|
+
integrity sha512-wdlPY2tm/9XBr7QkKlq0WQVgiuGTX6YWPyRyBviSoScBuLfTVQhvwg6wJ369GJ/1nPfTLMfnrFIfjqVg6d+jQQ==
|
886
|
+
|
880
887
|
acorn@^5.0.0:
|
881
888
|
version "5.7.3"
|
882
889
|
resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279"
|
@@ -887,6 +894,11 @@ acorn@^6.0.1, acorn@^6.0.4:
|
|
887
894
|
resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.0.tgz#b659d2ffbafa24baf5db1cdbb2c94a983ecd2784"
|
888
895
|
integrity sha512-gac8OEcQ2Li1dxIEWGZzsp2BitJxwkwcOm0zHAJLcPJaVvm58FRnk6RkuLRpU1EujipU2ZFODv2P9DLMfnV8mw==
|
889
896
|
|
897
|
+
acorn@^7.0.0:
|
898
|
+
version "7.1.0"
|
899
|
+
resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.1.0.tgz#949d36f2c292535da602283586c2477c57eb2d6c"
|
900
|
+
integrity sha512-kL5CuoXA/dgxlBbVrflsflzQ3PAas7RYZB52NOm/6839iVYJgKMJ3cQJD+t2i5+qFa8h3MDpEOJiS64E8JLnSQ==
|
901
|
+
|
890
902
|
ajv@^6.5.5:
|
891
903
|
version "6.10.2"
|
892
904
|
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.2.tgz#d3cea04d6b017b2894ad69040fec8b623eb4bd52"
|
@@ -929,6 +941,14 @@ ansi-styles@^3.2.0, ansi-styles@^3.2.1:
|
|
929
941
|
dependencies:
|
930
942
|
color-convert "^1.9.0"
|
931
943
|
|
944
|
+
ansi-styles@^4.1.0:
|
945
|
+
version "4.2.1"
|
946
|
+
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359"
|
947
|
+
integrity sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==
|
948
|
+
dependencies:
|
949
|
+
"@types/color-name" "^1.1.1"
|
950
|
+
color-convert "^2.0.1"
|
951
|
+
|
932
952
|
ansi-to-html@^0.6.4:
|
933
953
|
version "0.6.13"
|
934
954
|
resolved "https://registry.yarnpkg.com/ansi-to-html/-/ansi-to-html-0.6.13.tgz#c72eae8b63e5ca0643aab11bfc6e6f2217425833"
|
@@ -1031,16 +1051,16 @@ atob@^2.1.2:
|
|
1031
1051
|
integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
|
1032
1052
|
|
1033
1053
|
autoprefixer@^9.4.5:
|
1034
|
-
version "9.7.
|
1035
|
-
resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.7.
|
1036
|
-
integrity sha512-
|
1054
|
+
version "9.7.4"
|
1055
|
+
resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.7.4.tgz#f8bf3e06707d047f0641d87aee8cfb174b2a5378"
|
1056
|
+
integrity sha512-g0Ya30YrMBAEZk60lp+qfX5YQllG+S5W3GYCFvyHTvhOki0AEQJLPEcIuGRsqVwLi8FvXPVtwTGhfr38hVpm0g==
|
1037
1057
|
dependencies:
|
1038
|
-
browserslist "^4.8.
|
1039
|
-
caniuse-lite "^1.0.
|
1058
|
+
browserslist "^4.8.3"
|
1059
|
+
caniuse-lite "^1.0.30001020"
|
1040
1060
|
chalk "^2.4.2"
|
1041
1061
|
normalize-range "^0.1.2"
|
1042
1062
|
num2fraction "^1.2.2"
|
1043
|
-
postcss "^7.0.
|
1063
|
+
postcss "^7.0.26"
|
1044
1064
|
postcss-value-parser "^4.0.2"
|
1045
1065
|
|
1046
1066
|
aws-sign2@~0.7.0:
|
@@ -1242,7 +1262,7 @@ browserify-zlib@^0.2.0:
|
|
1242
1262
|
dependencies:
|
1243
1263
|
pako "~1.0.5"
|
1244
1264
|
|
1245
|
-
browserslist@^4.0.0, browserslist@^4.1.0, browserslist@^4.8.
|
1265
|
+
browserslist@^4.0.0, browserslist@^4.1.0, browserslist@^4.8.2, browserslist@^4.8.3:
|
1246
1266
|
version "4.8.3"
|
1247
1267
|
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.8.3.tgz#65802fcd77177c878e015f0e3189f2c4f627ba44"
|
1248
1268
|
integrity sha512-iU43cMMknxG1ClEZ2MDKeonKE1CCrFVkQK2AqO2YWFmvIrx4JWrvQ4w4hQez6EpVI8rHTtqh/ruHHDHSOKxvUg==
|
@@ -1344,11 +1364,16 @@ caniuse-api@^3.0.0:
|
|
1344
1364
|
lodash.memoize "^4.1.2"
|
1345
1365
|
lodash.uniq "^4.5.0"
|
1346
1366
|
|
1347
|
-
caniuse-lite@^1.0.0
|
1367
|
+
caniuse-lite@^1.0.0:
|
1348
1368
|
version "1.0.30001020"
|
1349
1369
|
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001020.tgz#3f04c1737500ffda78be9beb0b5c1e2070e15926"
|
1350
1370
|
integrity sha512-yWIvwA68wRHKanAVS1GjN8vajAv7MBFshullKCeq/eKpK7pJBVDgFFEqvgWTkcP2+wIDeQGYFRXECjKZnLkUjA==
|
1351
1371
|
|
1372
|
+
caniuse-lite@^1.0.30001017, caniuse-lite@^1.0.30001020:
|
1373
|
+
version "1.0.30001027"
|
1374
|
+
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001027.tgz#283e2ef17d94889cc216a22c6f85303d78ca852d"
|
1375
|
+
integrity sha512-7xvKeErvXZFtUItTHgNtLgS9RJpVnwBlWX8jSo/BO8VsF6deszemZSkJJJA1KOKrXuzZH4WALpAJdq5EyfgMLg==
|
1376
|
+
|
1352
1377
|
caseless@~0.12.0:
|
1353
1378
|
version "0.12.0"
|
1354
1379
|
resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
|
@@ -1374,6 +1399,14 @@ chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.1, chalk@^2.4.1, chalk@^2.4
|
|
1374
1399
|
escape-string-regexp "^1.0.5"
|
1375
1400
|
supports-color "^5.3.0"
|
1376
1401
|
|
1402
|
+
chalk@^3.0.0:
|
1403
|
+
version "3.0.0"
|
1404
|
+
resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4"
|
1405
|
+
integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==
|
1406
|
+
dependencies:
|
1407
|
+
ansi-styles "^4.1.0"
|
1408
|
+
supports-color "^7.1.0"
|
1409
|
+
|
1377
1410
|
chokidar@^2.1.5:
|
1378
1411
|
version "2.1.8"
|
1379
1412
|
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917"
|
@@ -1466,12 +1499,19 @@ color-convert@^1.9.0, color-convert@^1.9.1:
|
|
1466
1499
|
dependencies:
|
1467
1500
|
color-name "1.1.3"
|
1468
1501
|
|
1502
|
+
color-convert@^2.0.1:
|
1503
|
+
version "2.0.1"
|
1504
|
+
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
|
1505
|
+
integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
|
1506
|
+
dependencies:
|
1507
|
+
color-name "~1.1.4"
|
1508
|
+
|
1469
1509
|
color-name@1.1.3:
|
1470
1510
|
version "1.1.3"
|
1471
1511
|
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
|
1472
1512
|
integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
|
1473
1513
|
|
1474
|
-
color-name@^1.0.0:
|
1514
|
+
color-name@^1.0.0, color-name@~1.1.4:
|
1475
1515
|
version "1.1.4"
|
1476
1516
|
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
|
1477
1517
|
integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
|
@@ -1896,6 +1936,11 @@ define-property@^2.0.2:
|
|
1896
1936
|
is-descriptor "^1.0.2"
|
1897
1937
|
isobject "^3.0.1"
|
1898
1938
|
|
1939
|
+
defined@^1.0.0:
|
1940
|
+
version "1.0.0"
|
1941
|
+
resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693"
|
1942
|
+
integrity sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=
|
1943
|
+
|
1899
1944
|
delayed-stream@~1.0.0:
|
1900
1945
|
version "1.0.0"
|
1901
1946
|
resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
|
@@ -1919,6 +1964,15 @@ destroy@~1.0.4:
|
|
1919
1964
|
resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
|
1920
1965
|
integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=
|
1921
1966
|
|
1967
|
+
detective@^5.2.0:
|
1968
|
+
version "5.2.0"
|
1969
|
+
resolved "https://registry.yarnpkg.com/detective/-/detective-5.2.0.tgz#feb2a77e85b904ecdea459ad897cc90a99bd2a7b"
|
1970
|
+
integrity sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg==
|
1971
|
+
dependencies:
|
1972
|
+
acorn-node "^1.6.1"
|
1973
|
+
defined "^1.0.0"
|
1974
|
+
minimist "^1.1.1"
|
1975
|
+
|
1922
1976
|
diffie-hellman@^5.0.0:
|
1923
1977
|
version "5.0.3"
|
1924
1978
|
resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875"
|
@@ -2011,9 +2065,9 @@ ee-first@1.1.1:
|
|
2011
2065
|
integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
|
2012
2066
|
|
2013
2067
|
electron-to-chromium@^1.3.322:
|
2014
|
-
version "1.3.
|
2015
|
-
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.
|
2016
|
-
integrity sha512-
|
2068
|
+
version "1.3.351"
|
2069
|
+
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.351.tgz#78bcf8e9092013232b2fb72b9db423d96e92604c"
|
2070
|
+
integrity sha512-L8zhV8k7Znp2q3wWXYDzCyfTBeGauEX0rX/FtgmnDgmvHRqwu9NVN614wOkXx9sDZmJZpNMBaEFMXTu/vbr+Kg==
|
2017
2071
|
|
2018
2072
|
elliptic@^6.0.0:
|
2019
2073
|
version "6.5.2"
|
@@ -2447,6 +2501,11 @@ has-flag@^3.0.0:
|
|
2447
2501
|
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
|
2448
2502
|
integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
|
2449
2503
|
|
2504
|
+
has-flag@^4.0.0:
|
2505
|
+
version "4.0.0"
|
2506
|
+
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
|
2507
|
+
integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
|
2508
|
+
|
2450
2509
|
has-symbols@^1.0.0, has-symbols@^1.0.1:
|
2451
2510
|
version "1.0.1"
|
2452
2511
|
resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8"
|
@@ -2903,11 +2962,6 @@ isstream@~0.1.2:
|
|
2903
2962
|
resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
|
2904
2963
|
integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=
|
2905
2964
|
|
2906
|
-
jquery@^3.4.1:
|
2907
|
-
version "3.4.1"
|
2908
|
-
resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.4.1.tgz#714f1f8d9dde4bdfa55764ba37ef214630d80ef2"
|
2909
|
-
integrity sha512-36+AdBzCL+y6qjw5Tx7HgzeGCzC81MDDgaUP8ld2zhx58HdqXGoBd+tHdrBMiyjGQs0Hxs/MLZTu/eHNJJuWPw==
|
2910
|
-
|
2911
2965
|
"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
|
2912
2966
|
version "4.0.0"
|
2913
2967
|
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
|
@@ -3096,7 +3150,7 @@ lodash.uniq@^4.5.0:
|
|
3096
3150
|
resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
|
3097
3151
|
integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=
|
3098
3152
|
|
3099
|
-
lodash@^4.17.
|
3153
|
+
lodash@^4.17.13, lodash@^4.17.15, lodash@^4.17.4:
|
3100
3154
|
version "4.17.15"
|
3101
3155
|
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
|
3102
3156
|
integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==
|
@@ -3231,7 +3285,7 @@ minimist@0.0.8:
|
|
3231
3285
|
resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
|
3232
3286
|
integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=
|
3233
3287
|
|
3234
|
-
minimist@^1.1.3, minimist@^1.2.0:
|
3288
|
+
minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0:
|
3235
3289
|
version "1.2.0"
|
3236
3290
|
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
|
3237
3291
|
integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=
|
@@ -3340,9 +3394,9 @@ node-libs-browser@^2.0.0:
|
|
3340
3394
|
vm-browserify "^1.0.1"
|
3341
3395
|
|
3342
3396
|
node-releases@^1.1.44:
|
3343
|
-
version "1.1.
|
3344
|
-
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.
|
3345
|
-
integrity sha512-
|
3397
|
+
version "1.1.49"
|
3398
|
+
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.49.tgz#67ba5a3fac2319262675ef864ed56798bb33b93e"
|
3399
|
+
integrity sha512-xH8t0LS0disN0mtRCh+eByxFPie+msJUBL/lJDBuap53QGiYPa9joh83K4pCZgWJ+2L4b9h88vCVdXQ60NO2bg==
|
3346
3400
|
dependencies:
|
3347
3401
|
semver "^6.3.0"
|
3348
3402
|
|
@@ -4078,7 +4132,7 @@ postcss@^6.0.1, postcss@^6.0.9:
|
|
4078
4132
|
source-map "^0.6.1"
|
4079
4133
|
supports-color "^5.4.0"
|
4080
4134
|
|
4081
|
-
postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.11, postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.18, postcss@^7.0.21, postcss@^7.0.
|
4135
|
+
postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.11, postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.18, postcss@^7.0.21, postcss@^7.0.26, postcss@^7.0.5:
|
4082
4136
|
version "7.0.26"
|
4083
4137
|
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.26.tgz#5ed615cfcab35ba9bbb82414a4fa88ea10429587"
|
4084
4138
|
integrity sha512-IY4oRjpXWYshuTDFxMVkJDtWIk2LhsTlu8bZnbEJA4+bYT16Lvpo8Qv6EvDumhYRgzjZl489pmsY3qVgJQ08nA==
|
@@ -4120,6 +4174,11 @@ prelude-ls@~1.1.2:
|
|
4120
4174
|
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
|
4121
4175
|
integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=
|
4122
4176
|
|
4177
|
+
prettier@1.19.1:
|
4178
|
+
version "1.19.1"
|
4179
|
+
resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb"
|
4180
|
+
integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==
|
4181
|
+
|
4123
4182
|
pretty-hrtime@^1.0.3:
|
4124
4183
|
version "1.0.3"
|
4125
4184
|
resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1"
|
@@ -4436,6 +4495,13 @@ resolve@^1.1.5, resolve@^1.3.2, resolve@^1.4.0:
|
|
4436
4495
|
dependencies:
|
4437
4496
|
path-parse "^1.0.6"
|
4438
4497
|
|
4498
|
+
resolve@^1.14.2:
|
4499
|
+
version "1.15.1"
|
4500
|
+
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.15.1.tgz#27bdcdeffeaf2d6244b95bb0f9f4b4653451f3e8"
|
4501
|
+
integrity sha512-84oo6ZTtoTUpjgNEr5SJyzQhzL72gaRodsSfyxC/AXRvwu0Yse9H8eF9IpGo7b8YetZhlI6v7ZQ6bKBFV/6S7w==
|
4502
|
+
dependencies:
|
4503
|
+
path-parse "^1.0.6"
|
4504
|
+
|
4439
4505
|
restore-cursor@^2.0.0:
|
4440
4506
|
version "2.0.0"
|
4441
4507
|
resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
|
@@ -4887,6 +4953,13 @@ supports-color@^6.1.0:
|
|
4887
4953
|
dependencies:
|
4888
4954
|
has-flag "^3.0.0"
|
4889
4955
|
|
4956
|
+
supports-color@^7.1.0:
|
4957
|
+
version "7.1.0"
|
4958
|
+
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1"
|
4959
|
+
integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==
|
4960
|
+
dependencies:
|
4961
|
+
has-flag "^4.0.0"
|
4962
|
+
|
4890
4963
|
svgo@^1.0.0, svgo@^1.3.2:
|
4891
4964
|
version "1.3.2"
|
4892
4965
|
resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.3.2.tgz#b6dc511c063346c9e415b81e43401145b96d4167"
|
@@ -4912,15 +4985,16 @@ symbol-tree@^3.2.2:
|
|
4912
4985
|
integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==
|
4913
4986
|
|
4914
4987
|
tailwindcss@^1.0.1:
|
4915
|
-
version "1.
|
4916
|
-
resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-1.
|
4917
|
-
integrity sha512-
|
4988
|
+
version "1.2.0"
|
4989
|
+
resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-1.2.0.tgz#5df317cebac4f3131f275d258a39da1ba3a0f291"
|
4990
|
+
integrity sha512-CKvY0ytB3ze5qvynG7qv4XSpQtFNGPbu9pUn8qFdkqgD8Yo/vGss8mhzbqls44YCXTl4G62p3qVZBj45qrd6FQ==
|
4918
4991
|
dependencies:
|
4919
4992
|
autoprefixer "^9.4.5"
|
4920
4993
|
bytes "^3.0.0"
|
4921
|
-
chalk "^
|
4994
|
+
chalk "^3.0.0"
|
4995
|
+
detective "^5.2.0"
|
4922
4996
|
fs-extra "^8.0.0"
|
4923
|
-
lodash "^4.17.
|
4997
|
+
lodash "^4.17.15"
|
4924
4998
|
node-emoji "^1.8.1"
|
4925
4999
|
normalize.css "^8.0.1"
|
4926
5000
|
postcss "^7.0.11"
|
@@ -4930,6 +5004,7 @@ tailwindcss@^1.0.1:
|
|
4930
5004
|
postcss-selector-parser "^6.0.0"
|
4931
5005
|
pretty-hrtime "^1.0.3"
|
4932
5006
|
reduce-css-calc "^2.1.6"
|
5007
|
+
resolve "^1.14.2"
|
4933
5008
|
|
4934
5009
|
terser@^3.7.3:
|
4935
5010
|
version "3.17.0"
|
@@ -5355,7 +5430,7 @@ xmlchars@^2.1.1:
|
|
5355
5430
|
resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb"
|
5356
5431
|
integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==
|
5357
5432
|
|
5358
|
-
xtend@^4.0.0, xtend@~4.0.1:
|
5433
|
+
xtend@^4.0.0, xtend@^4.0.2, xtend@~4.0.1:
|
5359
5434
|
version "4.0.2"
|
5360
5435
|
resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
|
5361
5436
|
integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
|