@revotech-group/revotech-ui-kit 0.1.1 → 0.1.20
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.
|
@@ -12,7 +12,7 @@ declare class InputOtp extends BaseElement {
|
|
|
12
12
|
maxLength: number;
|
|
13
13
|
onChange: () => void;
|
|
14
14
|
pin: any[];
|
|
15
|
-
variant: '
|
|
15
|
+
variant: 'digits-only' | 'with-spacing' | 'simple' | 'with-separator';
|
|
16
16
|
inputes: {
|
|
17
17
|
value: string;
|
|
18
18
|
index: number;
|
|
@@ -3,8 +3,8 @@ import { Meta, StoryObj } from '@storybook/web-components-vite';
|
|
|
3
3
|
declare const _default: Meta;
|
|
4
4
|
export default _default;
|
|
5
5
|
type Story = StoryObj;
|
|
6
|
-
export declare const
|
|
6
|
+
export declare const DigitsOnly: Story;
|
|
7
7
|
export declare const WithSpacing: Story;
|
|
8
|
+
export declare const Simple: Story;
|
|
8
9
|
export declare const WithSeparator: Story;
|
|
9
|
-
export declare const Combined: Story;
|
|
10
10
|
export declare const InteractiveDemo: Story;
|
package/package.json
CHANGED