jcicl 0.0.255 → 0.0.259
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/DefaultTemplate/DefaultTemplate.js +1 -0
- package/FormComponents/index.d.ts +1 -1
- package/FormComponents/index.js +3 -2
- package/LabeledDropdown/LabeledDropdown.js +370 -355
- package/Stepper/Stepper.js +161 -159
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
export { FormSection, FormFieldGrid, FormFieldCheckboxContainer, FormSectionTitle, FormSubtitle, FormSubsectionTitle, } from './FormComponents';
|
|
1
|
+
export { FormSection, FormFieldGrid, FormFieldCheckboxContainer, FormSectionTitle, FormSubtitle, FormSubsectionTitle, FormTextLine, } from './FormComponents';
|
package/FormComponents/index.js
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { FormFieldCheckboxContainer as i, FormFieldGrid as r, FormSection as t, FormSectionTitle as F, FormSubsectionTitle as m, FormSubtitle as l } from "./FormComponents.js";
|
|
1
|
+
import { FormFieldCheckboxContainer as i, FormFieldGrid as r, FormSection as t, FormSectionTitle as F, FormSubsectionTitle as m, FormSubtitle as n, FormTextLine as l } from "./FormComponents.js";
|
|
2
2
|
export {
|
|
3
3
|
i as FormFieldCheckboxContainer,
|
|
4
4
|
r as FormFieldGrid,
|
|
5
5
|
t as FormSection,
|
|
6
6
|
F as FormSectionTitle,
|
|
7
7
|
m as FormSubsectionTitle,
|
|
8
|
-
|
|
8
|
+
n as FormSubtitle,
|
|
9
|
+
l as FormTextLine
|
|
9
10
|
};
|