wex-ui-lib 1.4.2 → 1.4.3

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.
@@ -1,10 +1,11 @@
1
+ import { ComponentColors } from "../../shared/types";
1
2
  export type FooterProps = {
2
3
  logo?: {
3
4
  url: string;
4
5
  callback?: () => void;
5
6
  };
7
+ colors?: ComponentColors;
6
8
  subtitle?: string;
7
- backgroundColor?: string;
8
9
  socialMediaUrls?: {
9
10
  instagram?: string;
10
11
  twitter?: string;
@@ -5,3 +5,4 @@ declare const meta: Meta<StoryProps>;
5
5
  export default meta;
6
6
  type Story = StoryObj<StoryProps>;
7
7
  export declare const Default: Story;
8
+ export declare const Default2: Story;
@@ -1,10 +1,9 @@
1
1
  import { ButtonProps } from "../Button/index.types";
2
2
  import { ComponentColors } from "../../shared/types";
3
3
  export type NavbarProps = {
4
- config: {
4
+ config?: {
5
5
  colors?: ComponentColors;
6
6
  height?: string;
7
- centeredItems?: boolean;
8
7
  };
9
8
  logo?: {
10
9
  url: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wex-ui-lib",
3
- "version": "1.4.2",
3
+ "version": "1.4.3",
4
4
  "description": "A react component library",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",