globalfy-design-system 1.10.2 → 1.11.0

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,5 +1,5 @@
1
- import { ButtonProps as NextUIButtonProps } from '@nextui-org/react';
2
1
  import { default as React } from 'react';
2
+ import { ButtonProps as NextUIButtonProps } from '@nextui-org/react';
3
3
 
4
4
  export type ButtonVariant = "primaryDark" | "primaryLight" | "primary" | "negative" | "secondaryNegative" | "secondary" | "tertiary" | "tertiaryDark" | "tertiaryLight" | "direction" | "directionCircle" | "icon";
5
5
  export type ButtonProps = Omit<NextUIButtonProps, "variant" | "size" | "ref"> & {
@@ -1,5 +1,5 @@
1
- import { Button } from './Button';
2
1
  import { Meta, StoryObj } from '@storybook/react';
2
+ import { Button } from './Button';
3
3
 
4
4
  declare const meta: Meta<typeof Button>;
5
5
  export default meta;
@@ -1,5 +1,5 @@
1
- import { ActionMeta, ControlProps, DropdownIndicatorProps, OptionProps, ValueContainerProps } from 'react-select';
2
1
  import { ComponentType, ReactNode } from 'react';
2
+ import { ActionMeta, ControlProps, DropdownIndicatorProps, OptionProps, ValueContainerProps } from 'react-select';
3
3
 
4
4
  export type OptionType = {
5
5
  [key: string]: unknown;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ type GlobIconBase = (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export declare const globIconsList: [string, GlobIconBase][];
4
+ export {};
@@ -0,0 +1,2 @@
1
+ export * from './icons/glob-request';
2
+ export * from './icons/glob-documents';
@@ -0,0 +1,8 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+
3
+ declare const meta: Meta<React.SVGProps<SVGSVGElement>>;
4
+ export default meta;
5
+ type Story = StoryObj<React.SVGProps<SVGSVGElement>>;
6
+ export declare const ChanceClassName: Story;
7
+ export declare const Sizes: () => import("react/jsx-runtime").JSX.Element;
8
+ export declare const Icons: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export declare const GlobDocuments: (props: React.SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export declare const GlobRequest: (props: React.SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
@@ -1,3 +1,4 @@
1
1
  export * from './Icon';
2
2
  export * from './feather/FeatherIcons';
3
+ export * from './glob-icons/glob-icons';
3
4
  export * from './unicons/UniconsIcons';
@@ -1,5 +1,5 @@
1
- import { Logo } from '.';
2
1
  import { StoryObj } from '@storybook/react';
2
+ import { Logo } from '.';
3
3
 
4
4
  declare const meta: {
5
5
  title: string;
@@ -1,4 +1,4 @@
1
- import { PhoneNumberInputProps } from './PhoneNumberInput.types';
2
1
  import { default as React } from 'react';
2
+ import { PhoneNumberInputProps } from './PhoneNumberInput.types';
3
3
 
4
4
  export declare const PhoneNumberInput: React.FC<PhoneNumberInputProps>;
@@ -1,5 +1,5 @@
1
- import { ErrorStateProps } from './error-state';
2
1
  import { StoryObj } from '@storybook/react';
2
+ import { ErrorStateProps } from './error-state';
3
3
 
4
4
  declare const meta: {
5
5
  title: string;