@utrecht/component-library-css 4.1.0 → 5.0.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/README.md +8 -0
- package/dist/html.css +17 -520
- package/dist/index.css +144 -1924
- package/dist/prince-xml.css +8539 -0
- package/package.json +7 -2
- package/CHANGELOG.md +0 -72
- package/dist/html.js +0 -1
- package/dist/index.js +0 -1
- package/html-component.md +0 -25
- package/project.json +0 -18
- package/rollup.config.mjs +0 -37
- package/src/html.scss +0 -8
- package/src/index.scss +0 -19
package/README.md
CHANGED
|
@@ -42,3 +42,11 @@ export default class ExamplePage extends React.Component {
|
|
|
42
42
|
}
|
|
43
43
|
}
|
|
44
44
|
```
|
|
45
|
+
|
|
46
|
+
## Files included in this distribution
|
|
47
|
+
|
|
48
|
+
These files implement a white-label component library. You need to include a theme with CSS variables to make it look good.
|
|
49
|
+
|
|
50
|
+
- `dist/html.css`: component library for opinionated styling of HTML elements. Add the `utrecht-html` class name to use it.
|
|
51
|
+
- `dist/index.css`: component library for opinionated styling of HTML elements. Use the BEM class names to use the components.
|
|
52
|
+
- `dist/prince-xml.css`: component library that works with [Prince XML](http://princexml.com), to generate accessible PDFs from HTML files.
|