@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.
Files changed (2) hide show
  1. package/package.json +5 -3
  2. 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-alpha.1",
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
@@ -0,0 +1,4 @@
1
+ /* Tailwind source root for ui-react components — @source is resolved relative
2
+ to this file, so consumers can import this stylesheet from any install
3
+ layout and the component classes are still scanned. */
4
+ @source "./src";