@goodhood-web/ui 3.3.0-development.2 → 3.3.0-development.4

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,5 @@
1
+ import { ButtonProps } from '../Button/Button.types';
2
+ declare const CarouselNavigation: import('react').ForwardRefExoticComponent<Omit<ButtonProps, "children" | "className" | "ref"> & {
3
+ direction: "left" | "right";
4
+ } & import('react').RefAttributes<HTMLButtonElement>>;
5
+ export default CarouselNavigation;
@@ -0,0 +1,4 @@
1
+ import { ButtonProps } from '../Button/Button.types';
2
+ export type CarouselNavigationProps = Omit<ButtonProps, 'children' | 'ref' | 'className'> & {
3
+ direction: 'left' | 'right';
4
+ };
@@ -0,0 +1 @@
1
+ export declare const GalleryPlaceholder: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,3 @@
1
+ import { CarouselIndicatorProps } from './CarouselIndicator.types';
2
+ export declare const CarouselIndicator: ({ currentStep, hasContainer, maxDots, onDotClick, totalSteps, type, }: CarouselIndicatorProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default CarouselIndicator;
@@ -0,0 +1,18 @@
1
+ type BaseCarouselIndicatorProps = {
2
+ currentStep: number;
3
+ hasContainer?: boolean;
4
+ maxDots?: number;
5
+ onDotClick?: (index: number) => void;
6
+ totalSteps: number;
7
+ type: 'dots' | 'numbers';
8
+ };
9
+ export type CarouselIndicatorDotsProps = BaseCarouselIndicatorProps & {
10
+ maxDots: number;
11
+ onDotClick?: (index: number) => void;
12
+ type: 'dots';
13
+ };
14
+ export type CarouselIndicatorNumbersProps = BaseCarouselIndicatorProps & {
15
+ type: 'numbers';
16
+ };
17
+ export type CarouselIndicatorProps = CarouselIndicatorDotsProps | CarouselIndicatorNumbersProps;
18
+ export {};
@@ -135,6 +135,12 @@ declare const iconsMap: {
135
135
  desc?: string;
136
136
  descId?: string;
137
137
  }>;
138
+ rotate: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
139
+ title?: string;
140
+ titleId?: string;
141
+ desc?: string;
142
+ descId?: string;
143
+ }>;
138
144
  send: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
139
145
  title?: string;
140
146
  titleId?: string;
@@ -383,6 +389,12 @@ declare const iconsMap: {
383
389
  desc?: string;
384
390
  descId?: string;
385
391
  }>;
392
+ readonly photo_upload: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
393
+ title?: string;
394
+ titleId?: string;
395
+ desc?: string;
396
+ descId?: string;
397
+ }>;
386
398
  readonly pin: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
387
399
  title?: string;
388
400
  titleId?: string;
@@ -47,6 +47,12 @@ declare const IconsMap: {
47
47
  desc?: string;
48
48
  descId?: string;
49
49
  }>;
50
+ rotate: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
51
+ title?: string;
52
+ titleId?: string;
53
+ desc?: string;
54
+ descId?: string;
55
+ }>;
50
56
  send: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
51
57
  title?: string;
52
58
  titleId?: string;
@@ -239,6 +239,12 @@ declare const IconsMap: {
239
239
  desc?: string;
240
240
  descId?: string;
241
241
  }>;
242
+ readonly photo_upload: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
243
+ title?: string;
244
+ titleId?: string;
245
+ desc?: string;
246
+ descId?: string;
247
+ }>;
242
248
  readonly pin: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
243
249
  title?: string;
244
250
  titleId?: string;
@@ -48,6 +48,12 @@ declare const iconsMap: {
48
48
  desc?: string;
49
49
  descId?: string;
50
50
  }>;
51
+ rotate: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
52
+ title?: string;
53
+ titleId?: string;
54
+ desc?: string;
55
+ descId?: string;
56
+ }>;
51
57
  send: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
52
58
  title?: string;
53
59
  titleId?: string;
@@ -296,6 +302,12 @@ declare const iconsMap: {
296
302
  desc?: string;
297
303
  descId?: string;
298
304
  }>;
305
+ readonly photo_upload: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
306
+ title?: string;
307
+ titleId?: string;
308
+ desc?: string;
309
+ descId?: string;
310
+ }>;
299
311
  readonly pin: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
300
312
  title?: string;
301
313
  titleId?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodhood-web/ui",
3
- "version": "3.3.0-development.2",
3
+ "version": "3.3.0-development.4",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "repository": "https://github.com/good-hood-gmbh/goodhood-web",