@adoptaunabuelo/react-components 0.3.133 → 0.3.136

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 CHANGED
@@ -147,10 +147,6 @@ interface InputCodeProps {
147
147
  onChange?: (code: string) => void;
148
148
  }
149
149
 
150
- declare const InputDate: (props: InputDateProps) => react_jsx_runtime.JSX.Element;
151
-
152
- type InputDateProps = InputProps & {};
153
-
154
150
  declare const InputDateRange: (props: InputDateRangeProps) => react_jsx_runtime.JSX.Element;
155
151
 
156
152
  interface InputDateRangeProps {
@@ -510,7 +506,6 @@ interface TextAreaEditorProps extends ComponentPropsWithoutRef<"textarea"> {
510
506
  maxLength?: number;
511
507
  design?: "primary" | "secondary";
512
508
  ToolbarButton?: ReactNode;
513
- onChange?: (value: any) => void;
514
509
  }
515
510
 
516
511
  declare const TextArea: (props: TextAreaDefaultProps | TextAreaEditorProps) => react_jsx_runtime.JSX.Element | null;
@@ -941,4 +936,4 @@ declare const ColorV2: {
941
936
  };
942
937
  };
943
938
 
944
- export { Avatar, BreadCrumb, Button, CellSelector, Chat, CheckboxList as Checkbox, Color, ColorV2, Countdown, Counter, CurrencySelector, Dropdown, FAQs, FeedBack as Feedback, Filter, Form, Hover, Input, InputBirthday, InputChat, InputCode, InputDate, InputDateRange, InputImage, InputLocation, InputPhone, InputPrice, InputRange, Label, MenuList as Menu, ModalComponent as Modal, Pagination, Payout, ProgressBar, RadioButtonList as RadioButton, SearchBar, Select, Stamp, Switch, SwitchTag, Tabs, TagSelector, Text, TextAnimated, TextArea };
939
+ export { Avatar, BreadCrumb, Button, CellSelector, Chat, CheckboxList as Checkbox, Color, ColorV2, Countdown, Counter, CurrencySelector, Dropdown, FAQs, FeedBack as Feedback, Filter, Form, Hover, Input, InputBirthday, InputChat, InputCode, InputDateRange, InputImage, InputLocation, InputPhone, InputPrice, InputRange, Label, MenuList as Menu, ModalComponent as Modal, Pagination, Payout, ProgressBar, RadioButtonList as RadioButton, SearchBar, Select, Stamp, Switch, SwitchTag, Tabs, TagSelector, Text, TextAnimated, TextArea };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adoptaunabuelo/react-components",
3
- "version": "0.3.133",
3
+ "version": "0.3.136",
4
4
  "homepage": "https://github.com/Adopta-Un-Abuelo/react-components",
5
5
  "author": "Guillermo Angeles <guilleangeles94@gmail.com>",
6
6
  "private": false,
@@ -20,17 +20,25 @@
20
20
  "build": "rollup -c",
21
21
  "release": "auto shipit --base-branch=main",
22
22
  "prepare": "npm run build",
23
- "clean": "rm -rf package-lock.json && rm -rf node_modules && npm install",
23
+ "clean": "rm -rf package-lock.json && rm -rf node_modules && rm -rf dist && npm cache clean --force && npm install",
24
24
  "chromatic": "npx chromatic --project-token=chpt_0dcfdd1e76a01ba",
25
25
  "storybook": "BROWSER='google chrome' storybook dev -p 6006",
26
26
  "build-storybook": "storybook build"
27
27
  },
28
+ "peerDependencies": {
29
+ "react": "19.2.1",
30
+ "react-dom": "19.2.1"
31
+ },
28
32
  "dependencies": {
29
33
  "@emotion/is-prop-valid": "^1.4.0",
30
34
  "@lottiefiles/react-lottie-player": "^3.6.0",
31
35
  "@react-google-maps/api": "^2.20.7",
32
36
  "@stripe/react-stripe-js": "^5.4.1",
33
37
  "@stripe/stripe-js": "^8.5.3",
38
+ "@tiptap/extension-text-align": "^3.13.0",
39
+ "@tiptap/extension-text-style": "^3.13.0",
40
+ "@tiptap/react": "^3.13.0",
41
+ "@tiptap/starter-kit": "^3.13.0",
34
42
  "auto": "^11.3.6",
35
43
  "clsx": "^2.1.1",
36
44
  "compressorjs": "^1.2.1",
@@ -44,13 +52,9 @@
44
52
  "lucide-react": "^0.556.0",
45
53
  "moment": "^2.30.1",
46
54
  "next": "16.0.8",
47
- "react": "19.2.1",
48
55
  "react-dates": "^21.8.0",
49
- "react-dom": "19.2.1",
50
56
  "react-image-crop": "^11.0.10",
51
- "react-mobile-datepicker": "^4.0.2",
52
57
  "react-modal": "^3.16.3",
53
- "react-quill": "^2.0.0",
54
58
  "react-webcam": "^7.2.0",
55
59
  "styled-components": "^6.1.19",
56
60
  "styled-media-query": "^2.1.2"
@@ -1,9 +0,0 @@
1
- import "./date-picker.css";
2
- declare const DatePickerComponent: (props: DatePickerProps) => import("react/jsx-runtime").JSX.Element;
3
- export default DatePickerComponent;
4
- export interface DatePickerProps {
5
- isVisible: boolean;
6
- defaultValue?: Date;
7
- onSave: (date: Date) => void;
8
- onClose: () => void;
9
- }
@@ -1,4 +0,0 @@
1
- import { InputProps } from "../Basic/Input";
2
- declare const InputDate: (props: InputDateProps) => import("react/jsx-runtime").JSX.Element;
3
- export default InputDate;
4
- export type InputDateProps = InputProps & {};