@nextelco/common-ui 1.5.84 → 1.5.86

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,14 @@
1
+ import React from 'react';
2
+ import './Select.scss';
3
+ interface SelectOption {
4
+ value: string;
5
+ label: string;
6
+ }
7
+ interface SelectProps {
8
+ options: SelectOption[];
9
+ value: string;
10
+ onChange: (value: string) => void;
11
+ disabled?: boolean;
12
+ }
13
+ declare const Select: React.FC<SelectProps>;
14
+ export default Select;
@@ -0,0 +1,13 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import Select from './Select';
3
+ import './Select.scss';
4
+ declare const meta: Meta<typeof Select>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof meta>;
7
+ export declare const Default: Story;
8
+ export declare const Disabled: Story;
9
+ export declare const SmallContainer: Story;
10
+ export declare const LargeContainer: Story;
11
+ export declare const NoOptions: Story;
12
+ export declare const LongLabels: Story;
13
+ export declare const Responsive: Story;
@@ -9,6 +9,7 @@ export { default as Card3 } from './components/atoms/Card/Card3';
9
9
  export { default as Card4 } from './components/atoms/Card/Card4';
10
10
  export { default as Card5 } from './components/atoms/Card/Card5';
11
11
  export { default as Card6 } from './components/atoms/Card/Card6';
12
+ export { default as Select } from './components/atoms/Select/Select';
12
13
  export { default as ActionButton } from './components/atoms/Button/variants/ActionButton';
13
14
  export { default as FilterButton } from './components/atoms/Button/variants/FilterButton';
14
15
  export { default as IconButton } from './components/atoms/Button/variants/IconButton';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nextelco/common-ui",
3
- "version": "1.5.84",
3
+ "version": "1.5.86",
4
4
  "description": "",
5
5
  "main": "dist/bundle.js",
6
6
  "types": "dist/types/index.d.ts",