@cagatayfdn/flora-components 0.0.71 → 0.0.73

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 (179) hide show
  1. package/dist/Accordion.css +1 -0
  2. package/dist/ActionButton.css +1 -0
  3. package/dist/AlertCard.css +1 -0
  4. package/dist/Autocomplete.css +1 -0
  5. package/dist/Button.css +1 -0
  6. package/dist/Card.css +1 -0
  7. package/dist/Checkbox.css +1 -0
  8. package/dist/Config.css +1 -0
  9. package/dist/Confirm.css +1 -0
  10. package/dist/ContentHeader.css +1 -0
  11. package/dist/Datepicker.css +1 -0
  12. package/dist/Divider.css +1 -0
  13. package/dist/DropdownList.css +1 -0
  14. package/dist/ErrorLogModal.css +1 -0
  15. package/dist/FileUpload.css +1 -0
  16. package/dist/FileUpload.module-bCNvwTRa.js +32 -0
  17. package/dist/Heading.css +1 -0
  18. package/dist/InfoBoxList.css +1 -0
  19. package/dist/InfoBoxList.module-C6t2KDOB.js +8 -0
  20. package/dist/InfoDate.css +1 -0
  21. package/dist/InfoText.css +1 -0
  22. package/dist/Input.css +1 -0
  23. package/dist/Label.css +1 -0
  24. package/dist/Legends.css +1 -0
  25. package/dist/Loading.css +1 -0
  26. package/dist/MenuItem-BGZHvTKI.js +53 -0
  27. package/dist/MenuItem.css +1 -0
  28. package/dist/Modal.css +1 -0
  29. package/dist/NoResult.css +1 -0
  30. package/dist/PageWrap.css +1 -0
  31. package/dist/Pager.css +1 -0
  32. package/dist/Panel.css +1 -0
  33. package/dist/Radio.css +1 -0
  34. package/dist/ResultError.css +1 -0
  35. package/dist/ScrollContainer.css +1 -0
  36. package/dist/Select-DcLZCXNo.js +1831 -0
  37. package/dist/Select.css +1 -0
  38. package/dist/Select.module-BVWgPUEN.js +20 -0
  39. package/dist/StatusTypography.css +1 -0
  40. package/dist/Stepper.css +1 -0
  41. package/dist/Switch.css +1 -0
  42. package/dist/Tab.css +1 -0
  43. package/dist/TableHeader-B91BXue0.js +159 -0
  44. package/dist/TableHeader.css +1 -0
  45. package/dist/Textarea.css +1 -0
  46. package/dist/Tooltip.css +1 -0
  47. package/dist/Trans-B4ILpbwK.js +343 -0
  48. package/dist/TypographyText.css +1 -0
  49. package/dist/ValidationError.css +1 -0
  50. package/dist/_commonjsHelpers-CT_km90n.js +30 -0
  51. package/dist/_isArray-CBUZFxFA.js +6 -0
  52. package/dist/_isString-BUpNGP_8.js +6 -0
  53. package/dist/_reduce-DsUCMz4O.js +148 -0
  54. package/dist/assets/icons/icons.js +62 -0
  55. package/dist/assets/images/500_error_2x.gif +0 -0
  56. package/dist/assets/images/oms.png +0 -0
  57. package/dist/components/Accordion/Accordion.js +57 -0
  58. package/dist/components/ActionButton/ActionButton.js +54 -0
  59. package/dist/components/AlertCard/AlertCard.js +29 -0
  60. package/dist/components/AuthUserCan/Permission.js +18 -0
  61. package/dist/components/AuthUserCan/index.js +23 -0
  62. package/dist/components/Autocomplete/Autocomplete.js +87 -0
  63. package/dist/components/Button/Button.js +87 -0
  64. package/dist/components/Card/Card.js +21 -0
  65. package/dist/components/Charts/Bar.js +18 -0
  66. package/dist/components/Charts/Legends.js +21 -0
  67. package/dist/components/Charts/Line.js +18 -0
  68. package/dist/components/Charts/Pie.js +43 -0
  69. package/dist/components/Charts/index.js +31 -0
  70. package/dist/components/Charts/types.js +1 -0
  71. package/dist/components/Charts/utils.js +12 -0
  72. package/dist/components/Checkbox/Checkbox.js +119 -0
  73. package/dist/components/Config/Config.js +32 -0
  74. package/dist/components/Confirm/Confirm.js +52 -0
  75. package/dist/components/ContentHeader/ContentHeader.js +75 -0
  76. package/dist/components/ContentLoader/ContentLoader.js +16 -0
  77. package/dist/components/Countdown/Countdown.js +20 -0
  78. package/dist/components/Datepicker/Datepicker.js +1478 -0
  79. package/dist/components/Divider/Divider.js +26 -0
  80. package/dist/components/Dropdown/DropdownList.js +90 -0
  81. package/dist/components/ErrorLogModal/ErrorLogModal.js +63 -0
  82. package/dist/components/FileUpload/FileUpload.js +237 -0
  83. package/dist/components/FileUpload/ImagePreview.js +19 -0
  84. package/dist/components/FileUpload/LengthCard.js +6 -0
  85. package/dist/components/FileUpload/PreviewModal.js +53 -0
  86. package/dist/components/Grid/Column.js +29 -0
  87. package/dist/components/Grid/Row.js +6 -0
  88. package/dist/components/Heading/Heading.js +22 -0
  89. package/dist/components/Icon/index.js +24 -0
  90. package/dist/components/InfiniteScroll/InfiniteScroll.js +41 -0
  91. package/dist/components/InfoBoxList/InfoBoxList.js +30 -0
  92. package/dist/components/InfoBoxList/helper.js +83 -0
  93. package/dist/components/InfoDate/InfoDate.js +19 -0
  94. package/dist/components/InfoText/InfoText.js +13 -0
  95. package/dist/components/Input/Input.js +140 -0
  96. package/dist/components/Label/Label.js +22 -0
  97. package/dist/components/Loading/Loading.js +62 -0
  98. package/dist/components/Modal/Modal.js +57 -0
  99. package/dist/components/NavigatorCard/index.js +59 -0
  100. package/dist/components/NoResult/NoResult.js +12 -0
  101. package/dist/components/Notification/Notification.js +26 -0
  102. package/dist/components/PageWrapper/PageWrap.js +46 -0
  103. package/dist/components/Pager/Pager.js +103 -0
  104. package/dist/components/Panel/Panel.js +69 -0
  105. package/dist/components/PermaLink/PermaLink.js +34 -0
  106. package/dist/components/Radio/Radio.js +96 -0
  107. package/dist/components/ResultError/ResultError.js +20 -0
  108. package/dist/components/ScrollContainer/ScrollContainer.js +21 -0
  109. package/dist/components/Select/NoData.js +10 -0
  110. package/dist/components/Select/OptionItem.js +19 -0
  111. package/dist/components/Select/Select.js +13 -0
  112. package/dist/components/Sidebar/MenuItem.js +9 -0
  113. package/dist/components/Sidebar/index.js +137 -0
  114. package/dist/components/StatusTypography/StatusTypography.js +51 -0
  115. package/dist/components/Stepper/Stepper.js +72 -0
  116. package/dist/components/Switch/Switch.js +79 -0
  117. package/dist/components/Tab/Tab.js +28 -0
  118. package/dist/components/Table/Table.js +201 -0
  119. package/dist/components/Table/TableHeader.js +14 -0
  120. package/dist/components/Textarea/Textarea.js +95 -0
  121. package/dist/components/Tooltip/Tooltip.js +1548 -0
  122. package/dist/components/TypographyText/TypographyText.js +87 -0
  123. package/dist/components/ValidationError/ValidationError.js +7 -0
  124. package/dist/components/index.js +125 -0
  125. package/dist/defineProperty-DeKy1XT0.js +37 -0
  126. package/dist/enums/appearance.js +14 -0
  127. package/dist/enums/applicationTypeSlug.js +4 -0
  128. package/dist/enums/index.js +27 -0
  129. package/dist/enums/isActiveColor.js +4 -0
  130. package/dist/enums/size.js +4 -0
  131. package/dist/enums/status.js +9 -0
  132. package/dist/equals-PL9KqVQf.js +119 -0
  133. package/dist/flatpickr-CRz1AV0e.js +59 -0
  134. package/dist/hooks/index.js +9 -0
  135. package/dist/hooks/useAauth.js +40 -0
  136. package/dist/hooks/useDisclosure.js +14 -0
  137. package/dist/hooks/useNiceModal.js +13 -0
  138. package/dist/i18nInstance-CiCZbaCK.js +55 -0
  139. package/dist/includes-8YTFrx85.js +46 -0
  140. package/dist/index-BHf7G3IG.js +35 -0
  141. package/dist/index-BJU1K2Aw.js +8003 -0
  142. package/dist/index-C9yacAGx.js +359 -0
  143. package/dist/index-CB61CB0b.js +669 -0
  144. package/dist/index-H7XbDVmH.js +320 -0
  145. package/dist/index-a0GSBrWt.js +364 -0
  146. package/dist/index.css +1 -0
  147. package/dist/index.d.ts +2 -0
  148. package/dist/index.js +181 -0
  149. package/dist/jsx-runtime-BcAkpsdy.js +631 -0
  150. package/dist/keys-B0bo5Q7o.js +67 -0
  151. package/dist/locales/en/index.js +613 -0
  152. package/dist/locales/i18n.js +1417 -0
  153. package/dist/locales/index.js +5 -0
  154. package/dist/locales/tr/index.js +613 -0
  155. package/dist/prodivers.css +6 -0
  156. package/dist/prodivers.js +12 -0
  157. package/dist/react-content-loader.es-CswLCxkm.js +90 -0
  158. package/dist/react-toastify.esm-BUWNP7Nm.js +808 -0
  159. package/dist/types/common/date.js +1 -0
  160. package/dist/types/common/events.js +1 -0
  161. package/dist/types/common/forms.js +1 -0
  162. package/dist/types/common/option.js +1 -0
  163. package/dist/types/index.js +1 -0
  164. package/dist/useTranslation-CnCPcxVj.js +142 -0
  165. package/dist/utils/date.js +413 -0
  166. package/dist/utils/flatpickr.js +4 -0
  167. package/dist/utils/helper.js +1463 -0
  168. package/dist/utils/index.js +21 -0
  169. package/dist/utils/language.js +46 -0
  170. package/dist/utils/validation.js +27 -0
  171. package/dist/utils/yup.js +2921 -0
  172. package/package.json +8 -2
  173. package/dist/index.cjs.js +0 -295
  174. package/dist/index.cjs.js.map +0 -1
  175. package/dist/index.es.js +0 -25008
  176. package/dist/index.es.js.map +0 -1
  177. package/dist/index.umd.js +0 -295
  178. package/dist/index.umd.js.map +0 -1
  179. package/dist/style.css +0 -1
