qlu-20-ui-library 1.10.6 → 1.10.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.
Files changed (38) hide show
  1. package/dist/build/index.css +1 -1
  2. package/dist/build/qlu-20-ui-library.cjs +83 -83
  3. package/dist/build/qlu-20-ui-library.js +10683 -10369
  4. package/dist/components/CreditBarChart/index.d.ts +5 -3
  5. package/dist/components/CreditUsageChart/index.d.ts +12 -4
  6. package/dist/components/CreditsSlider/CreditsSlider.d.ts +17 -0
  7. package/dist/components/Svg/CloudUpload.d.ts +7 -0
  8. package/dist/components/Svg/Database.d.ts +7 -0
  9. package/dist/components/Svg/Microphone.d.ts +7 -0
  10. package/dist/components/Svg/PauseIcon.d.ts +7 -0
  11. package/dist/components/Svg/PlayIcon.d.ts +7 -0
  12. package/dist/components/Svg/Retry.d.ts +7 -0
  13. package/dist/components/index.d.ts +1 -0
  14. package/dist/types/components/CreditBarChart/index.d.ts +5 -3
  15. package/dist/types/components/CreditBarChart/index.js +62 -28
  16. package/dist/types/components/CreditUsageChart/index.d.ts +12 -4
  17. package/dist/types/components/CreditUsageChart/index.js +9 -8
  18. package/dist/types/components/CreditsSlider/CreditsSlider.d.ts +17 -0
  19. package/dist/types/components/CreditsSlider/CreditsSlider.js +76 -0
  20. package/dist/types/components/GetSvgIcon/index.js +7 -1
  21. package/dist/types/components/Svg/CloudUpload.d.ts +7 -0
  22. package/dist/types/components/Svg/CloudUpload.js +5 -0
  23. package/dist/types/components/Svg/Database.d.ts +7 -0
  24. package/dist/types/components/Svg/Database.js +5 -0
  25. package/dist/types/components/Svg/Microphone.d.ts +7 -0
  26. package/dist/types/components/Svg/Microphone.js +5 -0
  27. package/dist/types/components/Svg/PauseIcon.d.ts +7 -0
  28. package/dist/types/components/Svg/PauseIcon.js +5 -0
  29. package/dist/types/components/Svg/PlayIcon.d.ts +7 -0
  30. package/dist/types/components/Svg/PlayIcon.js +5 -0
  31. package/dist/types/components/Svg/Retry.d.ts +7 -0
  32. package/dist/types/components/Svg/Retry.js +5 -0
  33. package/dist/types/components/index.d.ts +1 -0
  34. package/dist/types/components/index.js +1 -0
  35. package/dist/types/stories/CreditUsageChart.stories.js +144 -24
  36. package/dist/types/types.d.ts +1 -1
  37. package/dist/types.d.ts +1 -1
  38. package/package.json +1 -1
@@ -0,0 +1,7 @@
1
+ interface RetryProps {
2
+ className?: string;
3
+ width?: string;
4
+ height?: string;
5
+ }
6
+ declare const Retry: ({ className, width, height, }: RetryProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default Retry;
@@ -0,0 +1,5 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const Retry = ({ className = "", width = "24", height = "24", }) => {
3
+ return (_jsx("svg", { className: className, width: width, height: height, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "M7.94073 8.06514H4.45079V4.57421M15.746 15.6176H19.2359V19.1086M11.8433 19.7394C14.7362 19.7397 17.3976 18.1584 18.7808 15.6176C17.0543 18.7903 13.3955 20.3876 9.89509 19.4966C6.39467 18.6056 3.94476 15.4534 3.94531 11.8414C3.94531 16.2033 7.48138 19.7394 11.8433 19.7394ZM19.7414 11.8414C19.7414 7.47942 16.2053 3.94336 11.8433 3.94336C8.95052 3.94312 6.28904 5.5244 4.90591 8.06514C6.63236 4.89242 10.2912 3.29521 13.7916 4.18621C17.292 5.07722 19.7419 8.22935 19.7414 11.8414Z", strokeWidth: "1.77632", strokeLinecap: "round", strokeLinejoin: "round" }) }));
4
+ };
5
+ export default Retry;
@@ -179,6 +179,7 @@ export { default as CreditManagementDropdownItem } from "./CreditsManagementDrop
179
179
  export { default as CreditManagementDatePicker } from "./CreditsManagementDropdownButton/CreditsManagementDatePicker";
