@consumidor-positivo/aurora 0.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.
Files changed (57) hide show
  1. package/.cache/storybook/default/dev-server/a5a8bf6e622aef57065c6498611f40c911543d7d-3920d97c51b8ad2521918fb1205babd22b0ed3d7 +1 -0
  2. package/.cache/storybook/default/dev-server/a5a8bf6e622aef57065c6498611f40c911543d7d-43fdebe5fc35e4e9fabee9a83c7faea931b05ea0 +1 -0
  3. package/.cache/storybook/default/dev-server/a5a8bf6e622aef57065c6498611f40c911543d7d-f086b87885981c04ce7a583ff90a49313de83de7 +1 -0
  4. package/.eslintrc.cjs +19 -0
  5. package/.husky/pre-commit +2 -0
  6. package/.prettierignore +2 -0
  7. package/.prettierrc +5 -0
  8. package/.storybook/main.ts +17 -0
  9. package/.storybook/preview.ts +14 -0
  10. package/README.md +32 -0
  11. package/dist/aurora.js +51 -0
  12. package/dist/main.d.ts +3 -0
  13. package/dist/style.css +1 -0
  14. package/index.html +18 -0
  15. package/lib/main.ts +3 -0
  16. package/package.json +49 -0
  17. package/public/vite.svg +1 -0
  18. package/src/App.tsx +12 -0
  19. package/src/assets/react.svg +1 -0
  20. package/src/core/tokens/colors.scss +71 -0
  21. package/src/core/tokens/elements.scss +26 -0
  22. package/src/core/tokens/fonts.scss +22 -0
  23. package/src/core/tokens/layout.scss +48 -0
  24. package/src/main.tsx +9 -0
  25. package/src/stories/Button.stories.ts +52 -0
  26. package/src/stories/Button.tsx +50 -0
  27. package/src/stories/Configure.mdx +368 -0
  28. package/src/stories/Header.stories.ts +33 -0
  29. package/src/stories/Header.tsx +69 -0
  30. package/src/stories/Page.stories.ts +32 -0
  31. package/src/stories/Page.tsx +87 -0
  32. package/src/stories/assets/accessibility.png +0 -0
  33. package/src/stories/assets/accessibility.svg +1 -0
  34. package/src/stories/assets/addon-library.png +0 -0
  35. package/src/stories/assets/assets.png +0 -0
  36. package/src/stories/assets/avif-test-image.avif +0 -0
  37. package/src/stories/assets/context.png +0 -0
  38. package/src/stories/assets/discord.svg +1 -0
  39. package/src/stories/assets/docs.png +0 -0
  40. package/src/stories/assets/figma-plugin.png +0 -0
  41. package/src/stories/assets/github.svg +1 -0
  42. package/src/stories/assets/share.png +0 -0
  43. package/src/stories/assets/styling.png +0 -0
  44. package/src/stories/assets/testing.png +0 -0
  45. package/src/stories/assets/theming.png +0 -0
  46. package/src/stories/assets/tutorials.svg +1 -0
  47. package/src/stories/assets/youtube.svg +1 -0
  48. package/src/stories/button.css +30 -0
  49. package/src/stories/header.css +32 -0
  50. package/src/stories/page.css +69 -0
  51. package/src/styles.scss +11 -0
  52. package/src/vite-env.d.ts +1 -0
  53. package/tsconfig-build.json +25 -0
  54. package/tsconfig.app.json +27 -0
  55. package/tsconfig.json +16 -0
  56. package/tsconfig.node.json +11 -0
  57. package/vite.config.ts +40 -0
