@supersoniks/concorde 3.0.1 → 3.0.2
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/build-infos.json +1 -1
- package/index.html +124 -36
- package/package.json +16 -5
- package/postcss.config.cjs +6 -0
- package/public/css/docs.css +0 -0
- package/public/img/concorde-logo.svg +1 -0
- package/public/img/concorde.png +0 -0
- package/public/img/concorde_def.png +0 -0
- package/public/svg/regular/plane.svg +1 -0
- package/public/svg/solid/plane.svg +1 -0
- package/scripts/create-search.js +92 -0
- package/scripts/post-build-docs.js +48 -0
- package/scripts/post-build.mjs +14 -0
- package/src/core/components/functional/queue/queue.ts +72 -28
- package/src/core/components/functional/router/router.ts +35 -14
- package/src/core/components/functional/states/states.ts +33 -14
- package/src/core/directives/Wording.ts +68 -26
- package/src/core/mixins/Fetcher.ts +83 -32
- package/src/core/utils/Electron.ts +4 -1
- package/src/docs/code.ts +4 -3
- package/src/docs/example/users.ts +2 -2
- package/src/docs/search/docs-search.json +0 -30
- package/src/docs/search/search.ts +2 -2
- package/src/docs/tailwind/css/tailwind.css +25 -0
- package/src/docs/tailwind/index.ts +6 -0
- package/src/mixins.ts +1 -1
- package/tailwind.config.js +186 -0
- package/vite/config.js +22 -22
- package/vite.config.mts +16 -14
- package/concorde-core.bundle.js +0 -3470
- package/concorde-core.es.js +0 -11319
- package/scripts/prebuild.mjs +0 -22
- package/src/core/components/ui/theme/css/tailwind.css +0 -3
- /package/scripts/{postbuild.mjs → pre-build.mjs} +0 -0
- /package/src/{core/components/ui/theme → docs/tailwind}/css/tailwind.d.ts +0 -0
package/scripts/prebuild.mjs
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
// console.log("hey");
|
|
2
|
-
|
|
3
|
-
import fs from "fs";
|
|
4
|
-
import path from "path";
|
|
5
|
-
|
|
6
|
-
/**
|
|
7
|
-
* Generates concorde icons from svgs
|
|
8
|
-
*/
|
|
9
|
-
console.log("🚀 Génération des Icones");
|
|
10
|
-
let icons = { core: {} };
|
|
11
|
-
let svgsPath = path.resolve("src/core/components/ui/icon/svgs");
|
|
12
|
-
let iconFiles = fs.readdirSync(svgsPath, { withFileTypes: true });
|
|
13
|
-
iconFiles.forEach((file) => {
|
|
14
|
-
let fileName = file.name.split(".")[0];
|
|
15
|
-
icons["core"][fileName] = fs
|
|
16
|
-
.readFileSync(svgsPath + "/" + file.name)
|
|
17
|
-
.toString();
|
|
18
|
-
});
|
|
19
|
-
fs.writeFileSync(
|
|
20
|
-
path.resolve("src/core/components/ui/icon/icons.json"),
|
|
21
|
-
JSON.stringify(icons)
|
|
22
|
-
);
|
|
File without changes
|
|
File without changes
|