@magnidev/theme 0.3.1 → 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 CHANGED
@@ -4,23 +4,9 @@
4
4
 
5
5
  This package provides a theme for Tailwind CSS, designed to be used with the Magni Development apps.
6
6
 
7
- ## Installation
7
+ ## License & Usage
8
8
 
9
- To install the package, run:
9
+ This package is just for internal use, education, and is not intended for public distribution. It is part of Magni Development.
10
+ It is not permitted to copy, modify, or distribute this package without explicit permission from the Magni Development team.
10
11
 
11
- ```bash
12
- npm install @magnidev/theme
13
- pnpm add @magnidev/theme
14
- ```
15
-
16
- ## Usage
17
-
18
- After installation, you can import the theme in your JavaScript or TypeScript files:
19
-
20
- ```tsx
21
- import "@magnidev/theme/tailwind.css";
22
- ```
23
-
24
- ## License
25
-
26
- This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
12
+ © 2025 Magni Development. All rights reserved.
package/package.json CHANGED
@@ -1,40 +1,43 @@
1
1
  {
2
2
  "name": "@magnidev/theme",
3
- "version": "0.3.1",
4
- "license": "ISC",
5
- "description": "Theme for Magni Development.",
3
+ "version": "1.0.0",
4
+ "description": "A set of reusable styles and components to enhance the design consistency across the Magni Development applications.",
5
+ "keywords": [
6
+ "typescript",
7
+ "tsconfig",
8
+ "magnidev"
9
+ ],
6
10
  "author": {
7
11
  "name": "fermeridamagni <Magni Development>",
8
- "url": "https://www.magni.dev"
12
+ "email": "hello@magni.dev",
13
+ "url": "https://magni.dev"
9
14
  },
10
15
  "repository": {
11
- "url": "git+https://github.com/magnidev/magnidev-monorepo.git",
12
16
  "type": "git",
17
+ "url": "git+https://github.com/magnidev/magnidev-theme.git",
13
18
  "directory": "packages/theme"
14
19
  },
15
- "keywords": [],
16
20
  "bugs": {
17
- "url": "https://github.com/magnidev/magnidev-monorepo/issues"
21
+ "url": "https://github.com/magnidev/magnidev-theme/issues",
22
+ "email": "help@magni.dev"
23
+ },
24
+ "homepage": "https://github.com/magnidev/magnidev-theme",
25
+ "publishConfig": {
26
+ "access": "public",
27
+ "registry": "https://registry.npmjs.org/"
18
28
  },
19
- "homepage": "https://www.magni.dev/en/docs/developers/packages/theme/getting-started/introduction",
20
29
  "exports": {
21
30
  "./tailwindcss": "./src/tailwindcss/styles.css"
22
31
  },
23
32
  "files": [
24
- "src/tailwindcss/styles.css",
33
+ "src",
34
+ "package.json",
25
35
  "README.md",
26
- "LICENSE",
27
- "CHANGELOG.md",
28
- "package.json"
36
+ "CHANGELOG.md"
29
37
  ],
30
- "publishConfig": {
31
- "access": "public",
32
- "registry": "https://registry.npmjs.org/"
33
- },
34
38
  "peerDependencies": {
35
- "tailwindcss": "^4.1.8"
39
+ "tailwindcss": "^4.1.11"
36
40
  },
37
- "dependencies": {
38
- "tw-animate-css": "^1.3.3"
39
- }
41
+ "devDependencies": {},
42
+ "scripts": {}
40
43
  }
@@ -1,8 +1,6 @@
1
1
  @import "tailwindcss";
2
2
  @import "tw-animate-css";
3
3
 
4
- @custom-variant dark (&:is(.dark *));
5
-
6
4
  @theme inline {
7
5
  --color-background: var(--background);
8
6
  --color-foreground: var(--foreground);
@@ -125,10 +123,7 @@
125
123
  }
126
124
 
127
125
  * {
128
- @apply border-border outline-ring/50 ring-primary;
129
- }
130
- *::selection {
131
- @apply bg-primary text-primary-foreground;
126
+ @apply border-border outline-ring/50 ring-primary selection:bg-primary selection:text-primary-foreground;
132
127
  }
133
128
  body {
134
129
  @apply bg-background text-foreground;
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- # MIT License
2
-
3
- Copyright (c) 2025 Magni Developer
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.