@mintlify/components 0.4.1 → 0.4.2
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.js +10 -10
- package/package.json +13 -2
- /package/dist/{styles/theme.css → styles.css} +0 -0
package/dist/index.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
/* empty css
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
/* empty css */
|
|
2
|
+
import { Badge as s } from "./components/badge/badge.js";
|
|
3
|
+
import { Icon as m } from "./components/icon/icon.js";
|
|
4
|
+
import { colors as t, designTokens as c, focus as d, shadows as n } from "./styles/design-tokens.js";
|
|
5
5
|
export {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
6
|
+
s as Badge,
|
|
7
|
+
m as Icon,
|
|
8
|
+
t as colors,
|
|
9
|
+
c as designTokens,
|
|
10
|
+
d as focus,
|
|
11
|
+
n as shadows
|
|
12
12
|
};
|
package/package.json
CHANGED
|
@@ -1,12 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mintlify/components",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"description": "Mintlify Headless UI components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
7
7
|
"module": "./dist/index.js",
|
|
8
8
|
"types": "./dist/index.d.ts",
|
|
9
|
-
"sideEffects":
|
|
9
|
+
"sideEffects": [
|
|
10
|
+
"*.css"
|
|
11
|
+
],
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"import": "./dist/index.js",
|
|
16
|
+
"default": "./dist/index.js"
|
|
17
|
+
},
|
|
18
|
+
"./styles.css": "./dist/styles.css",
|
|
19
|
+
"./*.css": "./dist/components/*/*.css"
|
|
20
|
+
},
|
|
10
21
|
"files": [
|
|
11
22
|
"dist",
|
|
12
23
|
"README.md",
|
|
File without changes
|