@docubook/ui-react 2.0.0-alpha.1 → 2.0.0-beta.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/package.json +5 -3
- package/styles.css +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@docubook/ui-react",
|
|
3
|
-
"version": "2.0.0-
|
|
3
|
+
"version": "2.0.0-beta.0",
|
|
4
4
|
"description": "React + DaisyUI component library for documentation sites",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -136,11 +136,13 @@
|
|
|
136
136
|
"types": "./dist/pagination.d.cts",
|
|
137
137
|
"default": "./dist/pagination.cjs"
|
|
138
138
|
}
|
|
139
|
-
}
|
|
139
|
+
},
|
|
140
|
+
"./styles.css": "./styles.css"
|
|
140
141
|
},
|
|
141
142
|
"files": [
|
|
142
143
|
"dist",
|
|
143
|
-
"README.md"
|
|
144
|
+
"README.md",
|
|
145
|
+
"styles.css"
|
|
144
146
|
],
|
|
145
147
|
"sideEffects": false,
|
|
146
148
|
"peerDependencies": {
|
package/styles.css
ADDED