create-gardener 1.1.4 → 1.1.6

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/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "type": "git",
6
6
  "url": "https://github.com/ritishDas/gardener"
7
7
  },
8
- "version": "1.1.4",
8
+ "version": "1.1.6",
9
9
  "description": "A dom gardener converting dom elements into json and vice versa",
10
10
  "main": "index.js",
11
11
  "bin": {
@@ -10,7 +10,9 @@
10
10
  <body>
11
11
  <div class='notification'></div>
12
12
  <div class="bg-gray-200 w-screen h-screen flex justify-center items-center" id='body'>
13
+ <!-- Remove this line when you are using hot reload as it will cause delay -->
13
14
  <%- include('partials/loader') %>
15
+ <!-- Remove this line when you are using hot reload as it will cause delay -->
14
16
 
15
17
  <!-- Main Content-->
16
18
 
@@ -1,7 +1,7 @@
1
1
  const config = {
2
2
  mode: 'dev',
3
3
  componentdir: 'components',
4
- hotreload: true
4
+ hotreload: false
5
5
  }
6
6
 
7
7
  let hotReloadtimeout;
@@ -1 +1,22 @@
1
1
  /* your custom styles */
2
+
3
+
4
+ @keyframes drop{
5
+ 0%{
6
+ transform:translateY(0px);
7
+ }
8
+ 20%{
9
+ transform:translateY(80px);
10
+ }
11
+ 80%{
12
+ transform:translateY(80px);
13
+ }
14
+ 100%{
15
+ transform:translateY(0px);
16
+ }
17
+ }
18
+
19
+ .notification{
20
+ animation:drop;
21
+ animation-duration:1.5s;
22
+ }
@@ -4,16 +4,18 @@
4
4
  <meta charset="UTF-8" />
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
6
  <title>Gardener – Declarative DOM Library</title>
7
- <script src="https://cdn.tailwindcss.com"></script>
8
7
  <!-- Assume your custom styles are still here -->
9
8
  <link href="/style.css" rel="stylesheet"/>
9
+ <link href="/style2.css" rel="stylesheet"/>
10
10
  </head>
11
11
 
12
12
  <body>
13
13
 
14
14
  <div id='body'>
15
15
 
16
+ <!-- Remove this line when you are using hot reload as it will cause delay -->
16
17
  <%- include('partials/loader') %>
18
+ <!-- Remove this line when you are using hot reload as it will cause delay -->
17
19
  <div class="max-w-7xl mx-auto px-6 py-12 space-y-20">
18
20
 
19
21
  <!-- Hero / Introduction -->
@@ -11,7 +11,9 @@
11
11
  <div class='notification'></div>
12
12
  <div class="bg-gray-200 w-screen h-screen flex justify-center items-center" id='body'>
13
13
 
14
+ <!-- Remove this line when you are using hot reload as it will cause delay -->
14
15
  <%- include('partials/loader') %>
16
+ <!-- Remove this line when you are using hot reload as it will cause delay -->
15
17
  <div class="bg-white rounded-xl w-90 min-h-100 flex items-center flex-col">
16
18
 
17
19
  <h1 class="text-center text-4xl p-5">Login</h1>
package/flake.lock DELETED
@@ -1,61 +0,0 @@
1
- {
2
- "nodes": {
3
- "flake-utils": {
4
- "inputs": {
5
- "systems": "systems"
6
- },
7
- "locked": {
8
- "lastModified": 1731533236,
9
- "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
10
- "owner": "numtide",
11
- "repo": "flake-utils",
12
- "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
13
- "type": "github"
14
- },
15
- "original": {
16
- "owner": "numtide",
17
- "repo": "flake-utils",
18
- "type": "github"
19
- }
20
- },
21
- "nixpkgs": {
22
- "locked": {
23
- "lastModified": 1769018530,
24
- "narHash": "sha256-MJ27Cy2NtBEV5tsK+YraYr2g851f3Fl1LpNHDzDX15c=",
25
- "owner": "NixOS",
26
- "repo": "nixpkgs",
27
- "rev": "88d3861acdd3d2f0e361767018218e51810df8a1",
28
- "type": "github"
29
- },
30
- "original": {
31
- "owner": "NixOS",
32
- "ref": "nixos-unstable",
33
- "repo": "nixpkgs",
34
- "type": "github"
35
- }
36
- },
37
- "root": {
38
- "inputs": {
39
- "flake-utils": "flake-utils",
40
- "nixpkgs": "nixpkgs"
41
- }
42
- },
43
- "systems": {
44
- "locked": {
45
- "lastModified": 1681028828,
46
- "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
47
- "owner": "nix-systems",
48
- "repo": "default",
49
- "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
50
- "type": "github"
51
- },
52
- "original": {
53
- "owner": "nix-systems",
54
- "repo": "default",
55
- "type": "github"
56
- }
57
- }
58
- },
59
- "root": "root",
60
- "version": 7
61
- }
package/flake.nix DELETED
@@ -1,23 +0,0 @@
1
- {
2
- description="A flake template";
3
- inputs={
4
- nixpkgs.url="github:NixOS/nixpkgs/nixos-unstable";
5
- flake-utils.url="github:numtide/flake-utils";
6
- };
7
- outputs={self,nixpkgs,flake-utils}:
8
- flake-utils.lib.eachDefaultSystem(system:
9
- let
10
- pkgs=import nixpkgs{
11
- inherit system;
12
- };
13
- in {
14
- devShells.default=pkgs.mkShell{
15
- name="Flake template";
16
- shellHook=''
17
- export PNPM_HOME="$HOME/.local/share/pnpm"
18
- export PATH="$PNPM_HOME:$PATH"
19
- '';
20
- };
21
- }
22
- );
23
- }