@lux-design-system/components-react 1.0.0-alpha.3 → 1.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 +17 -2
- package/dist/index.mjs +14024 -1175
- package/dist/index.umd.js +14045 -1196
- package/dist/src/alert/Alert.d.ts +7 -0
- package/dist/src/button/Button.d.ts +9 -0
- package/dist/src/checkbox/Checkbox.d.ts +9 -0
- package/dist/src/document/Document.d.ts +5 -0
- package/dist/src/form-field/FormField.d.ts +3 -0
- package/dist/src/form-field-checkbox/FormFieldCheckbox.d.ts +11 -0
- package/dist/src/form-field-description/FormFieldDescription.d.ts +9 -0
- package/dist/src/form-field-error-message/FormFieldErrorMessage.d.ts +9 -0
- package/dist/src/form-field-label/FormFieldLabel.d.ts +9 -0
- package/dist/src/form-field-radio-group/FormFieldRadioGroup.d.ts +22 -0
- package/dist/src/form-field-radio-option/FormFieldRadioOption.d.ts +20 -0
- package/dist/src/form-field-select/FormFieldSelect.d.ts +14 -0
- package/dist/src/form-field-textbox/FormFieldTextbox.d.ts +9 -0
- package/dist/src/heading/Heading.d.ts +14 -0
- package/dist/src/heading-group/HeadingGroup.d.ts +5 -0
- package/dist/src/icon/FallbackIcon.d.ts +9 -0
- package/dist/src/icon/Icon.d.ts +8 -0
- package/dist/src/index.d.ts +22 -0
- package/dist/src/link/Link.d.ts +10 -0
- package/dist/src/paragraph/Paragraph.d.ts +5 -0
- package/dist/src/pre-heading/PreHeading.d.ts +5 -0
- package/dist/src/radio-button/RadioButton.d.ts +15 -0
- package/dist/src/section/Section.d.ts +4 -0
- package/dist/src/select/Select.d.ts +7 -0
- package/dist/src/textbox/Textbox.d.ts +31 -0
- package/dist/src/utils/object.d.ts +11 -0
- package/dist/vite.config.d.ts +2 -0
- package/package.json +24 -19
- package/dist/style.css +0 -33
package/README.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# React Componenten voor het LUX Design System
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Deze package bevat de React componenten van het LUX Design System.
|
|
4
|
+
Je kan deze package gebruiken in je React- of NextJS-applicatie.
|
|
4
5
|
|
|
5
|
-
|
|
6
|
+
Het CSS component dat het LUX design system en de `lux-`- en `utrecht-`-classnames de juiste styling geeft staan in aparte packages. Vergeet niet om deze ook te installeren, samen met het `@lux-design-system/design-tokens`-package voor de design tokens.
|
|
7
|
+
|
|
8
|
+
## Installeren
|
|
9
|
+
|
|
10
|
+
### NPM
|
|
11
|
+
|
|
12
|
+
`npm install @lux-design-system/components-react --save-dev`
|
|
13
|
+
|
|
14
|
+
### Yarn
|
|
15
|
+
|
|
16
|
+
`yarn add @lux-design-system/components-react --dev`
|
|
17
|
+
|
|
18
|
+
### PNPM
|
|
19
|
+
|
|
20
|
+
`pnpm add @lux-design-system/components-react --save-dev`
|