@appkit/dek-ui 0.24.0 → 0.24.2
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/components/Card/Card.d.ts +9 -0
- package/dist/components/Carousel/Carousel.d.ts +12 -0
- package/dist/components/{Stack/Stack.styled.d.ts → Carousel/Carousel.styled.d.ts} +1 -0
- package/dist/components/{Stack/StackContainer.styled.d.ts → Carousel/CarouselContainer.styled.d.ts} +1 -0
- package/dist/components/Stack/Stack.d.ts +3 -10
- package/dist/index.d.ts +2 -0
- package/dist/index.es.js +9323 -9278
- package/dist/index.umd.js +148 -139
- package/dist/stories/Card.stories.d.ts +6 -0
- package/dist/stories/Carousel.stories.d.ts +8 -0
- package/package.json +1 -1
- package/dist/components/Stack/utils.d.ts +0 -9
- /package/dist/components/{Stack/StackContainer.d.ts → Carousel/CarouselContainer.d.ts} +0 -0
- /package/dist/components/{Stack → Carousel}/NonPassiveTouchTarget.d.ts +0 -0
- /package/dist/components/{Stack → Carousel}/touchWithMouseHOC.d.ts +0 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import Carousel from '../components/Carousel/Carousel';
|
|
3
|
+
declare const meta: Meta<typeof Carousel>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof Carousel>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Full: Story;
|
|
8
|
+
export declare const CustomContent: Story;
|
package/package.json
CHANGED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
export declare function range(start: number, end: number): number[];
|
|
2
|
-
export declare function clamp(n: number, min: number, max: number): number;
|
|
3
|
-
export declare function getTouchPosition(e: any): {
|
|
4
|
-
x: any;
|
|
5
|
-
y: any;
|
|
6
|
-
};
|
|
7
|
-
export declare function getTouchId(e: any): any;
|
|
8
|
-
export declare function omit(obj: Record<string, any>, keys: string[]): Record<string, any>;
|
|
9
|
-
export declare function modCursor(cursor: number, cardCount: number): number;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|