@blateral/b.kit 2.0.0-beta.22.7 → 2.0.0-beta.23.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blateral/b.kit",
3
- "version": "2.0.0-beta.22.7",
3
+ "version": "2.0.0-beta.23.1",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "module": "lib/index.es.js",
@@ -1,36 +0,0 @@
1
- import React, { FC } from 'react';
2
- import { ResponsiveObject } from 'react-slick';
3
- export interface CarouselProps {
4
- spacing?: 'normal' | 'large';
5
- variableWidths?: boolean;
6
- isInverted?: boolean;
7
- controlNext?: (props: {
8
- isInverted?: boolean;
9
- isActive?: boolean;
10
- name?: string;
11
- }) => React.ReactNode;
12
- controlPrev?: (props: {
13
- isInverted?: boolean;
14
- isActive?: boolean;
15
- name?: string;
16
- }) => React.ReactNode;
17
- dot?: (props: {
18
- isInverted?: boolean;
19
- isActive?: boolean;
20
- index?: number;
21
- }) => React.ReactNode;
22
- beforeChange?: (props: {
23
- currentStep: number;
24
- nextStep: number;
25
- }) => void;
26
- afterChange?: (currentStep: number) => void;
27
- onInit?: (steps: number) => void;
28
- responsive?: ResponsiveObject[];
29
- slidesToShow?: number;
30
- }
31
- declare const CarouselBase: FC<CarouselProps & {
32
- className?: string;
33
- children?: React.ReactNode;
34
- }>;
35
- export default CarouselBase;
36
- //# sourceMappingURL=CarouselBase.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"CarouselBase.d.ts","sourceRoot":"","sources":["../../../../src/components/sections/carousel/CarouselBase.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAQlC,OAAO,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAC;AAgI/C,MAAM,WAAW,aAAa;IAC1B,OAAO,CAAC,EAAE,QAAQ,GAAG,OAAO,CAAC;IAC7B,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,WAAW,CAAC,EAAE,CAAC,KAAK,EAAE;QAClB,UAAU,CAAC,EAAE,OAAO,CAAC;QACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;QACnB,IAAI,CAAC,EAAE,MAAM,CAAC;KACjB,KAAK,KAAK,CAAC,SAAS,CAAC;IACtB,WAAW,CAAC,EAAE,CAAC,KAAK,EAAE;QAClB,UAAU,CAAC,EAAE,OAAO,CAAC;QACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;QACnB,IAAI,CAAC,EAAE,MAAM,CAAC;KACjB,KAAK,KAAK,CAAC,SAAS,CAAC;IACtB,GAAG,CAAC,EAAE,CAAC,KAAK,EAAE;QACV,UAAU,CAAC,EAAE,OAAO,CAAC;QACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;QACnB,KAAK,CAAC,EAAE,MAAM,CAAC;KAClB,KAAK,KAAK,CAAC,SAAS,CAAC;IACtB,YAAY,CAAC,EAAE,CAAC,KAAK,EAAE;QAAE,WAAW,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAA;KAAE,KAAK,IAAI,CAAC;IAC1E,WAAW,CAAC,EAAE,CAAC,WAAW,EAAE,MAAM,KAAK,IAAI,CAAC;IAC5C,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IACjC,UAAU,CAAC,EAAE,gBAAgB,EAAE,CAAC;IAChC,YAAY,CAAC,EAAE,MAAM,CAAC;CACzB;AAED,QAAA,MAAM,YAAY,EAAE,EAAE,CAClB,aAAa,GAAG;IAAE,SAAS,CAAC,EAAE,MAAM,CAAC;IAAC,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;CAAE,CAyHrE,CAAC;AAEF,eAAe,YAAY,CAAC"}
@@ -1,17 +0,0 @@
1
- import React from 'react';
2
- import { CarouselProps } from './CarouselBase';
3
- import { FeatureProps } from "../../blocks/Feature";
4
- export declare const FeatureCarouselComponent: React.FC<Omit<CarouselProps, "variableWidths" | "spacing" | "isInverted"> & {
5
- anchorId?: string | undefined;
6
- bgMode?: "full" | "splitted" | "inverted" | undefined;
7
- features?: FeatureProps[] | undefined;
8
- }>;
9
- declare const _default: React.FC<Omit<CarouselProps, "variableWidths" | "spacing" | "isInverted"> & {
10
- anchorId?: string | undefined;
11
- bgMode?: "full" | "splitted" | "inverted" | undefined;
12
- features?: FeatureProps[] | undefined;
13
- } & {
14
- theme?: import("../../../utils/types").RecursivePartial<import("styled-components").DefaultTheme> | undefined;
15
- }>;
16
- export default _default;
17
- //# sourceMappingURL=FeatureCarousel.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"FeatureCarousel.d.ts","sourceRoot":"","sources":["../../../../src/components/sections/carousel/FeatureCarousel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAa,MAAM,OAAO,CAAC;AAKlC,OAAqB,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AAC7D,OAAgB,EAAE,YAAY,EAAE,6BAAkC;AA6HlE,eAAO,MAAM,wBAAwB;;;;EAAkB,CAAC;;;;;;;;AACxD,wBAA6C"}
@@ -1,17 +0,0 @@
1
- import React from 'react';
2
- import { ImageProps } from "../../blocks/Image";
3
- import { CarouselProps } from './CarouselBase';
4
- export declare const ImageCarouselComponent: React.FC<Omit<CarouselProps, "variableWidths" | "isInverted"> & {
5
- anchorId?: string | undefined;
6
- bgMode?: "full" | "splitted" | "inverted" | undefined;
7
- images?: ImageProps[] | undefined;
8
- }>;
9
- declare const _default: React.FC<Omit<CarouselProps, "variableWidths" | "isInverted"> & {
10
- anchorId?: string | undefined;
11
- bgMode?: "full" | "splitted" | "inverted" | undefined;
12
- images?: ImageProps[] | undefined;
13
- } & {
14
- theme?: import("../../../utils/types").RecursivePartial<import("styled-components").DefaultTheme> | undefined;
15
- }>;
16
- export default _default;
17
- //# sourceMappingURL=ImageCarousel.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ImageCarousel.d.ts","sourceRoot":"","sources":["../../../../src/components/sections/carousel/ImageCarousel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAa,MAAM,OAAO,CAAC;AAIlC,OAAc,EAAE,UAAU,EAAE,2BAAgC;AAE5D,OAAqB,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AA6E7D,eAAO,MAAM,sBAAsB;;;;EAAgB,CAAC;;;;;;;;AACpD,wBAA2C"}
@@ -1,20 +0,0 @@
1
- import React from 'react';
2
- import { CarouselProps } from './CarouselBase';
3
- import { PromotionCardProps } from "../../blocks/PromotionCard";
4
- export declare type PromotionCarouselItem = Omit<PromotionCardProps, 'text' | 'superTitle' | 'text' | 'primaryAction' | 'secondaryAction' | 'externalLinkIcon'>;
5
- export declare const PromotionCarouselComponent: React.FC<Omit<CarouselProps, "isInverted" | "variableWidths" | "spacing"> & {
6
- anchorId?: string | undefined;
7
- bgMode?: "full" | "splitted" | "inverted" | undefined;
8
- promotions?: PromotionCarouselItem[] | undefined;
9
- externalLinkIcon?: React.ReactNode;
10
- }>;
11
- declare const _default: React.FC<Omit<CarouselProps, "isInverted" | "variableWidths" | "spacing"> & {
12
- anchorId?: string | undefined;
13
- bgMode?: "full" | "splitted" | "inverted" | undefined;
14
- promotions?: PromotionCarouselItem[] | undefined;
15
- externalLinkIcon?: React.ReactNode;
16
- } & {
17
- theme?: import("../../../utils/types").RecursivePartial<import("styled-components").DefaultTheme> | undefined;
18
- }>;
19
- export default _default;
20
- //# sourceMappingURL=PromotionCarousel.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"PromotionCarousel.d.ts","sourceRoot":"","sources":["../../../../src/components/sections/carousel/PromotionCarousel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAa,MAAM,OAAO,CAAC;AAGlC,OAAqB,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AAC7D,OAAsB,EAClB,kBAAkB,EACrB,mCAAwC;AAGzC,oBAAY,qBAAqB,GAAG,IAAI,CACpC,kBAAkB,EAChB,MAAM,GACN,YAAY,GACZ,MAAM,GACN,eAAe,GACf,iBAAiB,GACjB,kBAAkB,CACvB,CAAC;AAkFF,eAAO,MAAM,0BAA0B;;;;uBA3EZ,MAAM,SAAS;EA2EiB,CAAC;;;;;;;;;AAC5D,wBAA+C"}
@@ -1,17 +0,0 @@
1
- import React from 'react';
2
- import { CarouselProps } from './CarouselBase';
3
- import { VideoCardProps } from "../../blocks/VideoCard";
4
- export declare const VideoCarouselComponent: React.FC<Omit<CarouselProps, "variableWidths" | "spacing" | "isInverted"> & {
5
- anchorId?: string | undefined;
6
- bgMode?: "full" | "splitted" | "inverted" | undefined;
7
- videos?: VideoCardProps[] | undefined;
8
- }>;
9
- declare const _default: React.FC<Omit<CarouselProps, "variableWidths" | "spacing" | "isInverted"> & {
10
- anchorId?: string | undefined;
11
- bgMode?: "full" | "splitted" | "inverted" | undefined;
12
- videos?: VideoCardProps[] | undefined;
13
- } & {
14
- theme?: import("../../../utils/types").RecursivePartial<import("styled-components").DefaultTheme> | undefined;
15
- }>;
16
- export default _default;
17
- //# sourceMappingURL=VideoCarousel.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"VideoCarousel.d.ts","sourceRoot":"","sources":["../../../../src/components/sections/carousel/VideoCarousel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAa,MAAM,OAAO,CAAC;AAIlC,OAAqB,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AAC7D,OAAkB,EAAE,cAAc,EAAE,+BAAoC;AA0ExE,eAAO,MAAM,sBAAsB;;;;EAAgB,CAAC;;;;;;;;AACpD,wBAA2C"}