package/dist/index.js ADDED
@@ -0,0 +1,181 @@
1
+ import { AppAndServicesStatusApperenceType as r, AppearanceAlertCard as a, AppearanceButton as t, AppearanceDirection as f, AppearanceSpinner as p, AppearanceTag as l, DividerAppearance as d, FormFieldAppearance as m, ModalAppearanceType as u, NotificationAppearanceType as s, ThemeAppearance as x } from "./enums/appearance.js";
2
+ import { ApplicationTypeSlug as i } from "./enums/applicationTypeSlug.js";
3
+ import { isActiveColor as A } from "./enums/isActiveColor.js";
4
+ import { Size as E } from "./enums/size.js";
5
+ import { AppTypeEnum as C, CopyTextStatusEnum as R, PodStatusEnum as I, ReportStatus as M, StatusEnum as D, StatusType as S } from "./enums/status.js";
6
+ import { default as N } from "./components/Button/Button.js";
7
+ import { N as F } from "./index-H7XbDVmH.js";
8
+ import { PermFallBack as y, getAuth as P } from "./components/AuthUserCan/index.js";
9
+ import { Accordion as v, AccordionItem as b } from "./components/Accordion/Accordion.js";
10
+ import { default as k } from "./components/ActionButton/ActionButton.js";
11
+ import { default as H } from "./components/AlertCard/AlertCard.js";
12
+ import { default as V } from "./components/AuthUserCan/Permission.js";
13
+ import { default as j } from "./components/Autocomplete/Autocomplete.js";
14
+ import { default as K } from "./components/Card/Card.js";
15
+ import { default as q } from "./components/Charts/index.js";
16
+ import { default as J } from "./components/Checkbox/Checkbox.js";
17
+ import { default as X } from "./components/Config/Config.js";
18
+ import { default as $ } from "./components/Confirm/Confirm.js";
19
+ import { default as oe } from "./components/ContentHeader/ContentHeader.js";
20
+ import { default as ae } from "./components/ContentLoader/ContentLoader.js";
21
+ import { default as fe } from "./components/Countdown/Countdown.js";
22
+ import { default as le } from "./components/Datepicker/Datepicker.js";
23
+ import { default as me } from "./components/Divider/Divider.js";
24
+ import { default as se } from "./components/Dropdown/DropdownList.js";
25
+ import { default as ne } from "./components/FileUpload/FileUpload.js";
26
+ import { default as Te } from "./components/FileUpload/ImagePreview.js";
27
+ import { default as ce } from "./components/FileUpload/LengthCard.js";
28
+ import { default as _e } from "./components/FileUpload/PreviewModal.js";
29
+ import { default as Re } from "./components/Grid/Column.js";
30
+ import { default as Me } from "./components/Grid/Row.js";
31
+ import { default as Se } from "./components/Heading/Heading.js";
32
+ import { default as Ne } from "./components/Icon/index.js";
33
+ import { default as Fe } from "./components/InfiniteScroll/InfiniteScroll.js";
34
+ import { default as ye } from "./components/InfoBoxList/InfoBoxList.js";
35
+ import { createConnectedService as he } from "./components/InfoBoxList/helper.js";
36
+ import { default as be } from "./components/InfoDate/InfoDate.js";
37
+ import { InfoText as ke } from "./components/InfoText/InfoText.js";
38
+ import { default as He } from "./components/Input/Input.js";
39
+ import { default as Ve } from "./components/Label/Label.js";
40
+ import { default as je } from "./components/Loading/Loading.js";
41
+ import { default as Ke } from "./components/Modal/Modal.js";
42
+ import { default as qe } from "./components/NavigatorCard/index.js";
43
+ import { default as Je } from "./components/NoResult/NoResult.js";
44
+ import { Notification as Xe } from "./components/Notification/Notification.js";
45
+ import { default as $e } from "./components/PageWrapper/PageWrap.js";
46
+ import { default as oo } from "./components/Pager/Pager.js";
47
+ import { default as ao } from "./components/Panel/Panel.js";
48
+ import { default as fo } from "./components/PermaLink/PermaLink.js";
49
+ import { default as lo, RadioList as mo } from "./components/Radio/Radio.js";
50
+ import { default as so } from "./components/ResultError/ResultError.js";
51
+ import { default as no } from "./components/ScrollContainer/ScrollContainer.js";
52
+ import { default as To } from "./components/Select/NoData.js";
53
+ import { S as co } from "./Select-DcLZCXNo.js";
54
+ import { default as _o } from "./components/Sidebar/index.js";
55
+ import { M as Ro } from "./MenuItem-BGZHvTKI.js";
56
+ import { default as Mo } from "./components/StatusTypography/StatusTypography.js";
57
+ import { default as So } from "./components/Stepper/Stepper.js";
58
+ import { default as No } from "./components/Switch/Switch.js";
59
+ import { default as Fo } from "./components/Tab/Tab.js";
60
+ import { default as yo } from "./components/Table/Table.js";
61
+ import { T as ho } from "./TableHeader-B91BXue0.js";
62
+ import { default as bo } from "./components/Textarea/Textarea.js";
63
+ import { default as ko } from "./components/Tooltip/Tooltip.js";
64
+ import { default as Ho } from "./components/TypographyText/TypographyText.js";
65
+ import { default as Vo } from "./components/ValidationError/ValidationError.js";
66
+ import { AuthProvider as jo, useAuth as zo } from "./hooks/useAauth.js";
67
+ import { default as Yo } from "./hooks/useDisclosure.js";
68
+ import { default as Go } from "./hooks/useNiceModal.js";
69
+ import { default as Qo, t as Xo } from "./locales/i18n.js";
70
+ import { CLIENT_DATE_AND_TIME_FORMAT as $o, CLIENT_DATE_AND_TIME_SHORT_FORMAT as er, CLIENT_DATE_COMPARE_FORMAT as or, CLIENT_DATE_FILTER_FORMAT as rr, CLIENT_DATE_SHORT_FORMAT as ar, CLIENT_TIME_FORMAT as tr, CLIENT_TIME_FORMAT_PICKER as fr, DateFormats as pr, MIN_DATE_TODAY as lr, MIN_DATE_TOMORROW as dr, SERVER_DATE_AND_TIME_FORMAT as mr, SERVER_DATE_FORMAT as ur, default as sr, friendlyDate as xr } from "./utils/date.js";
71
+ import { changeLanguage as ir, getCurrentLanguage as Tr, getDatepickerLocale as Ar } from "./utils/language.js";
72
+ import { default as Er } from "./prodivers.js";
73
+ export {
74
+ v as Accordion,
75
+ b as AccordionItem,
76
+ k as ActionButton,
77
+ H as AlertCard,
78
+ r as AppAndServicesStatusApperenceType,
79
+ C as AppTypeEnum,
80
+ a as AppearanceAlertCard,
81
+ t as AppearanceButton,
82
+ f as AppearanceDirection,
83
+ p as AppearanceSpinner,
84
+ l as AppearanceTag,
85
+ i as ApplicationTypeSlug,
86
+ jo as AuthProvider,
87
+ j as Autocomplete,
88
+ N as Button,
89
+ $o as CLIENT_DATE_AND_TIME_FORMAT,
90
+ er as CLIENT_DATE_AND_TIME_SHORT_FORMAT,
91
+ or as CLIENT_DATE_COMPARE_FORMAT,
92
+ rr as CLIENT_DATE_FILTER_FORMAT,
93
+ ar as CLIENT_DATE_SHORT_FORMAT,
94
+ tr as CLIENT_TIME_FORMAT,
95
+ fr as CLIENT_TIME_FORMAT_PICKER,
96
+ K as Card,
97
+ q as Chart,
98
+ J as Checkbox,
99
+ Re as Column,
100
+ X as Config,
101
+ $ as Confirm,
102
+ oe as ContentHeader,
103
+ ae as ContentLoader,
104
+ R as CopyTextStatusEnum,
105
+ fe as Countdown,
106
+ pr as DateFormats,
107
+ le as Datepicker,
108
+ me as Divider,
109
+ d as DividerAppearance,
110
+ se as DropdownList,
111
+ ne as FileUpload,
112
+ Te as FileUploadImagePreview,
113
+ ce as FileUploadLengthCard,
114
+ _e as FileUploadPreviewModal,
115
+ m as FormFieldAppearance,
116
+ Se as Heading,
117
+ Ne as Icon,
118
+ Fe as InfiniteScroll,
119
+ ye as InfoBoxList,
120
+ be as InfoDate,
121
+ ke as InfoText,
122
+ He as Input,
123
+ Ve as Label,
124
+ je as Loading,
125
+ lr as MIN_DATE_TODAY,
126
+ dr as MIN_DATE_TOMORROW,
127
+ Ro as MenuItem,
128
+ Ke as Modal,
129
+ u as ModalAppearanceType,
130
+ qe as NavigatorCard,
131
+ F as NiceModal,
132
+ To as NoData,
133
+ Je as NoResult,
134
+ Xe as Notification,
135
+ s as NotificationAppearanceType,
136
+ $e as PageWrapper,
137
+ oo as Pager,
138
+ ao as Panel,
139
+ y as PermFallBack,
140
+ fo as PermaLink,
141
+ V as Permission,
142
+ I as PodStatusEnum,
143
+ Er as Provider,
144
+ lo as Radio,
145
+ mo as RadioList,
146
+ M as ReportStatus,
147
+ so as ResultError,
148
+ Me as Row,
149
+ mr as SERVER_DATE_AND_TIME_FORMAT,
150
+ ur as SERVER_DATE_FORMAT,
151
+ no as ScrollContainer,
152
+ co as Select,
153
+ _o as Sidebar,
154
+ E as Size,
155
+ D as StatusEnum,
156
+ S as StatusType,
157
+ Mo as StatusTypography,
158
+ So as Stepper,
159
+ No as Switch,
160
+ Fo as Tab,
161
+ yo as Table,
162
+ ho as TableHeader,
163
+ bo as Textarea,
164
+ x as ThemeAppearance,
165
+ ko as Tooltip,
166
+ Ho as TypographyText,
167
+ Vo as ValidationError,
168
+ ir as changeLanguage,
169
+ he as createConnectedService,
170
+ sr as dayjs,
171
+ xr as friendlyDate,
172
+ P as getAuth,
173
+ Tr as getCurrentLanguage,
174
+ Ar as getDatepickerLocale,
175
+ Qo as i18n,
176
+ A as isActiveColor,
177
+ Xo as t,
178
+ zo as useAuth,
179
+ Yo as useDisclosure,
180
+ Go as useNiceModal
181
+ };