@campxdev/react-blueprint 1.0.4 → 1.0.6
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/package.json +6 -2
- package/public/index.html +3 -4
- package/src/App.tsx +8 -1
- package/src/AppContent.tsx +38 -0
- package/src/assets/images/svg/Emptylistmage.svg +9 -0
- package/src/assets/images/svg/Internalserverimage.svg +9 -0
- package/src/assets/images/svg/error-cactus.svg +9 -0
- package/src/assets/images/svg/index.ts +10 -0
- package/src/assets/images/svg/no-connection.svg +9 -0
- package/src/assets/images/svg/unauthorized.svg +9 -0
- package/src/components/Assets/ErrorPages/InternalServerError.tsx +31 -0
- package/src/components/Assets/ErrorPages/NoInternetConnection.tsx +33 -0
- package/src/components/Assets/ErrorPages/NoItemFound.tsx +33 -0
- package/src/components/Assets/ErrorPages/PageNotFound.tsx +33 -0
- package/src/components/Assets/ErrorPages/UnAuthorized.tsx +25 -0
- package/src/components/Assets/ErrorPages/styles.tsx +29 -0
- package/src/components/Assets/Icons/IconComponents/CompletedStateIcon.tsx +35 -0
- package/src/components/Assets/Icons/IconComponents/SaveIcon.tsx +42 -0
- package/src/components/Assets/Icons/IconComponents/ShareIcon.tsx +61 -0
- package/src/components/Assets/Icons/Icons.tsx +6 -0
- package/src/components/Assets/export.ts +5 -0
- package/src/components/Charts/BarChart/BarChart.tsx +160 -0
- package/src/components/Charts/LineChart/LineChart.tsx +119 -0
- package/src/components/Charts/PieChart/PieChart.tsx +95 -0
- package/src/components/Charts/TreeMap/TreeMap.tsx +151 -0
- package/src/components/Charts/types/types.ts +43 -0
- package/src/components/DataDisplay/Accordion/Accordion.tsx +55 -0
- package/src/components/DataDisplay/Accordion/utils/StandardImageList.tsx +70 -0
- package/src/components/DataDisplay/export.ts +4 -1
- package/src/components/Input/components/FetchingOptionsLoader.tsx +7 -7
- package/src/components/Input/export.ts +1 -0
- package/src/components/Layout/TabsLayout/Tabs.tsx +67 -0
- package/src/components/Layout/TabsLayout/TabsLayout.tsx +56 -0
- package/src/components/Layout/exports.ts +4 -0
- package/src/components/Navigation/Breadcrumbs/Breadcrumbs.tsx +40 -0
- package/src/components/Navigation/Sidebar/styles.tsx +1 -1
- package/src/components/Navigation/Stepper/Stepper.tsx +59 -0
- package/src/components/Navigation/Stepper/StepperComponents.tsx +72 -0
- package/src/components/Navigation/exports.ts +4 -0
- package/src/components/export.ts +3 -3
- package/src/stories/Charts/BarChart.stories.tsx +142 -0
- package/src/stories/Charts/LineChart.stories.tsx +112 -0
- package/src/stories/Charts/PieChart.stories.tsx +137 -0
- package/src/stories/Charts/Treemap.stories.tsx +224 -0
- package/src/stories/DataDisplay/Accordion.stories.tsx +62 -0
- package/src/stories/DesignSystem/typography.stories.tsx +1 -1
- package/src/stories/Layout/TabsLayout.stories.tsx +53 -0
- package/src/stories/Navigation/Breadcrumbs.stories.tsx +34 -0
- package/src/stories/Navigation/Stepper.stories.tsx +51 -0
- package/src/themes/commonTheme.ts +47 -1
- package/types/theme.d.ts +1 -1
|
@@ -1,19 +1,29 @@
|
|
|
1
1
|
import commuteSmall from "./commutex_small.svg";
|
|
2
|
+
import emptyListImage from "./Emptylistmage.svg";
|
|
2
3
|
import enrollSmall from "./enroll_logo.svg";
|
|
4
|
+
import errorCactus from "./error-cactus.svg";
|
|
3
5
|
import examsSmall from "./exams_small.svg";
|
|
4
6
|
import helpIcon from "./help-icon.svg";
|
|
5
7
|
import hostelSmall from "./hostel_small.svg";
|
|
8
|
+
import internalServerError from "./Internalserverimage.svg";
|
|
9
|
+
import noConnection from "./no-connection.svg";
|
|
6
10
|
import payxSmall from "./payx_small.svg";
|
|
7
11
|
import peopleSmall from "./people_small.svg";
|
|
8
12
|
import squareSmall from "./square_small.svg";
|
|
13
|
+
import unAuthorized from "./unauthorized.svg";
|
|
9
14
|
|
|
10
15
|
export {
|
|
11
16
|
commuteSmall,
|
|
17
|
+
emptyListImage,
|
|
12
18
|
enrollSmall,
|
|
19
|
+
errorCactus,
|
|
13
20
|
examsSmall,
|
|
14
21
|
helpIcon,
|
|
15
22
|
hostelSmall,
|
|
23
|
+
internalServerError,
|
|
24
|
+
noConnection,
|
|
16
25
|
payxSmall,
|
|
17
26
|
peopleSmall,
|
|
18
27
|
squareSmall,
|
|
28
|
+
unAuthorized,
|
|
19
29
|
};
|