globalfy-design-system 1.17.0 → 1.19.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/@types/react-unicons.d.ts +2 -2
- package/dist/components/atoms/Alert/Alert.d.ts +27 -3
- package/dist/components/atoms/Alert/index.d.ts +0 -1
- package/dist/components/atoms/Alert/useAlert.d.ts +1 -1
- package/dist/components/atoms/Avatar/Avatar.d.ts +2 -2
- package/dist/components/atoms/Button/Button.d.ts +4 -4
- package/dist/components/atoms/Button/SpinnerIcon.d.ts +7 -0
- package/dist/components/atoms/Chip/Chip.d.ts +12 -2
- package/dist/components/atoms/Chip/Chip.stories.d.ts +1 -1
- package/dist/components/atoms/Chip/index.d.ts +0 -1
- package/dist/components/atoms/DatePicker/DatePicker.d.ts +1 -1
- package/dist/components/atoms/DropdownList/DropdownList.d.ts +3 -3
- package/dist/components/atoms/Flag/Flag.d.ts +5 -1
- package/dist/components/atoms/Flag/Flag.stories.d.ts +1 -1
- package/dist/components/atoms/Flag/index.d.ts +0 -1
- package/dist/components/atoms/Icon/Icon.d.ts +1 -1
- package/dist/components/atoms/Icon/feather/featherIconsList.d.ts +1 -1
- package/dist/components/atoms/Icon/glob-icons/glob-icons.d.ts +2 -0
- package/dist/components/atoms/Icon/glob-icons/icons/glob-amex.d.ts +1 -0
- package/dist/components/atoms/Icon/glob-icons/icons/glob-discover.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-visa-icon.d.ts +1 -0
- package/dist/components/atoms/Icon/unicons/uniconsIconsList.d.ts +1 -1
- package/dist/components/atoms/Input/Input.d.ts +3 -3
- package/dist/components/atoms/InputMask/InputMask.d.ts +1 -1
- package/dist/components/atoms/Logo/Logo.d.ts +15 -2
- package/dist/components/atoms/Logo/index.d.ts +0 -1
- package/dist/components/atoms/PhoneNumberInput/PhoneNumberInput.d.ts +14 -1
- package/dist/components/atoms/PhoneNumberInput/PhoneNumberInput.stories.d.ts +1 -1
- package/dist/components/atoms/PhoneNumberInput/index.d.ts +0 -1
- package/dist/components/atoms/Popover/Popover.d.ts +16 -2
- package/dist/components/atoms/Popover/Popover.stories.d.ts +1 -1
- package/dist/components/atoms/Popover/index.d.ts +0 -1
- package/dist/components/atoms/RadioGroup/RadioGroup.d.ts +18 -2
- package/dist/components/atoms/RadioGroup/RadioGroup.stories.d.ts +1 -1
- package/dist/components/atoms/SegmentedControl/SegmentedControl.d.ts +16 -1
- package/dist/components/atoms/SegmentedControl/SegmentedControl.stories.d.ts +1 -1
- package/dist/components/atoms/SegmentedControl/index.d.ts +0 -1
- package/dist/components/atoms/Snackbar/Snackbar.d.ts +9 -2
- package/dist/components/atoms/Snackbar/useSnackbar.d.ts +1 -1
- package/dist/components/atoms/Switch/Switch.d.ts +10 -2
- package/dist/components/atoms/Switch/Switch.stories.d.ts +1 -1
- package/dist/components/atoms/Switch/index.d.ts +0 -1
- package/dist/components/atoms/Tabs/Tabs.d.ts +13 -1
- package/dist/components/atoms/Tabs/Tabs.stories.d.ts +1 -1
- package/dist/components/atoms/Tabs/index.d.ts +0 -1
- package/dist/components/atoms/Tag/Tag.d.ts +10 -1
- package/dist/components/atoms/Tag/Tag.stories.d.ts +1 -1
- package/dist/components/atoms/Tag/index.d.ts +0 -1
- package/dist/components/atoms/TextArea/TextArea.d.ts +1 -1
- package/dist/components/atoms/TextInput/TextInput.d.ts +1 -1
- package/dist/components/atoms/Tooltip/Tooltip.d.ts +2 -2
- package/dist/components/atoms/Tooltip/Tooltip.stories.d.ts +1 -1
- package/dist/components/atoms/Typography/Typography.d.ts +6 -1
- package/dist/components/atoms/Typography/Typography.stories.d.ts +1 -1
- package/dist/components/atoms/Typography/index.d.ts +0 -1
- package/dist/globalfy-design-system.js +8498 -8879
- package/dist/globalfy-design-system.umd.cjs +29 -29
- package/package.json +6 -3
- package/dist/components/atoms/Alert/Alert.types.d.ts +0 -24
- package/dist/components/atoms/Chip/Chip.types.d.ts +0 -12
- package/dist/components/atoms/Flag/Flag.types.d.ts +0 -6
- package/dist/components/atoms/Logo/Logo.types.d.ts +0 -15
- package/dist/components/atoms/PhoneNumberInput/PhoneNumberInput.types.d.ts +0 -15
- package/dist/components/atoms/Popover/Popover.types.d.ts +0 -16
- package/dist/components/atoms/RadioGroup/RadioGroup.types.d.ts +0 -18
- package/dist/components/atoms/SegmentedControl/SegmentedControl.types.d.ts +0 -17
- package/dist/components/atoms/Snackbar/Snackbar.types.d.ts +0 -9
- package/dist/components/atoms/Switch/Switch.types.d.ts +0 -10
- package/dist/components/atoms/Tabs/Tabs.types.d.ts +0 -14
- package/dist/components/atoms/Tag/Tag.types.d.ts +0 -11
- package/dist/components/atoms/Typography/Typography.types.d.ts +0 -7
|
@@ -2,7 +2,7 @@ import { StoryObj } from '@storybook/react';
|
|
|
2
2
|
|
|
3
3
|
declare const meta: {
|
|
4
4
|
title: string;
|
|
5
|
-
component: ({ children, showArrow, startOpen, content, hasCloseButton, action, size }: import('./Tooltip').TooltipProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
component: ({ children, showArrow, startOpen, content, hasCloseButton, action, size, }: import('./Tooltip').TooltipProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
6
|
tags: string[];
|
|
7
7
|
parameters: {
|
|
8
8
|
layout: string;
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { HTMLAttributes } from 'react';
|
|
2
2
|
|
|
3
|
+
export type TypographyProps = {
|
|
4
|
+
children: React.ReactNode;
|
|
5
|
+
font?: 'satoshi' | 'livvic';
|
|
6
|
+
weight?: 'light' | 'regular' | 'medium' | 'semibold' | 'bold' | 'black';
|
|
7
|
+
} & HTMLAttributes<HTMLParagraphElement>;
|
|
3
8
|
export declare const Typography: ({ children, className, font, weight, ...props }: TypographyProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -2,7 +2,7 @@ import { StoryObj } from '@storybook/react';
|
|
|
2
2
|
|
|
3
3
|
declare const meta: {
|
|
4
4
|
title: string;
|
|
5
|
-
component: ({ children, className, font, weight, ...props }: import('./Typography
|
|
5
|
+
component: ({ children, className, font, weight, ...props }: import('./Typography').TypographyProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
6
|
tags: string[];
|
|
7
7
|
};
|
|
8
8
|
export default meta;
|