@amoa/casting 0.1.6 → 0.1.8
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/export/index.js +1 -0
- package/dist/export/index.js.map +1 -0
- package/dist/form/buttons/index.js +1 -0
- package/dist/form/buttons/index.js.map +1 -0
- package/dist/form/buttons/index.module.css.js +1 -0
- package/dist/form/buttons/index.module.css.js.map +1 -0
- package/dist/form/caption/index.js +1 -0
- package/dist/form/caption/index.js.map +1 -0
- package/dist/form/caption/index.module.css.js +1 -0
- package/dist/form/caption/index.module.css.js.map +1 -0
- package/dist/form/description/index.js +1 -0
- package/dist/form/description/index.js.map +1 -0
- package/dist/form/description/index.module.css.js +1 -0
- package/dist/form/description/index.module.css.js.map +1 -0
- package/dist/form/email/index.js +1 -0
- package/dist/form/email/index.js.map +1 -0
- package/dist/form/index.js +1 -0
- package/dist/form/index.js.map +1 -0
- package/dist/form/index.module.css.js +1 -0
- package/dist/form/index.module.css.js.map +1 -0
- package/dist/form/inputs/index.js +1 -0
- package/dist/form/inputs/index.js.map +1 -0
- package/dist/form/inputs/index.module.css.js +1 -0
- package/dist/form/inputs/index.module.css.js.map +1 -0
- package/dist/form/password/index.js +1 -0
- package/dist/form/password/index.js.map +1 -0
- package/dist/index.css +1 -94
- package/dist/styles.css +1 -0
- package/dist/waiter/index.js +1 -0
- package/dist/waiter/index.js.map +1 -0
- package/dist/waiter/index.module.css.js +1 -0
- package/dist/waiter/index.module.css.js.map +1 -0
- package/package.json +4 -4
package/dist/export/index.js
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../src/export/index.js"],"sourcesContent":["import * as React from \"react\";\n\nimport * as Icons from \"@amoa/runes\";\nimport * as Files from \"@amoa/forge/files\";\n\nimport * as Snackbar from \"@amoa/ingots/snackbar/context\";\nimport Button from \"@amoa/ingots/button\";\n\nconst feedback = {\n ongoing: { sticky: true, description: \"Votre fichier est en cours de génération…\" },\n error: { variant: \"error\", description: \"Votre fichier n’a pas pu être généré\" }\n};\n\nconst Export = ({ onExport, title }) => {\n const [loading, setLoading] = React.useState(false);\n const { setSnackbar } = Snackbar.useContext();\n\n const onClick = async () => {\n setLoading(true);\n setSnackbar(feedback.ongoing);\n const file = await onExport();\n setLoading(false);\n if (!file) return setSnackbar(feedback.error);\n Files.extract(file, title);\n setSnackbar();\n };\n\n return (\n <Button icon={Icons.Link} onClick={onClick} variant=\"secondary\" color=\"blue\" disabled={loading} small>\n Exporter en pdf\n </Button>\n );\n};\n\nexport default Export;\n"],"names":["feedback","ongoing","sticky","description","error","variant","Export","onExport","title","loading","setLoading","React","useState","setSnackbar","Snackbar","useContext","onClick","file","Files","extract","_jsx","Button","icon","Icons","Link","color","disabled","small","children"],"mappings":";;;;;;;AAQA,MAAMA,QAAQ,GAAG;AACfC,EAAAA,OAAO,EAAE;AAAEC,IAAAA,MAAM,EAAE,IAAI;AAAEC,IAAAA,WAAW,EAAE;GAA6C;AACnFC,EAAAA,KAAK,EAAE;AAAEC,IAAAA,OAAO,EAAE,OAAO;AAAEF,IAAAA,WAAW,EAAE;AAAuC;AACjF,CAAC;AAED,MAAMG,MAAM,GAAGA,CAAC;EAAEC,QAAQ;AAAEC,EAAAA;AAAM,CAAC,KAAK;EACtC,MAAM,CAACC,OAAO,EAAEC,UAAU,CAAC,GAAGC,KAAK,CAACC,QAAQ,CAAC,KAAK,CAAC;EACnD,MAAM;AAAEC,IAAAA;AAAY,GAAC,GAAGC,QAAQ,CAACC,UAAU,EAAE;AAE7C,EAAA,MAAMC,OAAO,GAAG,YAAY;IAC1BN,UAAU,CAAC,IAAI,CAAC;AAChBG,IAAAA,WAAW,CAACb,QAAQ,CAACC,OAAO,CAAC;AAC7B,IAAA,MAAMgB,IAAI,GAAG,MAAMV,QAAQ,EAAE;IAC7BG,UAAU,CAAC,KAAK,CAAC;IACjB,IAAI,CAACO,IAAI,EAAE,OAAOJ,WAAW,CAACb,QAAQ,CAACI,KAAK,CAAC;AAC7Cc,IAAAA,KAAK,CAACC,OAAO,CAACF,IAAI,EAAET,KAAK,CAAC;AAC1BK,IAAAA,WAAW,EAAE;EACf,CAAC;EAED,oBACEO,GAAA,CAACC,MAAM,EAAA;IAACC,IAAI,EAAEC,KAAK,CAACC,IAAK;AAACR,IAAAA,OAAO,EAAEA,OAAQ;AAACX,IAAAA,OAAO,EAAC,WAAW;AAACoB,IAAAA,KAAK,EAAC,MAAM;AAACC,IAAAA,QAAQ,EAAEjB,OAAQ;IAACkB,KAAK,EAAA,IAAA;AAAAC,IAAAA,QAAA,EAAC;AAEtG,GAAQ,CAAC;AAEb;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../src/form/buttons/index.js"],"sourcesContent":["import styles from \"./index.module.css\";\n\nconst Buttons = ({ children }) => {\n return <div className={styles.root}>{children}</div>;\n};\n\nexport default Buttons;\n"],"names":["Buttons","children","_jsx","className","styles","root"],"mappings":";;;AAEA,MAAMA,OAAO,GAAGA,CAAC;AAAEC,EAAAA;AAAS,CAAC,KAAK;AAChC,EAAA,oBAAOC,GAAA,CAAA,KAAA,EAAA;IAAKC,SAAS,EAAEC,MAAM,CAACC,IAAK;AAAAJ,IAAAA,QAAA,EAAEA;AAAQ,GAAM,CAAC;AACtD;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.module.css.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../src/form/caption/index.js"],"sourcesContent":["import styles from \"./index.module.css\";\n\nconst Caption = ({ children }) => {\n return <p className={styles.root}>{children}</p>;\n};\n\nexport default Caption;\n"],"names":["Caption","children","_jsx","className","styles","root"],"mappings":";;;AAEA,MAAMA,OAAO,GAAGA,CAAC;AAAEC,EAAAA;AAAS,CAAC,KAAK;AAChC,EAAA,oBAAOC,GAAA,CAAA,GAAA,EAAA;IAAGC,SAAS,EAAEC,MAAM,CAACC,IAAK;AAAAJ,IAAAA,QAAA,EAAEA;AAAQ,GAAI,CAAC;AAClD;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.module.css.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../src/form/description/index.js"],"sourcesContent":["import styles from \"./index.module.css\";\n\nconst Description = ({ children }) => {\n return <span className={styles.root}>{children}</span>;\n};\n\nexport default Description;\n"],"names":["Description","children","_jsx","className","styles","root"],"mappings":";;;AAEA,MAAMA,WAAW,GAAGA,CAAC;AAAEC,EAAAA;AAAS,CAAC,KAAK;AACpC,EAAA,oBAAOC,GAAA,CAAA,MAAA,EAAA;IAAMC,SAAS,EAAEC,MAAM,CAACC,IAAK;AAAAJ,IAAAA,QAAA,EAAEA;AAAQ,GAAO,CAAC;AACxD;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.module.css.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|
package/dist/form/email/index.js
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../src/form/email/index.js"],"sourcesContent":["import * as React from \"react\";\nimport Input from \"@amoa/ingots/input\";\n\nconst ERRORS = {\n email: \"Identifiant inconnu.\"\n};\n\nconst Email = ({ children, error, ...actions }) => {\n return (\n <Input name=\"email\" type=\"email\" error={ERRORS[error]} {...actions} fill required>\n {children || \"Email\"}\n </Input>\n );\n};\n\nexport default Email;\n"],"names":["ERRORS","email","Email","children","error","actions","_jsx","Input","name","type","fill","required"],"mappings":";;;;AAGA,MAAMA,MAAM,GAAG;AACbC,EAAAA,KAAK,EAAE;AACT,CAAC;AAED,MAAMC,KAAK,GAAGA,CAAC;EAAEC,QAAQ;EAAEC,KAAK;EAAE,GAAGC;AAAQ,CAAC,KAAK;EACjD,oBACEC,GAAA,CAACC,KAAK,EAAA;AAACC,IAAAA,IAAI,EAAC,OAAO;AAACC,IAAAA,IAAI,EAAC,OAAO;AAACL,IAAAA,KAAK,EAAEJ,MAAM,CAACI,KAAK,CAAE;AAAA,IAAA,GAAKC,OAAO;IAAEK,IAAI,EAAA,IAAA;IAACC,QAAQ,EAAA,IAAA;IAAAR,QAAA,EAC9EA,QAAQ,IAAI;AAAO,GACf,CAAC;AAEZ;;;;"}
|
package/dist/form/index.js
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../src/form/index.js"],"sourcesContent":["import * as Classes from \"@amoa/forge/classes\";\n\nimport styles from \"./index.module.css\";\n\nconst Form = ({ children, className, size }) => {\n const classes = Classes.build(styles.root, className, styles[size]);\n return <div className={classes}>{children}</div>;\n};\n\nexport default Form;\n"],"names":["Form","children","className","size","classes","Classes","build","styles","root","_jsx"],"mappings":";;;;AAIA,MAAMA,IAAI,GAAGA,CAAC;EAAEC,QAAQ;EAAEC,SAAS;AAAEC,EAAAA;AAAK,CAAC,KAAK;AAC9C,EAAA,MAAMC,OAAO,GAAGC,OAAO,CAACC,KAAK,CAACC,MAAM,CAACC,IAAI,EAAEN,SAAS,EAAEK,MAAM,CAACJ,IAAI,CAAC,CAAC;AACnE,EAAA,oBAAOM,GAAA,CAAA,KAAA,EAAA;AAAKP,IAAAA,SAAS,EAAEE,OAAQ;AAAAH,IAAAA,QAAA,EAAEA;AAAQ,GAAM,CAAC;AAClD;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.module.css.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../src/form/inputs/index.js"],"sourcesContent":["import styles from \"./index.module.css\";\n\nconst Inputs = ({ children }) => {\n return <div className={styles.root}>{children}</div>;\n};\n\nexport default Inputs;\n"],"names":["Inputs","children","_jsx","className","styles","root"],"mappings":";;;AAEA,MAAMA,MAAM,GAAGA,CAAC;AAAEC,EAAAA;AAAS,CAAC,KAAK;AAC/B,EAAA,oBAAOC,GAAA,CAAA,KAAA,EAAA;IAAKC,SAAS,EAAEC,MAAM,CAACC,IAAK;AAAAJ,IAAAA,QAAA,EAAEA;AAAQ,GAAM,CAAC;AACtD;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.module.css.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../src/form/password/index.js"],"sourcesContent":["import * as React from \"react\";\n\nimport Input from \"@amoa/ingots/input\";\n\nconst ERRORS = {\n password: \"Mot de passe incorrect.\"\n};\n\nconst Password = ({ children, error, ...actions }) => {\n return (\n <Input name=\"password\" type=\"password\" error={ERRORS[error]} {...actions} fill required>\n {children || \"Mot de Passe\"}\n </Input>\n );\n};\n\nexport default Password;\n"],"names":["ERRORS","password","Password","children","error","actions","_jsx","Input","name","type","fill","required"],"mappings":";;;;AAIA,MAAMA,MAAM,GAAG;AACbC,EAAAA,QAAQ,EAAE;AACZ,CAAC;AAED,MAAMC,QAAQ,GAAGA,CAAC;EAAEC,QAAQ;EAAEC,KAAK;EAAE,GAAGC;AAAQ,CAAC,KAAK;EACpD,oBACEC,GAAA,CAACC,KAAK,EAAA;AAACC,IAAAA,IAAI,EAAC,UAAU;AAACC,IAAAA,IAAI,EAAC,UAAU;AAACL,IAAAA,KAAK,EAAEJ,MAAM,CAACI,KAAK,CAAE;AAAA,IAAA,GAAKC,OAAO;IAAEK,IAAI,EAAA,IAAA;IAACC,QAAQ,EAAA,IAAA;IAAAR,QAAA,EACpFA,QAAQ,IAAI;AAAc,GACtB,CAAC;AAEZ;;;;"}
|
package/dist/index.css
CHANGED
|
@@ -1,94 +1 @@
|
|
|
1
|
-
.index-module_root__ODuS- {
|
|
2
|
-
display: flex;
|
|
3
|
-
flex-direction: column;
|
|
4
|
-
width: 100%;
|
|
5
|
-
max-width: 500px;
|
|
6
|
-
padding: 24px;
|
|
7
|
-
background-color: var(--white);
|
|
8
|
-
border-radius: var(--border-radius);
|
|
9
|
-
gap: 16px;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
.index-module_regular__MMh2h {
|
|
13
|
-
max-width: 500px;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.index-module_large__zHYpM {
|
|
17
|
-
max-width: 700px;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
@media (min-width: 560px) {
|
|
21
|
-
.index-module_root__ODuS- {
|
|
22
|
-
padding: var(--space);
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.index-module_caption__rLj1H {
|
|
27
|
-
flex: 1 1 auto;
|
|
28
|
-
min-width: 200px;
|
|
29
|
-
align-self: center;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.index-module_image__1vKdM {
|
|
33
|
-
width: 200px;
|
|
34
|
-
height: auto;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.index-module_animation__-ai2b {
|
|
38
|
-
flex: 1 0 275px;
|
|
39
|
-
background-color: var(--light-background);
|
|
40
|
-
border: 0.5px solid var(--lighter-stroke);
|
|
41
|
-
padding: 20px;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.index-module_condo__J-7Rb {
|
|
45
|
-
filter: drop-shadow(0 12px 8px var(--bright-green));
|
|
46
|
-
animation: index-module_floating__QUkes 6s ease-in-out infinite;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
@media (min-width: 750px) {
|
|
50
|
-
.index-module_form__GeBqt {
|
|
51
|
-
flex-direction: row;
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
@keyframes index-module_floating__QUkes {
|
|
56
|
-
0% {
|
|
57
|
-
transform: translateY(-10px);
|
|
58
|
-
}
|
|
59
|
-
50% {
|
|
60
|
-
transform: translateY(10px);
|
|
61
|
-
}
|
|
62
|
-
100% {
|
|
63
|
-
transform: translateY(-10px);
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
.index-module_root__5eZc- {
|
|
68
|
-
font-size: 16px;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
.index-module_root__GJ8LW {
|
|
72
|
-
display: flex;
|
|
73
|
-
flex-direction: column;
|
|
74
|
-
gap: 8px;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
.index-module_root__5PrR6 {
|
|
78
|
-
display: flex;
|
|
79
|
-
justify-content: space-between;
|
|
80
|
-
gap: 16px;
|
|
81
|
-
align-items: center;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
.index-module_root__-kzxc {
|
|
85
|
-
display: flex;
|
|
86
|
-
flex-direction: column;
|
|
87
|
-
font-size: 18px;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
@media (min-width: 560px) {
|
|
91
|
-
.index-module_root__-kzxc {
|
|
92
|
-
font-size: 22px;
|
|
93
|
-
}
|
|
94
|
-
}
|
|
1
|
+
.index-module_root__ODuS-{background-color:var(--white);border-radius:var(--border-radius);display:flex;flex-direction:column;gap:16px;max-width:500px;padding:24px;width:100%}.index-module_regular__MMh2h{max-width:500px}.index-module_large__zHYpM{max-width:700px}@media (min-width:560px){.index-module_root__ODuS-{padding:var(--space)}}.index-module_root__5PrR6{align-items:center;display:flex;gap:16px;justify-content:space-between}.index-module_root__GJ8LW{display:flex;flex-direction:column;gap:8px}.index-module_root__-kzxc{display:flex;flex-direction:column;font-size:18px}@media (min-width:560px){.index-module_root__-kzxc{font-size:22px}}.index-module_root__5eZc-{font-size:16px}.index-module_caption__rLj1H{align-self:center;flex:1 1 auto;min-width:200px}.index-module_image__1vKdM{height:auto;width:200px}.index-module_animation__-ai2b{background-color:var(--light-background);border:.5px solid var(--lighter-stroke);flex:1 0 275px;padding:20px}.index-module_condo__J-7Rb{animation:index-module_floating__QUkes 6s ease-in-out infinite;filter:drop-shadow(0 12px 8px var(--bright-green))}@media (min-width:750px){.index-module_form__GeBqt{flex-direction:row}}@keyframes index-module_floating__QUkes{0%{transform:translateY(-10px)}50%{transform:translateY(10px)}to{transform:translateY(-10px)}}
|
package/dist/styles.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.index-module_caption__rLj1H{align-self:center;flex:1 1 auto;min-width:200px}.index-module_image__1vKdM{height:auto;width:200px}.index-module_animation__-ai2b{background-color:var(--light-background);border:.5px solid var(--lighter-stroke);flex:1 0 275px;padding:20px}.index-module_condo__J-7Rb{animation:index-module_floating__QUkes 6s ease-in-out infinite;filter:drop-shadow(0 12px 8px var(--bright-green))}@media (min-width:750px){.index-module_form__GeBqt{flex-direction:row}}@keyframes index-module_floating__QUkes{0%{transform:translateY(-10px)}50%{transform:translateY(10px)}to{transform:translateY(-10px)}}.index-module_root__-kzxc{display:flex;flex-direction:column;font-size:18px}@media (min-width:560px){.index-module_root__-kzxc{font-size:22px}}.index-module_root__5PrR6{align-items:center;display:flex;gap:16px;justify-content:space-between}.index-module_root__5eZc-{font-size:16px}.index-module_root__GJ8LW{display:flex;flex-direction:column;gap:8px}.index-module_root__ODuS-{background-color:var(--white);border-radius:var(--border-radius);display:flex;flex-direction:column;gap:16px;max-width:500px;padding:24px;width:100%}.index-module_regular__MMh2h{max-width:500px}.index-module_large__zHYpM{max-width:700px}@media (min-width:560px){.index-module_root__ODuS-{padding:var(--space)}}
|
package/dist/waiter/index.js
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../src/waiter/index.js"],"sourcesContent":["import * as React from \"react\";\n\nimport * as Carving from \"@amoa/carving\";\nimport Form from \"@amoa/casting/form\";\nimport Caption from \"@amoa/casting/form/caption\";\n\nimport styles from \"./index.module.css\";\n\nconst PICTURE = { picture: Carving.Logos.Amoa };\n\nconst Waiter = ({ picture }) => {\n const { picture: Picture, ...props } = picture || PICTURE;\n return (\n <Form className={styles.form} size=\"large\">\n <div className={styles.caption}>\n <Picture className={styles.image} {...props} priority />\n <Caption>Veuillez patienter, nous vous redirigeons vers la bonne page.</Caption>\n </div>\n <div className={styles.animation}>\n <Carving.Condo className={styles.condo} />\n </div>\n </Form>\n );\n};\n\nexport default Waiter;\n"],"names":["PICTURE","picture","Carving","Logos","Amoa","Waiter","Picture","props","_jsxs","Form","className","styles","form","size","children","caption","_jsx","image","priority","Caption","animation","Condo","condo"],"mappings":";;;;;;;AAQA,MAAMA,OAAO,GAAG;AAAEC,EAAAA,OAAO,EAAEC,OAAO,CAACC,KAAK,CAACC;AAAK,CAAC;AAE/C,MAAMC,MAAM,GAAGA,CAAC;AAAEJ,EAAAA;AAAQ,CAAC,KAAK;EAC9B,MAAM;AAAEA,IAAAA,OAAO,EAAEK,OAAO;IAAE,GAAGC;GAAO,GAAGN,OAAO,IAAID,OAAO;EACzD,oBACEQ,IAAA,CAACC,IAAI,EAAA;IAACC,SAAS,EAAEC,MAAM,CAACC,IAAK;AAACC,IAAAA,IAAI,EAAC,OAAO;AAAAC,IAAAA,QAAA,gBACxCN,IAAA,CAAA,KAAA,EAAA;MAAKE,SAAS,EAAEC,MAAM,CAACI,OAAQ;MAAAD,QAAA,EAAA,cAC7BE,GAAA,CAACV,OAAO,EAAA;QAACI,SAAS,EAAEC,MAAM,CAACM,KAAM;AAAA,QAAA,GAAKV,KAAK;QAAEW,QAAQ,EAAA;AAAA,OAAE,CAAC,eACxDF,GAAA,CAACG,OAAO,EAAA;AAAAL,QAAAA,QAAA,EAAC;AAA6D,OAAS,CAAC;KAC7E,CAAC,eACNE,GAAA,CAAA,KAAA,EAAA;MAAKN,SAAS,EAAEC,MAAM,CAACS,SAAU;AAAAN,MAAAA,QAAA,eAC/BE,GAAA,CAACd,OAAO,CAACmB,KAAK,EAAA;QAACX,SAAS,EAAEC,MAAM,CAACW;OAAQ;AAAC,KACvC,CAAC;AAAA,GACF,CAAC;AAEX;;;;"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
var styles = {"caption":"index-module_caption__rLj1H","image":"index-module_image__1vKdM","animation":"index-module_animation__-ai2b","condo":"index-module_condo__J-7Rb","form":"index-module_form__GeBqt"};
|
|
2
2
|
|
|
3
3
|
export { styles as default };
|
|
4
|
+
//# sourceMappingURL=index.module.css.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.module.css.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@amoa/casting",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
"./*": "./dist/*"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@amoa/carving": "^0.1.
|
|
19
|
+
"@amoa/carving": "^0.1.9",
|
|
20
20
|
"@amoa/forge": "^0.1.2",
|
|
21
|
-
"@amoa/ingots": "^0.1.
|
|
22
|
-
"@amoa/runes": "^0.1.
|
|
21
|
+
"@amoa/ingots": "^0.1.10",
|
|
22
|
+
"@amoa/runes": "^0.1.6"
|
|
23
23
|
}
|
|
24
24
|
}
|