react-frontend-common-components 0.0.4 → 0.0.9
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/index.d.ts +186 -2
- package/dist/index.js +8 -8
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -10
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +20 -6
package/package.json
CHANGED
package/src/index.ts
CHANGED
@@ -3,23 +3,37 @@ export { default as AppButton } from "./components/app-button/app-button";
|
|
3
3
|
export { default as AppSidebar } from "./components/app-sidebar/app-sidebar";
|
4
4
|
export { default as AppTextarea } from "./components/app-textarea/app-textarea";
|
5
5
|
export { default as AppTab } from "./components/app-tab/app-tab";
|
6
|
-
|
7
6
|
export { default as AppBackArrow } from "./components/app-back-arrow/app-back-arrow";
|
8
|
-
|
9
7
|
export { default as AppBadge } from "./components/app-badge/app-badge";
|
10
8
|
export { default as OverViewCard } from "./components/over-view-card/over-view-card";
|
11
|
-
|
12
9
|
export { default as AppChart } from "./components/app-chart/app-chart";
|
13
10
|
export { default as AppImageBox } from "./components/app-image-box/app-image-box";
|
14
|
-
|
15
11
|
export { default as AppAvatar } from "./components/app-avatar/app-avatar";
|
16
|
-
|
17
12
|
export { default as AppCheckboxText } from "./components/app-checkbox-text/app-checkbox-text";
|
18
13
|
export { default as AppCollapse } from "./components/app-collapse/app-collapse";
|
19
14
|
export { default as AppCustomLoader } from "./components/app-custom-loader/app-custom-loader";
|
20
|
-
|
21
15
|
export { default as AppLocationMap } from "./components/app-location-map/app-location-map";
|
22
16
|
export { default as AppModal } from "./components/app-modal/app-modal";
|
23
17
|
export { default as AppOtpField } from "./components/app-otp-field/app-otp-field";
|
24
18
|
export { default as AppPagination } from "./components/app-pagination/app-pagination";
|
25
19
|
export { default as AppPasswordInput } from "./components/app-password-input/app-password-input";
|
20
|
+
export { default as AppTitle } from "./components/app-title/app-title";
|
21
|
+
export { default as AppToggleButton } from "./components/app-toggle-button/app-toggle-button";
|
22
|
+
export { default as AppUploadImage } from "./components/app-upload-image/app-upload-image";
|
23
|
+
export { default as AppRadioGroup } from "./components/app-radio-group/app-radio-group";
|
24
|
+
export { default as AppSelect } from "./components/app-select/app-select";
|
25
|
+
export { default as AppSelectAdd } from "./components/app-select-add/app-select-add";
|
26
|
+
export { default as AppTag } from "./components/app-tag/app-tag";
|
27
|
+
export { default as AppList } from "./components/app-list/app-list";
|
28
|
+
export { default as AppLoader } from "./components/app-loader/app-loader";
|
29
|
+
export { default as AppDivider } from "./components/app-divider/app-divider";
|
30
|
+
export { default as AppLabel } from "./components/app-label/app-label";
|
31
|
+
export { default as AppBreadcrumb } from "./components/app-bread-crumb/app-bread-crumb";
|
32
|
+
export { default as AppCard } from "./components/app-card/app-card";
|
33
|
+
export { default as AppCarousel } from "./components/app-carousel/app-carousel";
|
34
|
+
export { default as AppTable } from "./components/app-table/app-table";
|
35
|
+
export { default as AppProgress } from "./components/app-progress/app-progress";
|
36
|
+
export { default as AppPopover } from "./components/app-popover/app-popover";
|
37
|
+
export { default as AppFloatButton } from "./components/app-float-button/app-float-button";
|
38
|
+
|
39
|
+
// export { default as AppPhoneField } from "./components/app-phone-field/app-phone-field";
|