180
180
  export { default as InputFieldForm } from "./InputFieldForm";
181
181
  export { default as ToastWithButtonV2 } from "./ToastWithButtonV2";
182
+ export { default as CreditsSlider } from "./CreditsSlider/CreditsSlider";
182
183
  export { default as MultiChart } from "./CompanyView/CompanyViewFinancialSummary/MultiChart/";
183
184
  export { default as FileUpload } from "./FileUpload";
184
185
  export { default as TopNavbar } from "./TopNavbar";
@@ -179,6 +179,7 @@ export { default as CreditManagementDropdownItem } from "./CreditsManagementDrop
179
179
  export { default as CreditManagementDatePicker } from "./CreditsManagementDropdownButton/CreditsManagementDatePicker";
180
180
  export { default as InputFieldForm } from "./InputFieldForm";
181
181
  export { default as ToastWithButtonV2 } from "./ToastWithButtonV2";
182
+ export { default as CreditsSlider } from "./CreditsSlider/CreditsSlider";
182
183
  // =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
183
184
  // UNUSED
184
185
  export { default as MultiChart } from "./CompanyView/CompanyViewFinancialSummary/MultiChart/";
@@ -7,38 +7,158 @@ const meta = {
7
7
  export default meta;
8
8
  const sampleData = {
9
9
  [TimeFrame.Last7Days]: [
10
- { quater: "Day 1", amount: 1000, phoneAmount: 1000 },
11
- { quater: "Day 2", amount: 1200, phoneAmount: 1200 },
12
- { quater: "Day 3", amount: 900, phoneAmount: 900 },
13
- { quater: "Day 4", amount: 1100, phoneAmount: 1100 },
14
- { quater: "Day 5", amount: 1300, phoneAmount: 1300 },
15
- { quater: "Day 6", amount: 1250, phoneAmount: 1250 },
16
- { quater: "Day 7", amount: 1400, phoneAmount: 1400 },
10
+ {
11
+ label: "Day 1",
12
+ personalEmailCount: 1000,
13
+ personalPhoneCount: 0,
14
+ workPhoneCount: 1000,
15
+ },
16
+ {
17
+ label: "Day 2",
18
+ personalEmailCount: 1200,
19
+ personalPhoneCount: 1200,
20
+ workPhoneCount: 1200,
21
+ },
22
+ {
23
+ label: "Day 3",
24
+ personalEmailCount: 900,
25
+ personalPhoneCount: 900,
26
+ workPhoneCount: 900,
27
+ },
28
+ {
29
+ label: "Day 4",
30
+ personalEmailCount: 1100,
31
+ personalPhoneCount: 1100,
32
+ workPhoneCount: 1100,
33
+ },
34
+ {
35
+ label: "Day 5",
36
+ personalEmailCount: 1300,
37
+ personalPhoneCount: 1300,
38
+ workPhoneCount: 1300,
39
+ },
40
+ {
41
+ label: "Day 6",
42
+ personalEmailCount: 1250,
43
+ personalPhoneCount: 1250,
44
+ workPhoneCount: 1250,
45
+ },
46
+ {
47
+ label: "Day 7",
48
+ personalEmailCount: 1400,
49
+ personalPhoneCount: 1400,
50
+ workPhoneCount: 1400,
51
+ },
17
52
  ],
18
53
  [TimeFrame.LastMonth]: [
19
- { quater: "Week 1", amount: 4000, phoneAmount: 4000 },
20
- { quater: "Week 2", amount: 5000, phoneAmount: 5000 },
21
- { quater: "Week 3", amount: 4500, phoneAmount: 4500 },
22
- { quater: "Week 4", amount: 4800, phoneAmount: 4800 },
54
+ {
55
+ label: "Week 1",
56
+ personalEmailCount: 4000,
57
+ personalPhoneCount: 4000,
58
+ workPhoneCount: 4000,
59
+ },
60
+ {
61
+ label: "Week 2",
62
+ personalEmailCount: 5000,
63
+ personalPhoneCount: 5000,
64
+ workPhoneCount: 5000,
65
+ },
66
+ {
67
+ label: "Week 3",
68
+ personalEmailCount: 4500,
69
+ personalPhoneCount: 4500,
70
+ workPhoneCount: 4500,
71
+ },
72
+ {
73
+ label: "Week 4",
74
+ personalEmailCount: 4800,
75
+ personalPhoneCount: 4800,
76
+ workPhoneCount: 4800,
77
+ },
23
78
  ],
24
79
  [TimeFrame.Last3Months]: [
25
- { quater: "Jan", amount: 12000, phoneAmount: 12000 },
26
- { quater: "Feb", amount: 13000, phoneAmount: 13000 },
27
- { quater: "Mar", amount: 12500, phoneAmount: 12500 },
80
+ {
81
+ label: "Jan",
82
+ personalEmailCount: 12000,
83
+ personalPhoneCount: 12000,
84
+ workPhoneCount: 12000,
85
+ },
86
+ {
87
+ label: "Feb",
88
+ personalEmailCount: 13000,
89
+ personalPhoneCount: 13000,
90
+ workPhoneCount: 13000,
91
+ },
92
+ {
93
+ label: "Mar",
94
+ personalEmailCount: 12500,
95
+ personalPhoneCount: 12500,
96
+ workPhoneCount: 12500,
97
+ },
28
98
  ],
29
99
  [TimeFrame.Last6Months]: [
30
- { quater: "Oct", amount: 10000, phoneAmount: 10000 },
31
- { quater: "Nov", amount: 9500, phoneAmount: 9500 },
32
- { quater: "Dec", amount: 11000, phoneAmount: 11000 },
33
- { quater: "Jan", amount: 12000, phoneAmount: 12000 },
34
- { quater: "Feb", amount: 13000, phoneAmount: 13000 },
35
- { quater: "Mar", amount: 12500, phoneAmount: 12500 },
100
+ {
101
+ label: "Oct",
102
+ personalEmailCount: 10000,
103
+ personalPhoneCount: 10000,
104
+ workPhoneCount: 10000,
105
+ },
106
+ {
107
+ label: "Nov",
108
+ personalEmailCount: 9500,
109
+ personalPhoneCount: 9500,
110
+ workPhoneCount: 9500,
111
+ },
112
+ {
113
+ label: "Dec",
114
+ personalEmailCount: 11000,
115
+ personalPhoneCount: 11000,
116
+ workPhoneCount: 11000,
117
+ },
118
+ {
119
+ label: "Jan",
120
+ personalEmailCount: 12000,
121
+ personalPhoneCount: 12000,
122
+ workPhoneCount: 12000,
123
+ },
124
+ {
125
+ label: "Feb",
126
+ personalEmailCount: 13000,
127
+ personalPhoneCount: 13000,
128
+ workPhoneCount: 13000,
129
+ },
130
+ {
131
+ label: "Mar",
132
+ personalEmailCount: 12500,
133
+ personalPhoneCount: 12500,
134
+ workPhoneCount: 12500,
135
+ },
36
136
  ],
37
137
  [TimeFrame.LastYear]: [
38
- { quater: "Q1", amount: 30000, phoneAmount: 30000 },
39
- { quater: "Q2", amount: 35000, phoneAmount: 35000 },
40
- { quater: "Q3", amount: 32000, phoneAmount: 32000 },
41
- { quater: "Q4", amount: 37000, phoneAmount: 37000 },
138
+ {
139
+ label: "Q1",
140
+ personalEmailCount: 30000,
141
+ personalPhoneCount: 30000,
142
+ workPhoneCount: 30000,
143
+ },
144
+ {
145
+ label: "Q2",
146
+ personalEmailCount: 35000,
147
+ personalPhoneCount: 35000,
148
+ workPhoneCount: 35000,
149
+ },
150
+ {
151
+ label: "Q3",
152
+ personalEmailCount: 32000,
153
+ personalPhoneCount: 32000,
154
+ workPhoneCount: 32000,
155
+ },
156
+ {
157
+ label: "Q4",
158
+ personalEmailCount: 37000,
159
+ personalPhoneCount: 37000,
160
+ workPhoneCount: 37000,
161
+ },
42
162
  ],
43
163
  };
44
164
  export const Past7Days = {
@@ -4,7 +4,7 @@ import { companyLineChartFinancialTabProp } from "./components/CompanyLineChartF
4
4
  import { IProduct } from "./components/CompanyProductsTab";
5
5
  import { ICompetitor } from "./components/CompetitorsCompanyTab";
6
6
  import { Education, Experience } from "./components/PeopleCard/interface";
7
- export type IconType = "checkList" | "abstractCircle" | "seo" | "abstractGeometric" | "penEdit" | "plus" | "cross" | "thumb" | "clock" | "tick" | "linkedinLogo" | "searchArrow" | "excalamationCircle" | "edit" | "delete" | "chatOneBallon" | "qluLogo" | "gear" | "home" | "paperPlaneUpRight" | "search" | "chat" | "briefcase" | "barGraph" | "book" | "company" | "dollarBriefcase" | "industry" | "jobTitle" | "location" | "strategyPath" | "tools" | "employees" | "management" | "cheveronDown" | "cheveronUp" | "passTick" | "arrowLeft" | "arrowRight" | "doNotInclude" | "tickCircle" | "phone" | "email" | "eye" | "eyeOff" | "congratulations" | "heart" | "questionMark" | "officeBuilding" | "calendar" | "notes" | "kebab" | "star" | "starBorder" | "flag" | "filterFunel" | "sortUpDownArrows" | "download" | "sparkles" | "writeNotes" | "undo" | "emailSend" | "copy" | "openLink" | "internalUser" | "bell" | "graduationHat" | "link" | "user" | "password" | "emailDisconnected" | "bolt" | "images" | "information" | "inviteUser" | "list" | "table" | "arrowDown" | "arrowUp" | "chevronLeft" | "chevronRight" | "radio" | "like" | "unlike" | "refresh" | "emailRound" | "globeSearch" | "groupIcon" | "jD" | "hiringCompany" | "sampleProfiles" | "matchingProfile" | "clipBoard" | "sortascending" | "sortdescending" | "exclamation" | "refresh-ccw" | "hourglass" | "outlook" | "menu-alt" | "simpler-tick" | "menu-extended" | "umberalla" | "sidebar" | "paperClip" | "adjustment" | "document" | "file" | "google" | "enter" | "key" | "cornerDown" | "pdf" | "notAllowed" | "pause" | "resume" | "university" | "userClock" | "ascendingOrder" | "descendingOrder" | "tickVerification" | "copied" | "archive" | "additionalInformation" | "checkCircle" | "companyClock" | "companyOwnership" | "cutBriefcase" | "box" | "lock" | "boldPlus" | "square" | "boxPencil" | "people" | "microsoftLogo" | "googleLogo" | "crunchBaseLogo" | "linkedinColoredLogo" | "googleColoredLogo" | "websiteBadge" | "arrowLeftShort" | "companyStrategy" | "industryStrategy" | "strategyUpdate" | "notDownloaded" | "unarchive" | "roundedDocument" | "marketMap" | "leadership" | "fullScreen" | "exitFullScreen" | "plannerTable" | "upload" | "agent" | "doubleTick" | "save" | "collection" | "sidebarArrow" | "lowCreditWarning" | "threeDots" | "creditAdmin" | "reply" | "gradientSparkles" | "creditAdmin" | "plusCircle" | "incomingCall" | "outgoingCall" | "message" | "missedCall" | "filter" | "call" | "voiceCall" | "messageLogo" | "requisitionLogo" | "actionLogo" | "organizationPlaceholder" | "creditSystemUser" | "addToCollection" | "pointingDown" | "stop" | "pencilEdit" | "pending" | "approved" | "rejected" | "usFlag" | "canadaFlag" | "australiaFlag" | "mexicoFlag" | "newZealandFlag" | "ukFlag" | "inbox" | "trendingUp" | "default" | "linkedin" | "outlookColored" | "googleColored" | "linkedinPremium" | "text" | "telephone" | "lightBulb" | "welcomeAboard" | "googleDriveLogo" | "spreadsheet" | "sparklingStars" | "syncLoader" | "accessRevoke" | "pipeline" | "chatSend" | "stopwatch" | "expand" | "companySourcePlaceholder" | "tickCircleFilled" | "exclamationCircleFilled" | "basicPlan" | "growthPlan" | "enterprisePlan" | "customPlan" | "loader" | "dollarCircle" | "arrowRightCircle" | "kanban" | "linkedinProfile" | "linkedinConnection" | "successFull" | "searchAi" | "greenDot" | "starIcon" | "thunder" | "logout" | "billingAndPricing" | "creditSystem" | "changePassword" | "settings" | "googleCalenderIcon" | "employeeCard" | "dash" | "dotsMenu" | "crossCircle" | "smileyFace" | "bookOpen" | "circleInformation" | "collapse" | "arrowThroughDoor" | "contactInterested" | "contactNotInterested" | "userAdd" | "userRemove" | "microsoftColoredLogo" | "contactBook" | "massUpdate" | "internetSearch" | "newsFeed" | "paragraph" | "gridView" | "searchThin" | "companyPlaceholderAvatar" | "profilePlaceholderAvatar" | "videoPlayIcon";
7
+ export type IconType = "checkList" | "abstractCircle" | "seo" | "abstractGeometric" | "penEdit" | "plus" | "cross" | "thumb" | "clock" | "tick" | "linkedinLogo" | "searchArrow" | "excalamationCircle" | "edit" | "delete" | "chatOneBallon" | "qluLogo" | "gear" | "home" | "paperPlaneUpRight" | "search" | "chat" | "briefcase" | "barGraph" | "book" | "company" | "dollarBriefcase" | "industry" | "jobTitle" | "location" | "strategyPath" | "tools" | "employees" | "management" | "cheveronDown" | "cheveronUp" | "passTick" | "arrowLeft" | "arrowRight" | "doNotInclude" | "tickCircle" | "phone" | "email" | "eye" | "eyeOff" | "congratulations" | "heart" | "questionMark" | "officeBuilding" | "calendar" | "notes" | "kebab" | "star" | "starBorder" | "flag" | "filterFunel" | "sortUpDownArrows" | "download" | "sparkles" | "writeNotes" | "undo" | "emailSend" | "copy" | "openLink" | "internalUser" | "bell" | "graduationHat" | "link" | "user" | "password" | "emailDisconnected" | "bolt" | "images" | "information" | "inviteUser" | "list" | "table" | "arrowDown" | "arrowUp" | "chevronLeft" | "chevronRight" | "radio" | "like" | "unlike" | "refresh" | "emailRound" | "globeSearch" | "groupIcon" | "jD" | "hiringCompany" | "sampleProfiles" | "matchingProfile" | "clipBoard" | "sortascending" | "sortdescending" | "exclamation" | "refresh-ccw" | "hourglass" | "outlook" | "menu-alt" | "simpler-tick" | "menu-extended" | "umberalla" | "sidebar" | "paperClip" | "adjustment" | "document" | "file" | "google" | "enter" | "key" | "cornerDown" | "pdf" | "notAllowed" | "pause" | "resume" | "university" | "userClock" | "ascendingOrder" | "descendingOrder" | "tickVerification" | "copied" | "archive" | "additionalInformation" | "checkCircle" | "companyClock" | "companyOwnership" | "cutBriefcase" | "box" | "lock" | "boldPlus" | "square" | "boxPencil" | "people" | "microsoftLogo" | "googleLogo" | "crunchBaseLogo" | "linkedinColoredLogo" | "googleColoredLogo" | "websiteBadge" | "arrowLeftShort" | "companyStrategy" | "industryStrategy" | "strategyUpdate" | "notDownloaded" | "unarchive" | "roundedDocument" | "marketMap" | "leadership" | "fullScreen" | "exitFullScreen" | "plannerTable" | "upload" | "agent" | "doubleTick" | "save" | "collection" | "sidebarArrow" | "lowCreditWarning" | "threeDots" | "creditAdmin" | "reply" | "gradientSparkles" | "creditAdmin" | "plusCircle" | "incomingCall" | "outgoingCall" | "message" | "missedCall" | "filter" | "call" | "voiceCall" | "messageLogo" | "requisitionLogo" | "actionLogo" | "organizationPlaceholder" | "creditSystemUser" | "addToCollection" | "pointingDown" | "stop" | "pencilEdit" | "pending" | "approved" | "rejected" | "usFlag" | "canadaFlag" | "australiaFlag" | "mexicoFlag" | "newZealandFlag" | "ukFlag" | "inbox" | "trendingUp" | "default" | "linkedin" | "outlookColored" | "googleColored" | "linkedinPremium" | "text" | "telephone" | "lightBulb" | "welcomeAboard" | "googleDriveLogo" | "spreadsheet" | "sparklingStars" | "syncLoader" | "accessRevoke" | "pipeline" | "chatSend" | "stopwatch" | "expand" | "companySourcePlaceholder" | "tickCircleFilled" | "exclamationCircleFilled" | "basicPlan" | "growthPlan" | "enterprisePlan" | "customPlan" | "loader" | "dollarCircle" | "arrowRightCircle" | "kanban" | "linkedinProfile" | "linkedinConnection" | "successFull" | "searchAi" | "greenDot" | "starIcon" | "thunder" | "logout" | "billingAndPricing" | "creditSystem" | "changePassword" | "settings" | "googleCalenderIcon" | "employeeCard" | "dash" | "dotsMenu" | "crossCircle" | "smileyFace" | "bookOpen" | "circleInformation" | "collapse" | "arrowThroughDoor" | "contactInterested" | "contactNotInterested" | "userAdd" | "userRemove" | "microsoftColoredLogo" | "contactBook" | "massUpdate" | "internetSearch" | "newsFeed" | "paragraph" | "gridView" | "searchThin" | "companyPlaceholderAvatar" | "profilePlaceholderAvatar" | "videoPlayIcon" | "cloudUpload" | "microphone" | "pauseIcon" | "playIcon" | "retry" | "database";
8
8
  export type SelectedUnselectedErrorVariant = "selected" | "excluded" | "unselected" | "error";
9
9
  export type IconSize = "2" | "4" | "6" | "8" | "10" | "12" | "14" | "16" | "18" | "20" | "22" | "24" | "26" | "28" | "30" | "32" | "34" | "36" | "38" | "40" | "44" | "48" | "52" | "56" | "58" | "64" | "72" | "80" | "88" | "120" | "280";
10
10
  export type TopNavbarButtonTypes = "Home" | "Chat" | "Search" | "Assignments" | "Campaigns" | "Settings";
package/dist/types.d.ts CHANGED
@@ -4,7 +4,7 @@ import { companyLineChartFinancialTabProp } from "./components/CompanyLineChartF
4
4
  import { IProduct } from "./components/CompanyProductsTab";
5
5
  import { ICompetitor } from "./components/CompetitorsCompanyTab";
6
6
  import { Education, Experience } from "./components/PeopleCard/interface";
7
- export type IconType = "checkList" | "abstractCircle" | "seo" | "abstractGeometric" | "penEdit" | "plus" | "cross" | "thumb" | "clock" | "tick" | "linkedinLogo" | "searchArrow" | "excalamationCircle" | "edit" | "delete" | "chatOneBallon" | "qluLogo" | "gear" | "home" | "paperPlaneUpRight" | "search" | "chat" | "briefcase" | "barGraph" | "book" | "company" | "dollarBriefcase" | "industry" | "jobTitle" | "location" | "strategyPath" | "tools" | "employees" | "management" | "cheveronDown" | "cheveronUp" | "passTick" | "arrowLeft" | "arrowRight" | "doNotInclude" | "tickCircle" | "phone" | "email" | "eye" | "eyeOff" | "congratulations" | "heart" | "questionMark" | "officeBuilding" | "calendar" | "notes" | "kebab" | "star" | "starBorder" | "flag" | "filterFunel" | "sortUpDownArrows" | "download" | "sparkles" | "writeNotes" | "undo" | "emailSend" | "copy" | "openLink" | "internalUser" | "bell" | "graduationHat" | "link" | "user" | "password" | "emailDisconnected" | "bolt" | "images" | "information" | "inviteUser" | "list" | "table" | "arrowDown" | "arrowUp" | "chevronLeft" | "chevronRight" | "radio" | "like" | "unlike" | "refresh" | "emailRound" | "globeSearch" | "groupIcon" | "jD" | "hiringCompany" | "sampleProfiles" | "matchingProfile" | "clipBoard" | "sortascending" | "sortdescending" | "exclamation" | "refresh-ccw" | "hourglass" | "outlook" | "menu-alt" | "simpler-tick" | "menu-extended" | "umberalla" | "sidebar" | "paperClip" | "adjustment" | "document" | "file" | "google" | "enter" | "key" | "cornerDown" | "pdf" | "notAllowed" | "pause" | "resume" | "university" | "userClock" | "ascendingOrder" | "descendingOrder" | "tickVerification" | "copied" | "archive" | "additionalInformation" | "checkCircle" | "companyClock" | "companyOwnership" | "cutBriefcase" | "box" | "lock" | "boldPlus" | "square" | "boxPencil" | "people" | "microsoftLogo" | "googleLogo" | "crunchBaseLogo" | "linkedinColoredLogo" | "googleColoredLogo" | "websiteBadge" | "arrowLeftShort" | "companyStrategy" | "industryStrategy" | "strategyUpdate" | "notDownloaded" | "unarchive" | "roundedDocument" | "marketMap" | "leadership" | "fullScreen" | "exitFullScreen" | "plannerTable" | "upload" | "agent" | "doubleTick" | "save" | "collection" | "sidebarArrow" | "lowCreditWarning" | "threeDots" | "creditAdmin" | "reply" | "gradientSparkles" | "creditAdmin" | "plusCircle" | "incomingCall" | "outgoingCall" | "message" | "missedCall" | "filter" | "call" | "voiceCall" | "messageLogo" | "requisitionLogo" | "actionLogo" | "organizationPlaceholder" | "creditSystemUser" | "addToCollection" | "pointingDown" | "stop" | "pencilEdit" | "pending" | "approved" | "rejected" | "usFlag" | "canadaFlag" | "australiaFlag" | "mexicoFlag" | "newZealandFlag" | "ukFlag" | "inbox" | "trendingUp" | "default" | "linkedin" | "outlookColored" | "googleColored" | "linkedinPremium" | "text" | "telephone" | "lightBulb" | "welcomeAboard" | "googleDriveLogo" | "spreadsheet" | "sparklingStars" | "syncLoader" | "accessRevoke" | "pipeline" | "chatSend" | "stopwatch" | "expand" | "companySourcePlaceholder" | "tickCircleFilled" | "exclamationCircleFilled" | "basicPlan" | "growthPlan" | "enterprisePlan" | "customPlan" | "loader" | "dollarCircle" | "arrowRightCircle" | "kanban" | "linkedinProfile" | "linkedinConnection" | "successFull" | "searchAi" | "greenDot" | "starIcon" | "thunder" | "logout" | "billingAndPricing" | "creditSystem" | "changePassword" | "settings" | "googleCalenderIcon" | "employeeCard" | "dash" | "dotsMenu" | "crossCircle" | "smileyFace" | "bookOpen" | "circleInformation" | "collapse" | "arrowThroughDoor" | "contactInterested" | "contactNotInterested" | "userAdd" | "userRemove" | "microsoftColoredLogo" | "contactBook" | "massUpdate" | "internetSearch" | "newsFeed" | "paragraph" | "gridView" | "searchThin" | "companyPlaceholderAvatar" | "profilePlaceholderAvatar" | "videoPlayIcon";
7
+ export type IconType = "checkList" | "abstractCircle" | "seo" | "abstractGeometric" | "penEdit" | "plus" | "cross" | "thumb" | "clock" | "tick" | "linkedinLogo" | "searchArrow" | "excalamationCircle" | "edit" | "delete" | "chatOneBallon" | "qluLogo" | "gear" | "home" | "paperPlaneUpRight" | "search" | "chat" | "briefcase" | "barGraph" | "book" | "company" | "dollarBriefcase" | "industry" | "jobTitle" | "location" | "strategyPath" | "tools" | "employees" | "management" | "cheveronDown" | "cheveronUp" | "passTick" | "arrowLeft" | "arrowRight" | "doNotInclude" | "tickCircle" | "phone" | "email" | "eye" | "eyeOff" | "congratulations" | "heart" | "questionMark" | "officeBuilding" | "calendar" | "notes" | "kebab" | "star" | "starBorder" | "flag" | "filterFunel" | "sortUpDownArrows" | "download" | "sparkles" | "writeNotes" | "undo" | "emailSend" | "copy" | "openLink" | "internalUser" | "bell" | "graduationHat" | "link" | "user" | "password" | "emailDisconnected" | "bolt" | "images" | "information" | "inviteUser" | "list" | "table" | "arrowDown" | "arrowUp" | "chevronLeft" | "chevronRight" | "radio" | "like" | "unlike" | "refresh" | "emailRound" | "globeSearch" | "groupIcon" | "jD" | "hiringCompany" | "sampleProfiles" | "matchingProfile" | "clipBoard" | "sortascending" | "sortdescending" | "exclamation" | "refresh-ccw" | "hourglass" | "outlook" | "menu-alt" | "simpler-tick" | "menu-extended" | "umberalla" | "sidebar" | "paperClip" | "adjustment" | "document" | "file" | "google" | "enter" | "key" | "cornerDown" | "pdf" | "notAllowed" | "pause" | "resume" | "university" | "userClock" | "ascendingOrder" | "descendingOrder" | "tickVerification" | "copied" | "archive" | "additionalInformation" | "checkCircle" | "companyClock" | "companyOwnership" | "cutBriefcase" | "box" | "lock" | "boldPlus" | "square" | "boxPencil" | "people" | "microsoftLogo" | "googleLogo" | "crunchBaseLogo" | "linkedinColoredLogo" | "googleColoredLogo" | "websiteBadge" | "arrowLeftShort" | "companyStrategy" | "industryStrategy" | "strategyUpdate" | "notDownloaded" | "unarchive" | "roundedDocument" | "marketMap" | "leadership" | "fullScreen" | "exitFullScreen" | "plannerTable" | "upload" | "agent" | "doubleTick" | "save" | "collection" | "sidebarArrow" | "lowCreditWarning" | "threeDots" | "creditAdmin" | "reply" | "gradientSparkles" | "creditAdmin" | "plusCircle" | "incomingCall" | "outgoingCall" | "message" | "missedCall" | "filter" | "call" | "voiceCall" | "messageLogo" | "requisitionLogo" | "actionLogo" | "organizationPlaceholder" | "creditSystemUser" | "addToCollection" | "pointingDown" | "stop" | "pencilEdit" | "pending" | "approved" | "rejected" | "usFlag" | "canadaFlag" | "australiaFlag" | "mexicoFlag" | "newZealandFlag" | "ukFlag" | "inbox" | "trendingUp" | "default" | "linkedin" | "outlookColored" | "googleColored" | "linkedinPremium" | "text" | "telephone" | "lightBulb" | "welcomeAboard" | "googleDriveLogo" | "spreadsheet" | "sparklingStars" | "syncLoader" | "accessRevoke" | "pipeline" | "chatSend" | "stopwatch" | "expand" | "companySourcePlaceholder" | "tickCircleFilled" | "exclamationCircleFilled" | "basicPlan" | "growthPlan" | "enterprisePlan" | "customPlan" | "loader" | "dollarCircle" | "arrowRightCircle" | "kanban" | "linkedinProfile" | "linkedinConnection" | "successFull" | "searchAi" | "greenDot" | "starIcon" | "thunder" | "logout" | "billingAndPricing" | "creditSystem" | "changePassword" | "settings" | "googleCalenderIcon" | "employeeCard" | "dash" | "dotsMenu" | "crossCircle" | "smileyFace" | "bookOpen" | "circleInformation" | "collapse" | "arrowThroughDoor" | "contactInterested" | "contactNotInterested" | "userAdd" | "userRemove" | "microsoftColoredLogo" | "contactBook" | "massUpdate" | "internetSearch" | "newsFeed" | "paragraph" | "gridView" | "searchThin" | "companyPlaceholderAvatar" | "profilePlaceholderAvatar" | "videoPlayIcon" | "cloudUpload" | "microphone" | "pauseIcon" | "playIcon" | "retry" | "database";
8
8
  export type SelectedUnselectedErrorVariant = "selected" | "excluded" | "unselected" | "error";
9
9
  export type IconSize = "2" | "4" | "6" | "8" | "10" | "12" | "14" | "16" | "18" | "20" | "22" | "24" | "26" | "28" | "30" | "32" | "34" | "36" | "38" | "40" | "44" | "48" | "52" | "56" | "58" | "64" | "72" | "80" | "88" | "120" | "280";
10
10
  export type TopNavbarButtonTypes = "Home" | "Chat" | "Search" | "Assignments" | "Campaigns" | "Settings";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qlu-20-ui-library",
3
- "version": "1.10.6",
3
+ "version": "1.10.9",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "dev": "vite",