@algorithm-shift/design-system 1.2.22 → 1.2.23
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/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +209 -196
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +185 -173
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -99,6 +99,8 @@ declare const Flex: ({ children, className, style }: ElementProps) => react_jsx_
|
|
|
99
99
|
|
|
100
100
|
declare const Grid: ({ children, className, style }: ElementProps) => react_jsx_runtime.JSX.Element;
|
|
101
101
|
|
|
102
|
+
declare const Container: ({ children, className, style }: ElementProps) => react_jsx_runtime.JSX.Element;
|
|
103
|
+
|
|
102
104
|
declare const ButtonComponent: ({ className, style, textContent, }: ButtonProps) => react_jsx_runtime.JSX.Element;
|
|
103
105
|
|
|
104
106
|
declare const ImageControl: ({ className, style, imageUrl, imageUrlExternal, altText, }: ImageProps) => react_jsx_runtime.JSX.Element;
|
|
@@ -160,4 +162,4 @@ declare const Logo: ({ className, style, imageUrl, altText, }: LogoProps) => rea
|
|
|
160
162
|
|
|
161
163
|
declare function cn(...inputs: ClassValue[]): string;
|
|
162
164
|
|
|
163
|
-
export { ButtonComponent as Button, CheckboxInput as Checkbox, DatePicker, DateRange, Dropdown, EmailInput, FileInput, Flex as FlexLayout, Grid as GridLayout, ImageControl as Image, Logo, MultiCheckbox, Notification, NumberInput, PasswordInput, PhoneInput, Profile, RadioInput, RichText, SearchInput, Shape, Spacer, StagesComponent as Stages, SwitchToggle, Table, Tabs, TextInput, Textarea, Typography, UrlInput, cn };
|
|
165
|
+
export { ButtonComponent as Button, CheckboxInput as Checkbox, Container, DatePicker, DateRange, Dropdown, EmailInput, FileInput, Flex as FlexLayout, Grid as GridLayout, ImageControl as Image, Logo, MultiCheckbox, Notification, NumberInput, PasswordInput, PhoneInput, Profile, RadioInput, RichText, SearchInput, Shape, Spacer, StagesComponent as Stages, SwitchToggle, Table, Tabs, TextInput, Textarea, Typography, UrlInput, cn };
|
package/dist/index.d.ts
CHANGED
|
@@ -99,6 +99,8 @@ declare const Flex: ({ children, className, style }: ElementProps) => react_jsx_
|
|
|
99
99
|
|
|
100
100
|
declare const Grid: ({ children, className, style }: ElementProps) => react_jsx_runtime.JSX.Element;
|
|
101
101
|
|
|
102
|
+
declare const Container: ({ children, className, style }: ElementProps) => react_jsx_runtime.JSX.Element;
|
|
103
|
+
|
|
102
104
|
declare const ButtonComponent: ({ className, style, textContent, }: ButtonProps) => react_jsx_runtime.JSX.Element;
|
|
103
105
|
|
|
104
106
|
declare const ImageControl: ({ className, style, imageUrl, imageUrlExternal, altText, }: ImageProps) => react_jsx_runtime.JSX.Element;
|
|
@@ -160,4 +162,4 @@ declare const Logo: ({ className, style, imageUrl, altText, }: LogoProps) => rea
|
|
|
160
162
|
|
|
161
163
|
declare function cn(...inputs: ClassValue[]): string;
|
|
162
164
|
|
|
163
|
-
export { ButtonComponent as Button, CheckboxInput as Checkbox, DatePicker, DateRange, Dropdown, EmailInput, FileInput, Flex as FlexLayout, Grid as GridLayout, ImageControl as Image, Logo, MultiCheckbox, Notification, NumberInput, PasswordInput, PhoneInput, Profile, RadioInput, RichText, SearchInput, Shape, Spacer, StagesComponent as Stages, SwitchToggle, Table, Tabs, TextInput, Textarea, Typography, UrlInput, cn };
|
|
165
|
+
export { ButtonComponent as Button, CheckboxInput as Checkbox, Container, DatePicker, DateRange, Dropdown, EmailInput, FileInput, Flex as FlexLayout, Grid as GridLayout, ImageControl as Image, Logo, MultiCheckbox, Notification, NumberInput, PasswordInput, PhoneInput, Profile, RadioInput, RichText, SearchInput, Shape, Spacer, StagesComponent as Stages, SwitchToggle, Table, Tabs, TextInput, Textarea, Typography, UrlInput, cn };
|