@igreen/design-system 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/dist/index.d.ts +18 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +24 -0
- package/dist/index.js.map +1 -0
- package/package.json +28 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* iGreen Design System - Meta Package
|
|
3
|
+
*
|
|
4
|
+
* Este pacote instala automaticamente todos os componentes e temas do iGreen.
|
|
5
|
+
*
|
|
6
|
+
* Instalação:
|
|
7
|
+
* npm install @igreen/design-system
|
|
8
|
+
*
|
|
9
|
+
* Uso:
|
|
10
|
+
* import '@igreen/themes/igreen'
|
|
11
|
+
* import { Button } from '@igreen/button'
|
|
12
|
+
* import { Input } from '@igreen/input'
|
|
13
|
+
*
|
|
14
|
+
* Todos os pacotes serão instalados automaticamente como dependências.
|
|
15
|
+
*/
|
|
16
|
+
export * from '@igreen/utils';
|
|
17
|
+
import '@igreen/themes/igreen';
|
|
18
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAGH,cAAc,eAAe,CAAA;AAQ7B,OAAO,uBAAuB,CAAA"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* iGreen Design System - Meta Package
|
|
3
|
+
*
|
|
4
|
+
* Este pacote instala automaticamente todos os componentes e temas do iGreen.
|
|
5
|
+
*
|
|
6
|
+
* Instalação:
|
|
7
|
+
* npm install @igreen/design-system
|
|
8
|
+
*
|
|
9
|
+
* Uso:
|
|
10
|
+
* import '@igreen/themes/igreen'
|
|
11
|
+
* import { Button } from '@igreen/button'
|
|
12
|
+
* import { Input } from '@igreen/input'
|
|
13
|
+
*
|
|
14
|
+
* Todos os pacotes serão instalados automaticamente como dependências.
|
|
15
|
+
*/
|
|
16
|
+
// Re-export utilities (não causa dependência circular)
|
|
17
|
+
export * from '@igreen/utils';
|
|
18
|
+
// Para usar os componentes, importe diretamente:
|
|
19
|
+
// import { Button } from '@igreen/button'
|
|
20
|
+
// import { Input } from '@igreen/input'
|
|
21
|
+
// etc.
|
|
22
|
+
// Tema CSS automático
|
|
23
|
+
import '@igreen/themes/igreen';
|
|
24
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,uDAAuD;AACvD,cAAc,eAAe,CAAA;AAE7B,iDAAiD;AACjD,0CAA0C;AAC1C,wCAAwC;AACxC,OAAO;AAEP,sBAAsB;AACtB,OAAO,uBAAuB,CAAA"}
|
package/package.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@igreen/design-system",
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "iGreen Design System - Complete Package",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
10
|
+
"scripts": {
|
|
11
|
+
"build": "tsc",
|
|
12
|
+
"dev": "tsc --watch"
|
|
13
|
+
},
|
|
14
|
+
"dependencies": {
|
|
15
|
+
"@igreen/themes": "^1.2.0",
|
|
16
|
+
"@igreen/utils": "^1.0.0",
|
|
17
|
+
"@igreen/button": "^1.0.1",
|
|
18
|
+
"@igreen/checkbox": "^1.0.1",
|
|
19
|
+
"@igreen/input": "^1.0.1",
|
|
20
|
+
"@igreen/label": "^1.0.1",
|
|
21
|
+
"@igreen/mode-toggle": "^1.0.1",
|
|
22
|
+
"@igreen/example-card": "^2.1.0"
|
|
23
|
+
},
|
|
24
|
+
"publishConfig": {
|
|
25
|
+
"access": "public",
|
|
26
|
+
"registry": "https://registry.npmjs.org"
|
|
27
|
+
}
|
|
28
|
+
}
|