odoro 1.0.8 → 1.0.9
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/dist/cli.js
CHANGED
|
@@ -131,7 +131,7 @@ function rootFrom(flags, positional) {
|
|
|
131
131
|
async function run(argv) {
|
|
132
132
|
const { command, positional, flags } = parseArgs(argv);
|
|
133
133
|
if (flags["version"] === true) {
|
|
134
|
-
const manifest = await import('./package-
|
|
134
|
+
const manifest = await import('./package-EIDLKAA6.js');
|
|
135
135
|
console.log(manifest.default.version);
|
|
136
136
|
return 0;
|
|
137
137
|
}
|
|
@@ -142,7 +142,7 @@ async function run(argv) {
|
|
|
142
142
|
switch (command) {
|
|
143
143
|
case "create":
|
|
144
144
|
case "new": {
|
|
145
|
-
const { createCommand } = await import('./create-
|
|
145
|
+
const { createCommand } = await import('./create-CYVSVDAD.js');
|
|
146
146
|
const options = {};
|
|
147
147
|
if (positional[0] !== void 0) options.name = positional[0];
|
|
148
148
|
if (typeof flags["template"] === "string") options.template = flags["template"];
|
|
@@ -148,8 +148,8 @@ var VERSIONS_FAMILLE = {
|
|
|
148
148
|
"@odoro-cli/icons": "1.0.2",
|
|
149
149
|
"@odoro-cli/libs": "1.0.2",
|
|
150
150
|
"@odoro-cli/server": "1.0.2",
|
|
151
|
-
"create-odoro": "1.0.
|
|
152
|
-
"odoro": "1.0.
|
|
151
|
+
"create-odoro": "1.0.9",
|
|
152
|
+
"odoro": "1.0.9"
|
|
153
153
|
};
|
|
154
154
|
|
|
155
155
|
// src/scaffold/scaffold.ts
|
package/package.json
CHANGED
|
@@ -11,6 +11,16 @@
|
|
|
11
11
|
* divergeraient au premier changement de texte. `App.tsx` place `<Fond />` et
|
|
12
12
|
* n'en demande pas plus.
|
|
13
13
|
*
|
|
14
|
+
* ## Pourquoi les tailles sont en style
|
|
15
|
+
*
|
|
16
|
+
* Le systeme de style **n'emet pas de classe a valeur arbitraire** : `o-h-[42rem]`
|
|
17
|
+
* ne produit aucune regle, et une classe absente ne peint rien. Le conteneur se
|
|
18
|
+
* retrouvait haut de zero pixel, les deux nappes aussi, et le fond ne se voyait
|
|
19
|
+
* pas — sans que rien ne le signale.
|
|
20
|
+
*
|
|
21
|
+
* Les utilitaires couvrent les valeurs de l'echelle ; tout ce qui sort de
|
|
22
|
+
* l'echelle s'ecrit en style, ou il est sur.
|
|
23
|
+
*
|
|
14
24
|
* @module
|
|
15
25
|
*/
|
|
16
26
|
|
|
@@ -21,18 +31,32 @@ export function Fond(): ReactElement {
|
|
|
21
31
|
return (
|
|
22
32
|
<div
|
|
23
33
|
aria-hidden="true"
|
|
24
|
-
className="o-pointer-events-none o-absolute o-inset-x-0 o-top-0 o-
|
|
34
|
+
className="o-pointer-events-none o-absolute o-inset-x-0 o-top-0 o-overflow-hidden"
|
|
35
|
+
style={{ height: '42rem' }}
|
|
25
36
|
>
|
|
26
37
|
<div
|
|
27
|
-
className="o-absolute o-
|
|
38
|
+
className="o-absolute o-rounded-full"
|
|
28
39
|
style={{
|
|
40
|
+
left: '50%',
|
|
41
|
+
top: '-18rem',
|
|
42
|
+
width: '46rem',
|
|
43
|
+
height: '46rem',
|
|
44
|
+
transform: 'translateX(-50%)',
|
|
45
|
+
filter: 'blur(64px)',
|
|
46
|
+
opacity: 0.3,
|
|
29
47
|
background:
|
|
30
48
|
'radial-gradient(closest-side, var(--o-palette-brand-500), transparent)',
|
|
31
49
|
}}
|
|
32
50
|
/>
|
|
33
51
|
<div
|
|
34
|
-
className="o-absolute o-
|
|
52
|
+
className="o-absolute o-rounded-full"
|
|
35
53
|
style={{
|
|
54
|
+
right: '-10rem',
|
|
55
|
+
top: '6rem',
|
|
56
|
+
width: '30rem',
|
|
57
|
+
height: '30rem',
|
|
58
|
+
filter: 'blur(64px)',
|
|
59
|
+
opacity: 0.18,
|
|
36
60
|
background:
|
|
37
61
|
'radial-gradient(closest-side, var(--o-palette-brand-400), transparent)',
|
|
38
62
|
}}
|
|
@@ -11,6 +11,16 @@
|
|
|
11
11
|
* divergeraient au premier changement de texte. `App.tsx` place `<Fond />` et
|
|
12
12
|
* n'en demande pas plus.
|
|
13
13
|
*
|
|
14
|
+
* ## Pourquoi les tailles sont en style
|
|
15
|
+
*
|
|
16
|
+
* Le systeme de style **n'emet pas de classe a valeur arbitraire** : `o-h-[42rem]`
|
|
17
|
+
* ne produit aucune regle, et une classe absente ne peint rien. Le conteneur se
|
|
18
|
+
* retrouvait haut de zero pixel, les deux nappes aussi, et le fond ne se voyait
|
|
19
|
+
* pas — sans que rien ne le signale.
|
|
20
|
+
*
|
|
21
|
+
* Les utilitaires couvrent les valeurs de l'echelle ; tout ce qui sort de
|
|
22
|
+
* l'echelle s'ecrit en style, ou il est sur.
|
|
23
|
+
*
|
|
14
24
|
* @module
|
|
15
25
|
*/
|
|
16
26
|
|
|
@@ -21,18 +31,32 @@ export function Fond(): ReactElement {
|
|
|
21
31
|
return (
|
|
22
32
|
<div
|
|
23
33
|
aria-hidden="true"
|
|
24
|
-
className="o-pointer-events-none o-absolute o-inset-x-0 o-top-0 o-
|
|
34
|
+
className="o-pointer-events-none o-absolute o-inset-x-0 o-top-0 o-overflow-hidden"
|
|
35
|
+
style={{ height: '42rem' }}
|
|
25
36
|
>
|
|
26
37
|
<div
|
|
27
|
-
className="o-absolute o-
|
|
38
|
+
className="o-absolute o-rounded-full"
|
|
28
39
|
style={{
|
|
40
|
+
left: '50%',
|
|
41
|
+
top: '-18rem',
|
|
42
|
+
width: '46rem',
|
|
43
|
+
height: '46rem',
|
|
44
|
+
transform: 'translateX(-50%)',
|
|
45
|
+
filter: 'blur(64px)',
|
|
46
|
+
opacity: 0.3,
|
|
29
47
|
background:
|
|
30
48
|
'radial-gradient(closest-side, var(--o-palette-brand-500), transparent)',
|
|
31
49
|
}}
|
|
32
50
|
/>
|
|
33
51
|
<div
|
|
34
|
-
className="o-absolute o-
|
|
52
|
+
className="o-absolute o-rounded-full"
|
|
35
53
|
style={{
|
|
54
|
+
right: '-10rem',
|
|
55
|
+
top: '6rem',
|
|
56
|
+
width: '30rem',
|
|
57
|
+
height: '30rem',
|
|
58
|
+
filter: 'blur(64px)',
|
|
59
|
+
opacity: 0.18,
|
|
36
60
|
background:
|
|
37
61
|
'radial-gradient(closest-side, var(--o-palette-brand-400), transparent)',
|
|
38
62
|
}}
|