@propelinc/citrus-ui 0.3.3 → 0.3.4
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/citrus-ui.common.js +245 -27
- package/dist/citrus-ui.common.js.map +1 -1
- package/dist/citrus-ui.css +1 -1
- package/dist/citrus-ui.umd.js +245 -27
- package/dist/citrus-ui.umd.js.map +1 -1
- package/dist/citrus-ui.umd.min.js +5 -5
- package/dist/citrus-ui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/CCardSection.vue +1 -1
- package/src/index.d.ts +1 -0
- package/src/index.ts +2 -0
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ export const CSegmentedButtonOption: Component;
|
|
|
21
21
|
export const CSelect: Component;
|
|
22
22
|
export const CSkeletonLoaderCircle: Component;
|
|
23
23
|
export const CSkeletonLoaderText: Component;
|
|
24
|
+
export const CTextArea: Component;
|
|
24
25
|
export const CTextField: Component;
|
|
25
26
|
|
|
26
27
|
export const Theme: typeof _Theme;
|
package/src/index.ts
CHANGED
|
@@ -17,6 +17,7 @@ import _CSegmentedButtonOption from '@/components/CSegmentedButtonOption.vue';
|
|
|
17
17
|
import _CSelect from '@/components/CSelect.vue';
|
|
18
18
|
import _CSkeletonLoaderCircle from '@/components/CSkeletonLoaderCircle.vue';
|
|
19
19
|
import _CSkeletonLoaderText from '@/components/CSkeletonLoaderText.vue';
|
|
20
|
+
import _CTextArea from '@/components/CTextArea.vue';
|
|
20
21
|
import _CTextField from '@/components/CTextField.vue';
|
|
21
22
|
import _Icons from '@/theme/icons';
|
|
22
23
|
|
|
@@ -43,4 +44,5 @@ export const CSegmentedButtonOption = _CSegmentedButtonOption;
|
|
|
43
44
|
export const CSelect = _CSelect;
|
|
44
45
|
export const CSkeletonLoaderCircle = _CSkeletonLoaderCircle;
|
|
45
46
|
export const CSkeletonLoaderText = _CSkeletonLoaderText;
|
|
47
|
+
export const CTextArea = _CTextArea;
|
|
46
48
|
export const CTextField = _CTextField;
|