@@ -0,0 +1,32 @@
1
+ .storybook-header {
2
+ font-family: 'Nunito Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
3
+ border-bottom: 1px solid rgba(0, 0, 0, 0.1);
4
+ padding: 15px 20px;
5
+ display: flex;
6
+ align-items: center;
7
+ justify-content: space-between;
8
+ }
9
+
10
+ .storybook-header svg {
11
+ display: inline-block;
12
+ vertical-align: top;
13
+ }
14
+
15
+ .storybook-header h1 {
16
+ font-weight: 700;
17
+ font-size: 20px;
18
+ line-height: 1;
19
+ margin: 6px 0 6px 10px;
20
+ display: inline-block;
21
+ vertical-align: top;
22
+ }
23
+
24
+ .storybook-header button + button {
25
+ margin-left: 10px;
26
+ }
27
+
28
+ .storybook-header .welcome {
29
+ color: #333;
30
+ font-size: 14px;
31
+ margin-right: 10px;
32
+ }
@@ -0,0 +1,69 @@
1
+ .storybook-page {
2
+ font-family: 'Nunito Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
3
+ font-size: 14px;
4
+ line-height: 24px;
5
+ padding: 48px 20px;
6
+ margin: 0 auto;
7
+ max-width: 600px;
8
+ color: #333;
9
+ }
10
+
11
+ .storybook-page h2 {
12
+ font-weight: 700;
13
+ font-size: 32px;
14
+ line-height: 1;
15
+ margin: 0 0 4px;
16
+ display: inline-block;
17
+ vertical-align: top;
18
+ }
19
+
20
+ .storybook-page p {
21
+ margin: 1em 0;
22
+ }
23
+
24
+ .storybook-page a {
25
+ text-decoration: none;
26
+ color: #1ea7fd;
27
+ }
28
+
29
+ .storybook-page ul {
30
+ padding-left: 30px;
31
+ margin: 1em 0;
32
+ }
33
+
34
+ .storybook-page li {
35
+ margin-bottom: 8px;
36
+ }
37
+
38
+ .storybook-page .tip {
39
+ display: inline-block;
40
+ border-radius: 1em;
41
+ font-size: 11px;
42
+ line-height: 12px;
43
+ font-weight: 700;
44
+ background: #e7fdd8;
45
+ color: #66bf3c;
46
+ padding: 4px 12px;
47
+ margin-right: 10px;
48
+ vertical-align: top;
49
+ }
50
+
51
+ .storybook-page .tip-wrapper {
52
+ font-size: 13px;
53
+ line-height: 20px;
54
+ margin-top: 40px;
55
+ margin-bottom: 40px;
56
+ }
57
+
58
+ .storybook-page .tip-wrapper svg {
59
+ display: inline-block;
60
+ height: 12px;
61
+ width: 12px;
62
+ margin-right: 4px;
63
+ vertical-align: top;
64
+ margin-top: 3px;
65
+ }
66
+
67
+ .storybook-page .tip-wrapper svg path {
68
+ fill: #1ea7fd;
69
+ }
@@ -0,0 +1,11 @@
1
+ .teste {
2
+ font-family: $font-lexend-deca;
3
+ font-size: $font-size-h1;
4
+ font-weight: $font-weight-bold;
5
+ color: $color-brand-blue-40;
6
+ }
7
+
8
+ .teste2 {
9
+ font-family: $font-source-sans-3;
10
+ font-size: $font-size-h4;
11
+ }
@@ -0,0 +1 @@
1
+ /// <reference types="vite/client" />
@@ -0,0 +1,25 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES2020",
4
+ "useDefineForClassFields": true,
5
+ "lib": ["ES2020", "DOM", "DOM.Iterable"],
6
+ "module": "ESNext",
7
+ "skipLibCheck": true,
8
+
9
+ /* Bundler mode */
10
+ "moduleResolution": "bundler",
11
+ "allowImportingTsExtensions": true,
12
+ "resolveJsonModule": true,
13
+ "isolatedModules": true,
14
+ "noEmit": true,
15
+ "jsx": "react-jsx",
16
+
17
+ /* Linting */
18
+ "strict": true,
19
+ "noUnusedLocals": true,
20
+ "noUnusedParameters": true,
21
+ "noFallthroughCasesInSwitch": true
22
+ },
23
+ "include": ["lib"],
24
+ "references": [{ "path": "./tsconfig.node.json" }]
25
+ }
@@ -0,0 +1,27 @@
1
+ {
2
+ "compilerOptions": {
3
+ "composite": true,
4
+ "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
5
+ "target": "ES2020",
6
+ "useDefineForClassFields": true,
7
+ "lib": ["ES2020", "DOM", "DOM.Iterable"],
8
+ "module": "ESNext",
9
+ "skipLibCheck": true,
10
+
11
+ /* Bundler mode */
12
+ "moduleResolution": "bundler",
13
+ "allowImportingTsExtensions": true,
14
+ "resolveJsonModule": true,
15
+ "isolatedModules": true,
16
+ "moduleDetection": "force",
17
+ "noEmit": true,
18
+ "jsx": "react-jsx",
19
+
20
+ /* Linting */
21
+ "strict": true,
22
+ "noUnusedLocals": true,
23
+ "noUnusedParameters": true,
24
+ "noFallthroughCasesInSwitch": true
25
+ },
26
+ "include": ["src", "lib"]
27
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "files": [],
3
+ "references": [
4
+ {
5
+ "path": "./tsconfig.app.json"
6
+ },
7
+ {
8
+ "path": "./tsconfig.node.json"
9
+ }
10
+ ],
11
+ "include": [
12
+ // ...other includes
13
+ "package.json"
14
+ ]
15
+
16
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "compilerOptions": {
3
+ "composite": true,
4
+ "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
5
+ "skipLibCheck": true,
6
+ "module": "ESNext",
7
+ "moduleResolution": "bundler",
8
+ "allowSyntheticDefaultImports": true,
9
+ },
10
+ "include": ["vite.config.ts"]
11
+ }
package/vite.config.ts ADDED
@@ -0,0 +1,40 @@
1
+ import { defineConfig } from 'vite'
2
+ import react from '@vitejs/plugin-react'
3
+ import dts from 'vite-plugin-dts'
4
+ import dotenv from 'dotenv';
5
+ import pkg from "./package.json"
6
+ import { resolve } from 'path'
7
+
8
+ dotenv.config();
9
+
10
+ process.env["VITE_LIB_VERSION"] = pkg.version;
11
+
12
+ // https://vitejs.dev/config/
13
+ export default defineConfig({
14
+ plugins: [react(), dts({ include: ['lib'] })],
15
+ build: {
16
+ copyPublicDir: false,
17
+ target: "es2015",
18
+ lib: {
19
+ entry: resolve(__dirname, './lib/main.ts'),
20
+ name: 'aurora',
21
+ formats: ['es'],
22
+ },
23
+ rollupOptions: {
24
+ external: ['react', 'react/jsx-runtime'],
25
+ },
26
+ },
27
+ css: {
28
+ preprocessorOptions: {
29
+ scss: {
30
+ additionalData: [
31
+ `
32
+ @import "src/core/tokens/colors.scss";
33
+ @import "src/core/tokens/fonts.scss";
34
+ @import "src/core/tokens/layout.scss";
35
+ @import "src/core/tokens/elements.scss";`,
36
+ ],
37
+ },
38
+ },
39
+ },
40
+ })