@adoptaunabuelo/react-components 0.1.0 → 0.1.3

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.
@@ -0,0 +1,125 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import { ComponentPropsWithoutRef } from 'react';
3
+
4
+ declare const BreadCrumb: (props: Props$2) => react_jsx_runtime.JSX.Element;
5
+
6
+ interface Props$2 extends ComponentPropsWithoutRef<"div"> {
7
+ selectedStep?: number;
8
+ steps: number;
9
+ }
10
+
11
+ declare const Text: (props: Props$1) => react_jsx_runtime.JSX.Element;
12
+
13
+ interface Props$1 extends ComponentPropsWithoutRef<"p"> {
14
+ type: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'p' | 'p2' | 'c1' | 'c2';
15
+ weight?: 'semibold' | 'medium' | 'regular';
16
+ }
17
+
18
+ declare const ProgressBar: (props: Props) => react_jsx_runtime.JSX.Element;
19
+
20
+ interface Props extends ComponentPropsWithoutRef<"div"> {
21
+ progress: number | Array<{
22
+ value: number;
23
+ color?: string;
24
+ }>;
25
+ minValue?: number;
26
+ maxValue?: number;
27
+ color?: string;
28
+ animationTime?: number;
29
+ animationDelay?: number;
30
+ }
31
+
32
+ declare const Color: {
33
+ background: {
34
+ primary: string;
35
+ primaryLow: string;
36
+ secondary: string;
37
+ secondaryLow: string;
38
+ deepBlue: string;
39
+ deepBlueLow: string;
40
+ orange: string;
41
+ redLow: string;
42
+ deepGreen: string;
43
+ greenLow: string;
44
+ aquamarine: string;
45
+ aquamarineLow: string;
46
+ full: string;
47
+ high: string;
48
+ mediumHigh: string;
49
+ mediumLow: string;
50
+ low: string;
51
+ soft: string;
52
+ neutral: string;
53
+ };
54
+ line: {
55
+ primary: string;
56
+ primarySoft: string;
57
+ secondary: string;
58
+ secondarySoft: string;
59
+ green: string;
60
+ greenSoft: string;
61
+ redSoft: string;
62
+ deepBlue: string;
63
+ deepBlueSoft: string;
64
+ full: string;
65
+ low: string;
66
+ soft: string;
67
+ softTransparent: string;
68
+ white: string;
69
+ whiteTransparent: string;
70
+ };
71
+ text: {
72
+ primary: string;
73
+ primarySoft: string;
74
+ deepBlue: string;
75
+ aquamarine: string;
76
+ orange: string;
77
+ red: string;
78
+ green: string;
79
+ deepGreen: string;
80
+ primaryBlack: string;
81
+ secondaryBlack: string;
82
+ full: string;
83
+ high: string;
84
+ medium: string;
85
+ low: string;
86
+ white: string;
87
+ whiteHigh: string;
88
+ whiteMedium: string;
89
+ whiteLow: string;
90
+ };
91
+ status: {
92
+ primary: {
93
+ default: string;
94
+ hover: string;
95
+ active: string;
96
+ pressed: string;
97
+ softDefault: string;
98
+ softHover: string;
99
+ softActive: string;
100
+ softPressed: string;
101
+ };
102
+ secondary: {
103
+ default: string;
104
+ hover: string;
105
+ pressed: string;
106
+ active: string;
107
+ };
108
+ neutral: {
109
+ default: string;
110
+ hover: string;
111
+ pressed: string;
112
+ active: string;
113
+ };
114
+ color: {
115
+ success: string;
116
+ successDefault: string;
117
+ error: string;
118
+ errorDefault: string;
119
+ warning: string;
120
+ warningDefault: string;
121
+ };
122
+ };
123
+ };
124
+
125
+ export { BreadCrumb, Color, ProgressBar, Text };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adoptaunabuelo/react-components",
3
- "version": "0.1.0",
3
+ "version": "0.1.3",
4
4
  "author": "Guillermo Angeles <guilleangeles94@gmail.com>",
5
5
  "private": false,
6
6
  "main": "dist/cjs/index.js",
@@ -28,7 +28,7 @@
28
28
  "scripts": {
29
29
  "dev": "vite",
30
30
  "build": "rollup -c",
31
- "release": "",
31
+ "release": "auto shipit --base-branch=main",
32
32
  "preview": "vite preview",
33
33
  "storybook": "storybook dev -p 6006",
34
34
  "build-storybook": "storybook build",
@@ -70,10 +70,13 @@
70
70
  "storybook": "^7.0.12",
71
71
  "vite": "^4.2.0"
72
72
  },
73
- "homepage": "https://github.com/chromaui/intro-storybook-react-template#readme",
73
+ "homepage": "https://github.com/Adopta-Un-Abuelo/react-components",
74
74
  "description": "A simple, customizable, and accessible library of React components",
75
75
  "keywords": [
76
76
  "react",
77
77
  "components"
78
- ]
78
+ ],
79
+ "engines": {
80
+ "node": "16"
81
+ }
79
82
  }