@randstad-uca/design-system 1.0.94 → 1.0.95

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@randstad-uca/design-system",
3
- "version": "1.0.94",
3
+ "version": "1.0.95",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "files": [
@@ -0,0 +1,31 @@
1
+ import type { Meta, StoryObj } from '@storybook/web-components';
2
+ import '../components/SocialMediaInput';
3
+ export interface SocialMediaInputProps {
4
+ label?: string;
5
+ value?: string;
6
+ placeholder?: string;
7
+ platform?: 'linkedin' | 'facebook' | 'google';
8
+ helper?: string;
9
+ error?: boolean;
10
+ errorMessage?: string;
11
+ disabled?: boolean;
12
+ optional?: boolean;
13
+ required?: boolean;
14
+ maxLength?: number;
15
+ helperAlign?: 'left' | 'center' | 'right' | 'justify';
16
+ }
17
+ declare const meta: Meta<SocialMediaInputProps>;
18
+ export default meta;
19
+ type Story = StoryObj<SocialMediaInputProps>;
20
+ export declare const Default: Story;
21
+ export declare const WithValue: Story;
22
+ export declare const EmptyOptional: Story;
23
+ export declare const EmptyRequired: Story;
24
+ export declare const Disabled: Story;
25
+ export declare const MinLengthError: Story;
26
+ export declare const FormatError: Story;
27
+ export declare const HelperText: Story;
28
+ export declare const HelperAlignRight: Story;
29
+ export declare const MaxLength50: Story;
30
+ export declare const Facebook: Story;
31
+ export declare const Google: Story;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@randstad-uca/design-system",
3
- "version": "1.0.94",
3
+ "version": "1.0.95",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "files": [