@latte-macchiat-io/latte-vanilla-components 0.0.160 → 0.0.162
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.cjs.js +18 -16
- package/dist/index.es.js +1601 -1420
- package/dist/types/index.d.ts +1 -0
- package/package.json +4 -5
package/dist/types/index.d.ts
CHANGED
@@ -26,3 +26,4 @@ export { TextField, type TextFieldProps, type InputType } from './components/For
|
|
26
26
|
export { Label, type LabelProps } from './components/Form/TextField/Label/Label';
|
27
27
|
export { Input, type InputProps, type InputType as InputFieldType } from './components/Form/TextField/Input/Input';
|
28
28
|
export { Textarea, type TextareaProps } from './components/Form/TextField/Textarea/Textarea';
|
29
|
+
export { createDarkTheme, createLightTheme } from './utils/theme';
|
package/package.json
CHANGED
@@ -1,15 +1,14 @@
|
|
1
1
|
{
|
2
2
|
"name": "@latte-macchiat-io/latte-vanilla-components",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.162",
|
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",
|
7
7
|
"types": "dist/types/index.d.ts",
|
8
8
|
"exports": {
|
9
|
-
"
|
10
|
-
|
11
|
-
|
12
|
-
}
|
9
|
+
"import": "./dist/index.es.js",
|
10
|
+
"require": "./dist/index.cjs.js",
|
11
|
+
"types": "./dist/types/index.d.ts"
|
13
12
|
},
|
14
13
|
"files": [
|
15
14
|
"dist"
|