@base-framework/atoms 1.0.6 → 1.0.7
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/atoms.js +1 -1
- package/dist/atoms.js.map +3 -3
- package/dist/types/atoms.d.ts +7 -0
- package/package.json +1 -1
package/dist/types/atoms.d.ts
CHANGED
|
@@ -105,6 +105,13 @@ export const Input: Function;
|
|
|
105
105
|
* Creates a label element.
|
|
106
106
|
*/
|
|
107
107
|
export const Label: Function;
|
|
108
|
+
/**
|
|
109
|
+
* Creates a checkbox input element.
|
|
110
|
+
*
|
|
111
|
+
* @param {object} props - Properties for the checkbox input element.
|
|
112
|
+
* @return {object} - Returns an object representing the checkbox input element.
|
|
113
|
+
*/
|
|
114
|
+
export const Checkbox: Function;
|
|
108
115
|
/**
|
|
109
116
|
* Creates a section element.
|
|
110
117
|
*/
|