@latte-macchiat-io/latte-vanilla-components 0.0.166 → 0.0.167

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,4 +1,4 @@
1
- import { SectionVariants } from './Section.recipe';
1
+ import { SectionVariants } from './Section.css';
2
2
  import { Sprinkles } from '../../styles/sprinkles.css';
3
3
  export interface SectionProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'color'>, Sprinkles, NonNullable<SectionVariants> {
4
4
  css?: string;
@@ -2,28 +2,53 @@ export * from './theme';
2
2
  export { sprinkles, type Sprinkles } from './styles/sprinkles.css';
3
3
  export { breakpoints, queries } from './styles/mediaqueries';
4
4
  export { Button, type ButtonProps } from './components/Button/Button';
5
+ export { type ButtonVariants } from './components/Button/Button.css';
5
6
  export { Section, type SectionProps } from './components/Section/Section';
7
+ export { type SectionVariants } from './components/Section/Section.css';
6
8
  export { Main, type MainProps } from './components/Main/Main';
9
+ export { type MainVariants } from './components/Main/Main.css';
7
10
  export { Header, type HeaderProps } from './components/Header/Header';
11
+ export { type HeaderVariants } from './components/Header/Header.css';
8
12
  export { Footer, type FooterProps } from './components/Footer/Footer';
13
+ export { type FooterVariants } from './components/Footer/Footer.css';
9
14
  export { Nav, type NavProps } from './components/Nav/Nav';
15
+ export { type NavVariants } from './components/Nav/Nav.css';
10
16
  export { Icon, type IconProps } from './components/Icon/Icon';
17
+ export { type IconVariants } from './components/Icon/Icon.css';
11
18
  export { Modal, type ModalProps } from './components/Modal/Modal';
19
+ export { type ModalVariants } from './components/Modal/Modal.css';
12
20
  export { Logo, type LogoProps } from './components/Logo/Logo';
21
+ export { type LogoVariants } from './components/Logo/Logo.css';
13
22
  export { Columns, type ColumnsProps } from './components/Columns/Columns';
23
+ export { type ColumnsVariants } from './components/Columns/Columns.css';
14
24
  export { Actions, type ActionsProps } from './components/Actions/Actions';
25
+ export { type ActionsVariants } from './components/Actions/Actions.css';
15
26
  export { Carousel, type CarouselProps } from './components/Carousel/Carousel';
27
+ export { type CarouselVariants } from './components/Carousel/Carousel.css';
16
28
  export { ConsentCookie, type ConsentCookieProps } from './components/ConsentCookie/ConsentCookie';
29
+ export { type ConsentCookieVariants } from './components/ConsentCookie/ConsentCookie.css';
17
30
  export { KeyNumber, type KeyNumberProps } from './components/KeyNumber/KeyNumber';
31
+ export { type KeyNumberVariants } from './components/KeyNumber/KeyNumber.css';
18
32
  export { NavSocial, type NavSocialProps, type SocialNetwork, type SocialLink } from './components/NavSocial/NavSocial';
33
+ export { type NavSocialVariants } from './components/NavSocial/NavSocial.css';
19
34
  export { NavLegal, type NavLegalProps } from './components/NavLegal/NavLegal';
35
+ export { type NavLegalVariants } from './components/NavLegal/NavLegal.css';
20
36
  export { LanguageSwitcher, type LanguageSwitcherProps, type Locale } from './components/LanguageSwitcher/LanguageSwitcher';
37
+ export { type LanguageSwitcherVariants } from './components/LanguageSwitcher/LanguageSwitcher.css';
21
38
  export { Video, type VideoProps } from './components/Video/Video';
39
+ export { type VideoVariants } from './components/Video/Video.css';
22
40
  export { VideoFullWidth, type VideoFullWidthProps } from './components/VideoFullWidth/VideoFullWidth';
41
+ export { type VideoFullWidthVariants } from './components/VideoFullWidth/VideoFullWidth.css';
23
42
  export { Form, type FormProps } from './components/Form/Form';
43
+ export { type FormVariants } from './components/Form/Form.css';
24
44
  export { Row, type RowProps } from './components/Form/Row/Row';
45
+ export { type RowVariants } from './components/Form/Row/Row.css';
25
46
  export { TextField, type TextFieldProps, type InputType } from './components/Form/TextField/TextField';
47
+ export { type TextFieldVariants } from './components/Form/TextField/TextField.css';
26
48
  export { Label, type LabelProps } from './components/Form/TextField/Label/Label';
49
+ export { type LabelVariants } from './components/Form/TextField/Label/Label.css';
27
50
  export { Input, type InputProps, type InputType as InputFieldType } from './components/Form/TextField/Input/Input';
51
+ export { type InputVariants } from './components/Form/TextField/Input/Input.css';
28
52
  export { Textarea, type TextareaProps } from './components/Form/TextField/Textarea/Textarea';
53
+ export { type TextareaVariants } from './components/Form/TextField/Textarea/Textarea.css';
29
54
  export { createDarkTheme, createLightTheme, type ThemeOverrides } from './utils/theme';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@latte-macchiat-io/latte-vanilla-components",
3
- "version": "0.0.166",
3
+ "version": "0.0.167",
4
4
  "description": "Beautiful components for amazing projects, with a touch of Vanilla 🥤",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.es.js",