@appkit/dek-ui 0.24.0 → 0.24.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.
@@ -0,0 +1,6 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import Card from '../components/Card/Card';
3
+ declare const meta: Meta<typeof Card>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof Card>;
6
+ export declare const Default: Story;
@@ -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,7 +1,7 @@
1
1
  {
2
2
  "name": "@appkit/dek-ui",
3
3
  "private": false,
4
- "version": "0.24.0",
4
+ "version": "0.24.1",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "build": "tsc && vite build",
@@ -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;