@ufal-lccv/gpsub-ds 0.0.1-alpha.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 ADDED
@@ -0,0 +1,3 @@
1
+ # gpsub-ds
2
+
3
+ Design system temporário do GP-SUB para auxiliar na futura migração para o DS Subweb 2.0
@@ -0,0 +1,2 @@
1
+ export * from './src/index'
2
+ export {}
@@ -0,0 +1,9 @@
1
+ const r = `
2
+ box-sizing: border-box;
3
+ margin: 0;
4
+ padding: 0;
5
+ border: 0;
6
+ `;
7
+ export {
8
+ r as resetStyles
9
+ };
@@ -0,0 +1,6 @@
1
+ (function(e,t){typeof exports=="object"&&typeof module<"u"?t(exports):typeof define=="function"&&define.amd?define(["exports"],t):(e=typeof globalThis<"u"?globalThis:e||self,t(e["GPSUB-DS"]={}))})(this,function(e){"use strict";const t=`
2
+ box-sizing: border-box;
3
+ margin: 0;
4
+ padding: 0;
5
+ border: 0;
6
+ `;e.resetStyles=t,Object.defineProperty(e,Symbol.toStringTag,{value:"Module"})});
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,3 @@
1
+ export * from './atoms';
2
+ export * from './molecules';
3
+ export * from './organisms';
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export * from './reset-styles';
@@ -0,0 +1 @@
1
+ export declare const resetStyles = "\n box-sizing: border-box;\n margin: 0;\n padding: 0;\n border: 0;\n";
@@ -0,0 +1,2 @@
1
+ export * from './components';
2
+ export * from './helpers';
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vite').UserConfigFnObject;
2
+ export default _default;
package/package.json ADDED
@@ -0,0 +1,67 @@
1
+ {
2
+ "name": "@ufal-lccv/gpsub-ds",
3
+ "version": "0.0.1-alpha.0",
4
+ "description": "Design system temporário do GP-SUB para auxiliar na futura migração para o DS Subweb 2.0",
5
+ "main": "./dist/gpsub-ds.umd.js",
6
+ "module": "./dist/gpsub-ds.esm.js",
7
+ "types": "./dist/gpsub-ds.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/gpsub-ds.esm.js",
11
+ "require": "./dist/gpsub-ds.umd.js"
12
+ }
13
+ },
14
+ "files": [
15
+ "dist/**/*"
16
+ ],
17
+ "scripts": {
18
+ "publish:public": "npm publish --access public",
19
+ "publish:private": "npm publish --access restricted",
20
+ "clean": "rm -rf dist",
21
+ "build": "npm run clean && vite build",
22
+ "build:publish": "npm run build && npm run publish",
23
+ "lint": "eslint . --ext .ts,.tsx && tsc",
24
+ "lint:fix": "eslint . --ext .ts,.tsx --fix",
25
+ "prettier:fix": "prettier --write .",
26
+ "prettier:check": "prettier --check ."
27
+ },
28
+ "keywords": [],
29
+ "author": "",
30
+ "license": "ISC",
31
+ "dependencies": {
32
+ "react": "^18.3.1",
33
+ "react-dom": "^18.3.1",
34
+ "styled-components": "^5.3.9",
35
+ "react-datepicker": "^4.18.0",
36
+ "react-hook-form": "^7.43.9",
37
+ "react-router-dom": "^6.9.0",
38
+ "react-text-mask": "^5.5.0",
39
+ "sbwb-ds": "^1.2.2",
40
+ "sbwb-icons": "^1.2.0"
41
+ },
42
+ "devDependencies": {
43
+ "@babel/core": "^7.21.3",
44
+ "@changesets/cli": "^2.29.4",
45
+ "@swc/core": "^1.3.40",
46
+ "@trivago/prettier-plugin-sort-imports": "^5.2.2",
47
+ "@types/react": "^18.3.23",
48
+ "@types/react-dom": "^18.3.7",
49
+ "@typescript-eslint/eslint-plugin": "^5.13.0",
50
+ "@typescript-eslint/parser": "^5.0.0",
51
+ "@vitejs/plugin-react": "^3.1.0",
52
+ "babel-loader": "^8.3.0",
53
+ "eslint": "^8.36.0",
54
+ "eslint-config-airbnb-typescript": "^17.0.0",
55
+ "eslint-config-prettier": "^8.7.0",
56
+ "eslint-config-standard-with-typescript": "^34.0.1",
57
+ "eslint-plugin-import": "^2.27.5",
58
+ "eslint-plugin-n": "^15.6.1",
59
+ "eslint-plugin-promise": "^6.1.1",
60
+ "eslint-plugin-react": "^7.32.2",
61
+ "prettier": "^3.5.3",
62
+ "pretty-quick": "^4.1.1",
63
+ "typescript": "^4.9.5",
64
+ "vite": "^4.5.14",
65
+ "vite-plugin-dts": "^4.5.4"
66
+ }
67
+ }