globalfy-design-system 1.10.2 → 1.12.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.
- package/dist/components/atoms/Button/Button.d.ts +1 -1
- package/dist/components/atoms/Button/Button.stories.d.ts +1 -1
- package/dist/components/atoms/DropdownList/DropdownList.types.d.ts +1 -1
- package/dist/components/atoms/Icon/glob-icons/glob-icons-list.d.ts +4 -0
- package/dist/components/atoms/Icon/glob-icons/glob-icons.d.ts +5 -0
- package/dist/components/atoms/Icon/glob-icons/glob-icons.stories.d.ts +8 -0
- package/dist/components/atoms/Icon/glob-icons/icons/glob-documents.d.ts +1 -0
- package/dist/components/atoms/Icon/glob-icons/icons/glob-mastercard-icon.d.ts +1 -0
- package/dist/components/atoms/Icon/glob-icons/icons/glob-paypal-icon.d.ts +1 -0
- package/dist/components/atoms/Icon/glob-icons/icons/glob-request.d.ts +1 -0
- package/dist/components/atoms/Icon/glob-icons/icons/glob-visa-icon.d.ts +1 -0
- package/dist/components/atoms/Icon/index.d.ts +1 -0
- package/dist/components/atoms/Logo/Logo.stories.d.ts +1 -1
- package/dist/components/atoms/PhoneNumberInput/PhoneNumberInput.d.ts +1 -1
- package/dist/components/molecules/error-state/error-state.stories.d.ts +1 -1
- package/dist/globalfy-design-system.js +6010 -5913
- package/dist/globalfy-design-system.umd.cjs +22 -22
- package/package.json +13 -13
|
@@ -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 { 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,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 MasterCardIcon: (props: React.SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const PaypalIcon: (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;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const VisaCardIcon: (props: React.SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
|