nodeskini 1.0.0
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.
- package/README.md +31 -0
- package/client/archive/bundle.js +11528 -0
- package/client/archive/golem.html +60 -0
- package/client/archive/golemClient.js +595 -0
- package/client/archive/golembundle.js +11634 -0
- package/client/archive/sequencer.html +43 -0
- package/client/archive/sequenceurClient.js +815 -0
- package/client/archive/stylegolem.css +158 -0
- package/client/archive/stylesequenceur.css +204 -0
- package/client/clientListe/Sortable-master/.circleci/config.yml +33 -0
- package/client/clientListe/Sortable-master/.editorconfig +15 -0
- package/client/clientListe/Sortable-master/.github/ISSUE_TEMPLATE/bug-report.md +73 -0
- package/client/clientListe/Sortable-master/.github/ISSUE_TEMPLATE/custom-template.md +48 -0
- package/client/clientListe/Sortable-master/.github/ISSUE_TEMPLATE/feature-request.md +41 -0
- package/client/clientListe/Sortable-master/.jshintrc +25 -0
- package/client/clientListe/Sortable-master/.testcaferc.json +7 -0
- package/client/clientListe/Sortable-master/CONTRIBUTING.md +26 -0
- package/client/clientListe/Sortable-master/LICENSE +21 -0
- package/client/clientListe/Sortable-master/README.md +813 -0
- package/client/clientListe/Sortable-master/Sortable.js +3709 -0
- package/client/clientListe/Sortable-master/Sortable.min.js +2 -0
- package/client/clientListe/Sortable-master/Sortable.min.old.js +2 -0
- package/client/clientListe/Sortable-master/Sortable.min.old.old.js +2 -0
- package/client/clientListe/Sortable-master/babel.config.js +27 -0
- package/client/clientListe/Sortable-master/bower.json +30 -0
- package/client/clientListe/Sortable-master/entry/entry-complete.js +8 -0
- package/client/clientListe/Sortable-master/entry/entry-core.js +19 -0
- package/client/clientListe/Sortable-master/entry/entry-defaults.js +19 -0
- package/client/clientListe/Sortable-master/index.html +460 -0
- package/client/clientListe/Sortable-master/modular/sortable.complete.esm.js +3701 -0
- package/client/clientListe/Sortable-master/modular/sortable.core.esm.js +3698 -0
- package/client/clientListe/Sortable-master/modular/sortable.esm.js +3699 -0
- package/client/clientListe/Sortable-master/package-lock.json +5704 -0
- package/client/clientListe/Sortable-master/package.json +56 -0
- package/client/clientListe/Sortable-master/plugins/AutoScroll/AutoScroll.js +270 -0
- package/client/clientListe/Sortable-master/plugins/AutoScroll/README.md +80 -0
- package/client/clientListe/Sortable-master/plugins/AutoScroll/index.js +1 -0
- package/client/clientListe/Sortable-master/plugins/MultiDrag/MultiDrag.js +617 -0
- package/client/clientListe/Sortable-master/plugins/MultiDrag/README.md +96 -0
- package/client/clientListe/Sortable-master/plugins/MultiDrag/index.js +1 -0
- package/client/clientListe/Sortable-master/plugins/OnSpill/OnSpill.js +79 -0
- package/client/clientListe/Sortable-master/plugins/OnSpill/README.md +60 -0
- package/client/clientListe/Sortable-master/plugins/OnSpill/index.js +1 -0
- package/client/clientListe/Sortable-master/plugins/README.md +178 -0
- package/client/clientListe/Sortable-master/plugins/Swap/README.md +55 -0
- package/client/clientListe/Sortable-master/plugins/Swap/Swap.js +90 -0
- package/client/clientListe/Sortable-master/plugins/Swap/index.js +1 -0
- package/client/clientListe/Sortable-master/scripts/banner.js +8 -0
- package/client/clientListe/Sortable-master/scripts/build.js +17 -0
- package/client/clientListe/Sortable-master/scripts/esm-build.js +28 -0
- package/client/clientListe/Sortable-master/scripts/minify.js +11 -0
- package/client/clientListe/Sortable-master/scripts/test-compat.js +30 -0
- package/client/clientListe/Sortable-master/scripts/test.js +21 -0
- package/client/clientListe/Sortable-master/scripts/umd-build.js +15 -0
- package/client/clientListe/Sortable-master/src/Animation.js +175 -0
- package/client/clientListe/Sortable-master/src/BrowserInfo.js +12 -0
- package/client/clientListe/Sortable-master/src/EventDispatcher.js +57 -0
- package/client/clientListe/Sortable-master/src/PluginManager.js +87 -0
- package/client/clientListe/Sortable-master/src/Sortable.js +1971 -0
- package/client/clientListe/Sortable-master/src/utils.js +556 -0
- package/client/clientListe/Sortable-master/st/app.js +224 -0
- package/client/clientListe/Sortable-master/st/iframe/frame.html +32 -0
- package/client/clientListe/Sortable-master/st/iframe/index.html +49 -0
- package/client/clientListe/Sortable-master/st/logo.png +0 -0
- package/client/clientListe/Sortable-master/st/og-image.png +0 -0
- package/client/clientListe/Sortable-master/st/prettify/prettify.css +1 -0
- package/client/clientListe/Sortable-master/st/prettify/prettify.js +46 -0
- package/client/clientListe/Sortable-master/st/prettify/run_prettify.js +64 -0
- package/client/clientListe/Sortable-master/st/saucelabs.svg +1 -0
- package/client/clientListe/Sortable-master/st/theme.css +254 -0
- package/client/clientListe/Sortable-master/tests/Sortable.compat.test.js +39 -0
- package/client/clientListe/Sortable-master/tests/Sortable.test.js +386 -0
- package/client/clientListe/Sortable-master/tests/dual-list.html +34 -0
- package/client/clientListe/Sortable-master/tests/empty-list.html +30 -0
- package/client/clientListe/Sortable-master/tests/filter.html +27 -0
- package/client/clientListe/Sortable-master/tests/handles.html +27 -0
- package/client/clientListe/Sortable-master/tests/nested.html +67 -0
- package/client/clientListe/Sortable-master/tests/single-list.html +25 -0
- package/client/clientListe/Sortable-master/tests/style.css +18 -0
- package/client/clientListe/clientListe.html +148 -0
- package/client/clientListe/clientListe.js +1508 -0
- package/client/clientListe/clientListebundle.js +13164 -0
- package/client/clientListe/images/poubelle.png +0 -0
- package/client/clientListe/images/start.png +0 -0
- package/client/clientListe/images/stop.png +0 -0
- package/client/clientListe/images/submit.png +0 -0
- package/client/clientListe/sortable-theme-bootstrap.css +90 -0
- package/client/configurateur/configReact.js +273 -0
- package/client/configurateur/configReactbundle.js +295 -0
- package/client/configurateur/configurateur.css +95 -0
- package/client/configurateur/configurateur.html +48 -0
- package/client/configurateur/lib/jexcel.css +755 -0
- package/client/configurateur/lib/jexcel.js +14970 -0
- package/client/configurateur/lib/jsuites.css +2801 -0
- package/client/configurateur/lib/jsuites.js +11822 -0
- package/client/configurateur/lib/react-dom.production.min.js +239 -0
- package/client/configurateur/lib/react.production.min.js +32 -0
- package/client/configurateur/src/configReact.js +247 -0
- package/client/controleur/clientcontroleur.js +536 -0
- package/client/controleur/clientcontroleur.test.js +282 -0
- package/client/controleur/controleur.html +51 -0
- package/client/controleur/controleurbundle.js +565 -0
- package/client/controleur/stylecontroleur.css +236 -0
- package/client/controleurHH/controleurHH.html +71 -0
- package/client/controleurHH/controleurHH.js +252 -0
- package/client/controleurHH/styles/index.css +320 -0
- package/client/controleurHH/styles/material.css +11552 -0
- package/client/parametrage/paramReact.js +473 -0
- package/client/parametrage/paramReactbundle.js +500 -0
- package/client/parametrage/parametrage.css +111 -0
- package/client/parametrage/parametrage.html +163 -0
- package/client/parametrage/src/paramReact.js +459 -0
- package/client/score/hash.js +83 -0
- package/client/score/p5.min.js +3 -0
- package/client/score/parto1.js +1171 -0
- package/client/score/parto1bundle.js +1181 -0
- package/client/score/processing.min.js +431 -0
- package/client/score/score.html +15 -0
- package/client/score/score.js +34 -0
- package/client/simulateurListe/simulateurFork.js +750 -0
- package/client/simulateurListe/simulateurFork.mjs +681 -0
- package/client/simulateurListe/simulateurForkSansReorg.js +569 -0
- package/client/simulateurListe/simulateurListe.js +628 -0
- package/myReact/archive/Nodeemitvaluedlocal1.hh.js +52 -0
- package/myReact/archive/abort-parNode.js +79 -0
- package/myReact/archive/abroNode.js +169 -0
- package/myReact/archive/abroNode2.js +80 -0
- package/myReact/archive/atom.compile.hh.js +51 -0
- package/myReact/archive/await-countNode.js +67 -0
- package/myReact/archive/await-nowvalNode.js +44 -0
- package/myReact/archive/callHH.js +96 -0
- package/myReact/archive/emit-if2.hh.compiled.js +113 -0
- package/myReact/archive/every1Node.js +35 -0
- package/myReact/archive/if-runNode.js +74 -0
- package/myReact/archive/if1Node.js +43 -0
- package/myReact/archive/makeawait.js +0 -0
- package/myReact/archive/myReact.old.js +684 -0
- package/myReact/archive/orchestration.js +281 -0
- package/myReact/archive/orchestration1.js +132 -0
- package/myReact/archive/orchestration1.xml +465 -0
- package/myReact/archive/orchestration2.js +161 -0
- package/myReact/archive/orchestrationHH.mano.js +280 -0
- package/myReact/archive/orchestrationHHTest.js +428 -0
- package/myReact/archive/orchestrationHHTest.xml +234 -0
- package/myReact/archive/orchestrationHHTestRun.js +104 -0
- package/myReact/archive/orchestrationHHTestRun.xml +34 -0
- package/myReact/archive/orchestrationTest0.js +178 -0
- package/myReact/archive/orchestrationTest1.js +181 -0
- package/myReact/archive/orchestrationTest2.js +281 -0
- package/myReact/archive/run3pointsNode.js +59 -0
- package/myReact/archive/runNode.js +123 -0
- package/myReact/archive/runNode2.js +91 -0
- package/myReact/archive/testAwait1.js +141 -0
- package/myReact/archive/testAwait1.xml +86 -0
- package/myReact/archive/testEvery1.js +122 -0
- package/myReact/archive/testEvery1.xml +79 -0
- package/myReact/archive/testHH1.js +135 -0
- package/myReact/archive/testHH1.xml +86 -0
- package/myReact/archive/testHH1revu.js +104 -0
- package/myReact/archive/testHH2.js +122 -0
- package/myReact/archive/testHH2.xml +79 -0
- package/myReact/archive/testHH3.js +130 -0
- package/myReact/archive/testHH3.xml +86 -0
- package/myReact/archive/testHHabort.js +121 -0
- package/myReact/archive/testHHabort.xml +83 -0
- package/myReact/archive/testMakeawait.js +202 -0
- package/myReact/archive/testRun1.js +168 -0
- package/myReact/archive/testRun1.xml +142 -0
- package/myReact/archive/titi.js +28 -0
- package/myReact/archive/titi.xml +110 -0
- package/myReact/archive/toto.js +73 -0
- package/myReact/archive/toto.xml +198 -0
- package/myReact/archive/trap-await-parallelNode.js +123 -0
- package/myReact/inutiles/hiver2022.xml +804 -0
- package/myReact/inutiles/hopeNode.xml +459 -0
- package/myReact/inutiles/mars2022.xml +871 -0
- package/myReact/inutiles/mystique1.xml +318 -0
- package/myReact/inutiles/mystiqueOSC.xml +277 -0
- package/myReact/inutiles/opus5Node.xml +1271 -0
- package/myReact/inutiles/opus5NodeLinux.xml +1241 -0
- package/myReact/inutiles/orchestrationHH.xml +541 -0
- package/myReact/inutiles/orchestrationHH2.xml +547 -0
- package/myReact/inutiles/testHH.xml +95 -0
- package/myReact/inutiles/trouveLaPercuTenor.xml +349 -0
- package/myReact/myReact.js +744 -0
- package/myReact/myReact.min.js +1 -0
- package/myReact/orchestrationHH.js +311 -0
- package/myReact/orchestrationHH.mjs +436 -0
- package/myReact/orchestrationHH.mjs.map +1 -0
- package/package.json +46 -0
- package/serveur/OSCandMidi.mjs +361 -0
- package/serveur/computeScore.mjs +415 -0
- package/serveur/controleDAW.mjs +1149 -0
- package/serveur/defaultSession.csv +2 -0
- package/serveur/defaultSkiniParametres.js +119 -0
- package/serveur/gameOSC.mjs +96 -0
- package/serveur/groupeClientsSons.mjs +1014 -0
- package/serveur/ipConfig.json +24 -0
- package/serveur/ipConfig127.json +19 -0
- package/serveur/ipConfig75.json +17 -0
- package/serveur/ipConfigBH.json +19 -0
- package/serveur/ipConfigLocal.json +19 -0
- package/serveur/midiConfig.json +26 -0
- package/serveur/midiConfigBH.json +26 -0
- package/serveur/midiConfigVoid.json +3 -0
- package/serveur/midimix.mjs +570 -0
- package/serveur/saveParam.mjs +159 -0
- package/serveur/skiniParametres.good.js +132 -0
- package/serveur/skiniParametres.js +106 -0
- package/serveur/utilsHHSkini.hh.js +64 -0
- package/serveur/utilsSkini.mjs +137 -0
- package/serveur/websocketServer.mjs +2052 -0
- package/serveur/workerInterfaceZ.mjs +327 -0
- package/serveur/workerSynchro.mjs +49 -0
- package/skini.mjs +141 -0
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
.button {
|
|
2
|
+
background-color: #4CAF50; /* Green */
|
|
3
|
+
border: 4px;
|
|
4
|
+
color: white;
|
|
5
|
+
margin: 2px;
|
|
6
|
+
// text-align: center;
|
|
7
|
+
text-decoration: none;
|
|
8
|
+
// display: inline-block;
|
|
9
|
+
font-size: 12px;
|
|
10
|
+
border-radius: 4px;
|
|
11
|
+
width:70px;
|
|
12
|
+
height:70px;
|
|
13
|
+
font-family: "Arial", Georgia, Serif;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.button:active {
|
|
17
|
+
background-color: #3e8e41;
|
|
18
|
+
box-shadow: 0 5px #666;
|
|
19
|
+
transform: translateY(4px);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.button1 {
|
|
23
|
+
background-color: #CF1919; /* red */
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.button2 {
|
|
27
|
+
background-color: #008CBA; /* Blue */
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.buttonListen {
|
|
31
|
+
background-color: #008CBA; /* Blue */
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.buttonStop {
|
|
35
|
+
background-color: #CF1919; /* Red */
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.button3 {
|
|
39
|
+
background-color: #666633; /* caca d'oie */
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.buttonPseudo {
|
|
43
|
+
background-color: #4CAF50; /* Green */
|
|
44
|
+
width:250px;
|
|
45
|
+
height:55px;
|
|
46
|
+
font-size: 24px;
|
|
47
|
+
font-family: "Arial", Georgia, Serif;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.wrapper {
|
|
51
|
+
text-align: center;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
body {
|
|
55
|
+
margin: 0 auto;
|
|
56
|
+
background-color: #222;
|
|
57
|
+
padding: 0 20px 20px 20px;
|
|
58
|
+
font-family: "Arial", Georgia, Serif;
|
|
59
|
+
/* border: 5px solid #111; */
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
body.inplay {
|
|
63
|
+
background-color: #e8dfdf;
|
|
64
|
+
transition: none;
|
|
65
|
+
color: white;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
body.black-again {
|
|
69
|
+
background-color: #222;
|
|
70
|
+
transition: 2s all;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
#monPseudo {
|
|
74
|
+
border-radius: 4px;
|
|
75
|
+
text-align: center;
|
|
76
|
+
width:250px;
|
|
77
|
+
height:50px;
|
|
78
|
+
font-size: 24px;
|
|
79
|
+
font-family: "Arial", Georgia, Serif;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.text-spectacle {
|
|
83
|
+
font-size: 24px;
|
|
84
|
+
color: white;
|
|
85
|
+
font-family: "Arial", Georgia, Serif;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.info-spectateur {
|
|
89
|
+
font-size: 24px;
|
|
90
|
+
text-align: center;
|
|
91
|
+
color: white;
|
|
92
|
+
font-family: "Arial", Georgia, Serif;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.progressBar {
|
|
96
|
+
width: 250px;
|
|
97
|
+
height:25px;
|
|
98
|
+
//margin: 1em auto;
|
|
99
|
+
padding: 4px;
|
|
100
|
+
//border: 0 none;
|
|
101
|
+
border-radius: 14px;
|
|
102
|
+
//box-shadow: inset 0px 1px 1px
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
select{
|
|
106
|
+
width:250px;
|
|
107
|
+
font-size: 20px;
|
|
108
|
+
background-color: #464545;
|
|
109
|
+
color: white;
|
|
110
|
+
border: 4px;
|
|
111
|
+
margin: 2px;
|
|
112
|
+
text-align: center;
|
|
113
|
+
font-family: "Arial", Georgia, Serif;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
em {
|
|
117
|
+
font-style: normal;
|
|
118
|
+
color: white;
|
|
119
|
+
font-size: 20px;
|
|
120
|
+
font-family: "Arial", Georgia, Serif;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.sonChoisi {
|
|
124
|
+
font-style: normal;
|
|
125
|
+
color: white;
|
|
126
|
+
font-size: 20px;
|
|
127
|
+
font-family: "Arial", Georgia, Serif;
|
|
128
|
+
text-align: center;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.wrapButtons {
|
|
132
|
+
text-align: center;
|
|
133
|
+
overflow-y: scroll;
|
|
134
|
+
//width:300px;
|
|
135
|
+
height: 200px;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.boutonsSons {
|
|
139
|
+
width:308px;
|
|
140
|
+
font-size: 20px;
|
|
141
|
+
background-color: #464545;
|
|
142
|
+
color: white;
|
|
143
|
+
border: 4px;
|
|
144
|
+
text-align: center;
|
|
145
|
+
font-family: "Arial", Georgia, Serif;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.boutonsSons1 {
|
|
149
|
+
background-color: #797bbf;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.boutonsSons2 {
|
|
153
|
+
background-color: #4CAF50;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.boutonsSons3 {
|
|
157
|
+
background-color: #666633;
|
|
158
|
+
}
|
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
.button {
|
|
2
|
+
background-color: #4CAF50; /* Green */
|
|
3
|
+
border: 4px;
|
|
4
|
+
color: white;
|
|
5
|
+
margin: 2px;
|
|
6
|
+
// text-align: center;
|
|
7
|
+
text-decoration: none;
|
|
8
|
+
// display: inline-block;
|
|
9
|
+
font-size: 12px;
|
|
10
|
+
border-radius: 4px;
|
|
11
|
+
width:70px;
|
|
12
|
+
height:70px;
|
|
13
|
+
font-family: "Arial", Georgia, Serif;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.boutonsCommande {
|
|
17
|
+
text-align: center;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.texteNote {
|
|
21
|
+
//background-color: #ffffff; /* blanc */
|
|
22
|
+
color: white;
|
|
23
|
+
font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.listBoutonsPad {
|
|
27
|
+
white-space: nowrap;
|
|
28
|
+
//text-align: center;
|
|
29
|
+
overflow: auto;
|
|
30
|
+
width:1200px;
|
|
31
|
+
height: 400px;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.padBouton {
|
|
35
|
+
background-color: #636f64; /* gris léger */
|
|
36
|
+
border: 4px;
|
|
37
|
+
color: white;
|
|
38
|
+
margin: 2px;
|
|
39
|
+
text-decoration: none;
|
|
40
|
+
font-size: 12px;
|
|
41
|
+
border-radius: 4px;
|
|
42
|
+
width:60px;
|
|
43
|
+
height:60px;
|
|
44
|
+
font-family: "Arial", Georgia, Serif;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.padBoutonVert {
|
|
48
|
+
background-color: #4CAF50; /* vert */
|
|
49
|
+
border: 4px;
|
|
50
|
+
color: white;
|
|
51
|
+
margin: 2px;
|
|
52
|
+
text-decoration: none;
|
|
53
|
+
font-size: 12px;
|
|
54
|
+
border-radius: 4px;
|
|
55
|
+
width:60px;
|
|
56
|
+
height:60px;
|
|
57
|
+
font-family: "Arial", Georgia, Serif;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.padBoutonBleu {
|
|
61
|
+
background-color: #008CBA;
|
|
62
|
+
border: 4px;
|
|
63
|
+
color: white;
|
|
64
|
+
margin: 2px;
|
|
65
|
+
text-decoration: none;
|
|
66
|
+
font-size: 12px;
|
|
67
|
+
border-radius: 4px;
|
|
68
|
+
width:60px;
|
|
69
|
+
height:60px;
|
|
70
|
+
font-family: "Arial", Georgia, Serif;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
.wrapButtons {
|
|
75
|
+
text-align: center;
|
|
76
|
+
overflow: auto;
|
|
77
|
+
//width:1200px;
|
|
78
|
+
height: 400px;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.boutonsSons {
|
|
82
|
+
width:308px;
|
|
83
|
+
font-size: 20px;
|
|
84
|
+
background-color: #464545;
|
|
85
|
+
color: white;
|
|
86
|
+
border: 4px;
|
|
87
|
+
text-align: center;
|
|
88
|
+
font-family: "Arial", Georgia, Serif;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.boutonsResolution {
|
|
92
|
+
background-color: #797bbf;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
.boutonsSons1 {
|
|
98
|
+
background-color: #797bbf;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.boutonsSons2 {
|
|
102
|
+
background-color: #4CAF50;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.boutonsSons3 {
|
|
106
|
+
background-color: #666633;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.button:active {
|
|
110
|
+
background-color: #3e8e41;
|
|
111
|
+
box-shadow: 0 5px #666;
|
|
112
|
+
transform: translateY(4px);
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.button1 {
|
|
116
|
+
background-color: #CF1919; /* red */
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.button2 {
|
|
120
|
+
background-color: #008CBA; /* Blue */
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.buttonListen {
|
|
124
|
+
background-color: #008CBA; /* Blue */
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.buttonStop {
|
|
128
|
+
background-color: #CF1919; /* Red */
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.button3 {
|
|
132
|
+
background-color: #666633; /* caca d'oie */
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.buttonPseudo {
|
|
136
|
+
background-color: #4CAF50; /* Green */
|
|
137
|
+
width:250px;
|
|
138
|
+
height:55px;
|
|
139
|
+
font-size: 24px;
|
|
140
|
+
font-family: "Arial", Georgia, Serif;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.wrapper {
|
|
144
|
+
text-align: center;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
body {
|
|
148
|
+
margin: 0 auto;
|
|
149
|
+
background-color: #222;
|
|
150
|
+
padding: 0 20px 20px 20px;
|
|
151
|
+
font-family: "Arial", Georgia, Serif;
|
|
152
|
+
/* border: 5px solid #111; */
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
body.inplay {
|
|
156
|
+
background-color: #e8dfdf;
|
|
157
|
+
transition: none;
|
|
158
|
+
color: white;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
body.black-again {
|
|
162
|
+
background-color: #222;
|
|
163
|
+
transition: 2s all;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
#monPseudo {
|
|
167
|
+
border-radius: 4px;
|
|
168
|
+
text-align: center;
|
|
169
|
+
width:250px;
|
|
170
|
+
height:50px;
|
|
171
|
+
font-size: 24px;
|
|
172
|
+
font-family: "Arial", Georgia, Serif;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.text-spectacle {
|
|
176
|
+
font-size: 24px;
|
|
177
|
+
color: white;
|
|
178
|
+
font-family: "Arial", Georgia, Serif;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.info-spectateur {
|
|
182
|
+
font-size: 24px;
|
|
183
|
+
text-align: center;
|
|
184
|
+
color: white;
|
|
185
|
+
font-family: "Arial", Georgia, Serif;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
.em {
|
|
190
|
+
font-style: normal;
|
|
191
|
+
color: white;
|
|
192
|
+
font-size: 20px;
|
|
193
|
+
font-family: "Arial", Georgia, Serif;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.sonChoisi {
|
|
197
|
+
font-style: normal;
|
|
198
|
+
color: white;
|
|
199
|
+
font-size: 20px;
|
|
200
|
+
font-family: "Arial", Georgia, Serif;
|
|
201
|
+
text-align: center;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
version: 2.0
|
|
2
|
+
jobs:
|
|
3
|
+
build:
|
|
4
|
+
docker:
|
|
5
|
+
- image: circleci/node:10.16-browsers
|
|
6
|
+
steps:
|
|
7
|
+
- checkout
|
|
8
|
+
|
|
9
|
+
- restore_cache:
|
|
10
|
+
keys:
|
|
11
|
+
- v1-dependencies-{{ checksum "package.json" }}
|
|
12
|
+
- v1-dependencies-
|
|
13
|
+
|
|
14
|
+
- run: npm install
|
|
15
|
+
|
|
16
|
+
- save_cache:
|
|
17
|
+
paths:
|
|
18
|
+
- node_modules
|
|
19
|
+
key: v1-dependencies-{{ checksum "package.json" }}
|
|
20
|
+
|
|
21
|
+
- run: npm run build:umd
|
|
22
|
+
|
|
23
|
+
- run:
|
|
24
|
+
name: Compatibility Test
|
|
25
|
+
command: |
|
|
26
|
+
if [ -z "$CIRCLE_PR_NUMBER" ];
|
|
27
|
+
then
|
|
28
|
+
npm run test:compat
|
|
29
|
+
fi
|
|
30
|
+
- run: npm run test
|
|
31
|
+
|
|
32
|
+
- store_test_results:
|
|
33
|
+
path: /tmp/test-results
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Bug report
|
|
3
|
+
about: Create a report to help us improve
|
|
4
|
+
title: "[bug] "
|
|
5
|
+
labels: ""
|
|
6
|
+
assignees: ""
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!--
|
|
10
|
+
|
|
11
|
+
PLEASE READ BEFORE POSTING YOUR ISSUE!
|
|
12
|
+
|
|
13
|
+
If your issue is related to a framework or @types/sortablejs,
|
|
14
|
+
please post an issue on it's relevant repository instead:
|
|
15
|
+
|
|
16
|
+
- Angular
|
|
17
|
+
- 2.0+: https://github.com/SortableJS/angular-sortablejs/issues
|
|
18
|
+
- legacy: https://github.com/SortableJS/angular-legacy-sortablejs/issues
|
|
19
|
+
- React
|
|
20
|
+
- ES2015+: https://github.com/SortableJS/react-sortablejs/issues
|
|
21
|
+
- mixin: https://github.com/SortableJS/react-mixin-sortablejs/issues
|
|
22
|
+
- Polymer: https://github.com/SortableJS/polymer-sortablejs/issues
|
|
23
|
+
- Knockout: https://github.com/SortableJS/knockout-sortablejs/issues
|
|
24
|
+
- Meteor: https://github.com/SortableJS/meteor-sortablejs/issues
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
If it is a bug found from using one of these, please link to the related issue.
|
|
28
|
+
|
|
29
|
+
-->
|
|
30
|
+
|
|
31
|
+
**Describe the bug**
|
|
32
|
+
|
|
33
|
+
<!-- A clear and concise description of what the bug is. -->
|
|
34
|
+
|
|
35
|
+
**To Reproduce**
|
|
36
|
+
Steps to reproduce the behavior:
|
|
37
|
+
|
|
38
|
+
1. Go to '...'
|
|
39
|
+
2. Click on '....'
|
|
40
|
+
3. Scroll down to '....'
|
|
41
|
+
4. See error
|
|
42
|
+
|
|
43
|
+
**Expected behavior**
|
|
44
|
+
|
|
45
|
+
<!-- A clear and concise description of what you expected to happen. -->
|
|
46
|
+
|
|
47
|
+
**Information**
|
|
48
|
+
|
|
49
|
+
<!-- This is required. Issues without this critical information will be closed. -->
|
|
50
|
+
|
|
51
|
+
Versions - Look in your `package.json` for this information:
|
|
52
|
+
sortablejs = ^x.x.x
|
|
53
|
+
@types/sortablejs = ^x.x.x
|
|
54
|
+
|
|
55
|
+
**Additional context**
|
|
56
|
+
Add any other context about the problem here.
|
|
57
|
+
|
|
58
|
+
**Reproduction**
|
|
59
|
+
codesandbox: <your_url_here>
|
|
60
|
+
|
|
61
|
+
<!--
|
|
62
|
+
|
|
63
|
+
Providing a codesandbox really helps us understand your issue.
|
|
64
|
+
Bugs with codesandboxes attached are likely to be resolved more quickly than others.
|
|
65
|
+
|
|
66
|
+
Once you've created a public codesandbox, please paste a link in here
|
|
67
|
+
|
|
68
|
+
Here are some templates to get you started.
|
|
69
|
+
|
|
70
|
+
- Javascript: https://codesandbox.io/s/sortablejs-javascript-jy3tl?file=/src/index.js
|
|
71
|
+
- Typescript: https://codesandbox.io/s/sortablejs-typescript-6it9n?file=/src/index.ts
|
|
72
|
+
|
|
73
|
+
-->
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Custom issue template
|
|
3
|
+
about: Not a feature request or a bug report. Usually questions, queries or concerns
|
|
4
|
+
title: ""
|
|
5
|
+
labels: ""
|
|
6
|
+
assignees: ""
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
**Custom**
|
|
10
|
+
|
|
11
|
+
<!--
|
|
12
|
+
|
|
13
|
+
PLEASE READ BEFORE POSTING YOUR ISSUE!
|
|
14
|
+
|
|
15
|
+
If your issue is related to a framework or @types/sortablejs,
|
|
16
|
+
please post an issue on it's relevant repository instead:
|
|
17
|
+
|
|
18
|
+
- Angular
|
|
19
|
+
- 2.0+: https://github.com/SortableJS/angular-sortablejs/issues
|
|
20
|
+
- legacy: https://github.com/SortableJS/angular-legacy-sortablejs/issues
|
|
21
|
+
- React
|
|
22
|
+
- ES2015+: https://github.com/SortableJS/react-sortablejs/issues
|
|
23
|
+
- mixin: https://github.com/SortableJS/react-mixin-sortablejs/issues
|
|
24
|
+
- Polymer: https://github.com/SortableJS/polymer-sortablejs/issues
|
|
25
|
+
- Knockout: https://github.com/SortableJS/knockout-sortablejs/issues
|
|
26
|
+
- Meteor: https://github.com/SortableJS/meteor-sortablejs/issues
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
If it is a bug found from using one of these, please link to the related issue.
|
|
30
|
+
|
|
31
|
+
-->
|
|
32
|
+
|
|
33
|
+
**Reproduction**
|
|
34
|
+
codesandbox: <your_url_here>
|
|
35
|
+
|
|
36
|
+
<!--
|
|
37
|
+
|
|
38
|
+
Providing a codesandbox really helps us understand your issue.
|
|
39
|
+
Bugs with codesandboxes attached are likely to be resolved more quickly than others.
|
|
40
|
+
|
|
41
|
+
Once you've created a public codesandbox, please paste a link in here
|
|
42
|
+
|
|
43
|
+
Here are some templates to get you started.
|
|
44
|
+
|
|
45
|
+
- Javascript: https://codesandbox.io/s/sortablejs-javascript-jy3tl?file=/src/index.js
|
|
46
|
+
- Typescript: https://codesandbox.io/s/sortablejs-typescript-6it9n?file=/src/index.ts
|
|
47
|
+
|
|
48
|
+
-->
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Feature request
|
|
3
|
+
about: Suggest an idea for this project
|
|
4
|
+
title: "[feature] "
|
|
5
|
+
labels: ""
|
|
6
|
+
assignees: ""
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!--
|
|
10
|
+
|
|
11
|
+
PLEASE READ BEFORE POSTING YOUR ISSUE!
|
|
12
|
+
|
|
13
|
+
If your issue is related to a framework or @types/sortablejs,
|
|
14
|
+
please post an issue on it's relevant repository instead:
|
|
15
|
+
|
|
16
|
+
- Angular
|
|
17
|
+
- 2.0+: https://github.com/SortableJS/angular-sortablejs/issues
|
|
18
|
+
- legacy: https://github.com/SortableJS/angular-legacy-sortablejs/issues
|
|
19
|
+
- React
|
|
20
|
+
- ES2015+: https://github.com/SortableJS/react-sortablejs/issues
|
|
21
|
+
- mixin: https://github.com/SortableJS/react-mixin-sortablejs/issues
|
|
22
|
+
- Polymer: https://github.com/SortableJS/polymer-sortablejs/issues
|
|
23
|
+
- Knockout: https://github.com/SortableJS/knockout-sortablejs/issues
|
|
24
|
+
- Meteor: https://github.com/SortableJS/meteor-sortablejs/issues
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
If it is a bug found from using one of these, please link to the related issue.
|
|
28
|
+
|
|
29
|
+
-->
|
|
30
|
+
|
|
31
|
+
**Is your feature request related to a problem? Please describe.**
|
|
32
|
+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
|
33
|
+
|
|
34
|
+
**Describe the solution you'd like**
|
|
35
|
+
A clear and concise description of what you want to happen.
|
|
36
|
+
|
|
37
|
+
**Describe alternatives you've considered**
|
|
38
|
+
A clear and concise description of any alternative solutions or features you've considered.
|
|
39
|
+
|
|
40
|
+
**Additional context**
|
|
41
|
+
Add any other context or screenshots about the feature request here.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"strict": false,
|
|
3
|
+
"newcap": false,
|
|
4
|
+
"node": true,
|
|
5
|
+
"expr": true,
|
|
6
|
+
"supernew": true,
|
|
7
|
+
"laxbreak": true,
|
|
8
|
+
"esversion": 9,
|
|
9
|
+
"white": true,
|
|
10
|
+
"globals": {
|
|
11
|
+
"define": true,
|
|
12
|
+
"test": true,
|
|
13
|
+
"expect": true,
|
|
14
|
+
"module": true,
|
|
15
|
+
"asyncTest": true,
|
|
16
|
+
"start": true,
|
|
17
|
+
"ok": true,
|
|
18
|
+
"equal": true,
|
|
19
|
+
"notEqual": true,
|
|
20
|
+
"deepEqual": true,
|
|
21
|
+
"window": true,
|
|
22
|
+
"document": true,
|
|
23
|
+
"performance": true
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Contribution Guidelines
|
|
2
|
+
|
|
3
|
+
### Issue
|
|
4
|
+
|
|
5
|
+
1. Try [master](https://github.com/SortableJS/Sortable/tree/master/)-branch, perhaps the problem has been solved;
|
|
6
|
+
2. [Use the search](https://github.com/SortableJS/Sortable/search?type=Issues&q=problem), maybe already have an answer;
|
|
7
|
+
3. If not found, create example on [jsbin.com (draft)](https://jsbin.com/kamiwez/edit?html,js,output) and describe the problem.
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
### Pull Request
|
|
12
|
+
|
|
13
|
+
1. Only request to merge with the [master](https://github.com/SortableJS/Sortable/tree/master/)-branch.
|
|
14
|
+
2. Only modify source files, **do not commit the resulting build**
|
|
15
|
+
|
|
16
|
+
### Setup
|
|
17
|
+
|
|
18
|
+
1. Fork the repo on [github](https://github.com)
|
|
19
|
+
2. Clone locally
|
|
20
|
+
3. Run `npm i` in the local repo
|
|
21
|
+
|
|
22
|
+
### Building
|
|
23
|
+
|
|
24
|
+
- For development, build the `./Sortable.js` file using the command `npm run build:umd:watch`
|
|
25
|
+
- To build everything and minify it, run `npm run build`
|
|
26
|
+
- Do not commit the resulting builds in any pull request – they will be generated at release
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2019 All contributors to Sortable
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|