@banzamel/mineralui 1.0.0 → 1.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/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  Modern React UI framework with a sharp admin aesthetic, theming system, and production-ready components.
4
4
 
5
5
  - npm: `@banzamel/mineralui`
6
- - version: `1.0.0`
6
+ - version: `1.0.2`
7
7
  - peer dependencies: `react >= 19`, `react-dom >= 19`
8
8
  - repository: `https://github.com/Banzamel/mineralui`
9
9
  - homepage: `https://mineralui.io`
@@ -0,0 +1,2 @@
1
+ export type MineralPackageEdition = 'basic' | 'pro' | 'source';
2
+ export declare const mineralPackageEdition: MineralPackageEdition;
@@ -0,0 +1,7 @@
1
+ declare global {
2
+ interface Window {
3
+ __MINERAL_PRO_ACTIVATED__?: boolean;
4
+ __MINERAL_PRO_ACTIVATION_WARNING_SHOWN__?: boolean;
5
+ }
6
+ }
7
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@banzamel/mineralui",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Modern React UI component framework with mineral dark aesthetic",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -312,7 +312,7 @@
312
312
  "url": "git+https://github.com/Banzamel/mineralui.git"
313
313
  },
314
314
  "author": "Rafal Polak",
315
- "homepage": "https://mineralui.banzamel.pl",
315
+ "homepage": "https://mineralui.io",
316
316
  "bugs": {
317
317
  "url": "https://github.com/Banzamel/mineralui/issues"
318
318
  },