@cagatayfdn/flora-components 0.0.138 → 0.0.140

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 (186) 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-BxCEtOHx.js +32 -0
  17. package/dist/Heading.css +1 -0
  18. package/dist/IconBox.css +1 -0
  19. package/dist/InfoBoxList.css +1 -0
  20. package/dist/InfoBoxList.module-BHkAHgos.js +8 -0
  21. package/dist/InfoDate.css +1 -0
  22. package/dist/InfoText.css +1 -0
  23. package/dist/Input.css +1 -0
  24. package/dist/Label.css +1 -0
  25. package/dist/Legends.css +1 -0
  26. package/dist/Loading.css +1 -0
  27. package/dist/MenuItem-Df6Zsa7E.js +53 -0
  28. package/dist/MenuItem.css +1 -0
  29. package/dist/Modal.css +1 -0
  30. package/dist/NoResult.css +1 -0
  31. package/dist/PageWrap.css +1 -0
  32. package/dist/Pager.css +1 -0
  33. package/dist/Panel.css +1 -0
  34. package/dist/Radio.css +1 -0
  35. package/dist/ResultError.css +1 -0
  36. package/dist/ScrollContainer.css +1 -0
  37. package/dist/Select-BE_y91ZN.js +1831 -0
  38. package/dist/Select.css +1 -0
  39. package/dist/Select.module-ByPQ6qr4.js +21 -0
  40. package/dist/StatusTag.css +1 -0
  41. package/dist/StatusTypography.css +1 -0
  42. package/dist/Stepper.css +1 -0
  43. package/dist/Switch.css +1 -0
  44. package/dist/Tab.css +1 -0
  45. package/dist/Table.css +1 -0
  46. package/dist/Table.module-DUqpZOLt.js +29 -0
  47. package/dist/Textarea.css +1 -0
  48. package/dist/Tooltip.css +1 -0
  49. package/dist/Trans-B4ILpbwK.js +343 -0
  50. package/dist/TypographyText.css +1 -0
  51. package/dist/ValidationError.css +1 -0
  52. package/dist/_commonjsHelpers-CT_km90n.js +30 -0
  53. package/dist/_isArray-CBUZFxFA.js +6 -0
  54. package/dist/_isString-BUpNGP_8.js +6 -0
  55. package/dist/_reduce-DsUCMz4O.js +148 -0
  56. package/dist/assets/icons/icons.js +70 -0
  57. package/dist/assets/images/500_error_2x.gif +0 -0
  58. package/dist/assets/images/oms.png +0 -0
  59. package/dist/components/Accordion/Accordion.js +60 -0
  60. package/dist/components/ActionButton/ActionButton.js +54 -0
  61. package/dist/components/AlertCard/AlertCard.js +29 -0
  62. package/dist/components/AuthUserCan/Permission.js +18 -0
  63. package/dist/components/AuthUserCan/index.js +23 -0
  64. package/dist/components/Autocomplete/Autocomplete.js +87 -0
  65. package/dist/components/Button/Button.js +87 -0
  66. package/dist/components/Card/Card.js +21 -0
  67. package/dist/components/Charts/Bar.js +18 -0
  68. package/dist/components/Charts/Legends.js +21 -0
  69. package/dist/components/Charts/Line.js +18 -0
  70. package/dist/components/Charts/Pie.js +43 -0
  71. package/dist/components/Charts/index.js +31 -0
  72. package/dist/components/Charts/types.js +1 -0
  73. package/dist/components/Charts/utils.js +12 -0
  74. package/dist/components/Checkbox/Checkbox.js +68 -0
  75. package/dist/components/Config/Config.js +32 -0
  76. package/dist/components/Confirm/Confirm.js +60 -0
  77. package/dist/components/ContentHeader/ContentHeader.js +75 -0
  78. package/dist/components/ContentLoader/ContentLoader.js +16 -0
  79. package/dist/components/Countdown/Countdown.js +20 -0
  80. package/dist/components/Datepicker/Datepicker.js +1478 -0
  81. package/dist/components/Divider/Divider.js +27 -0
  82. package/dist/components/Drawer/Provider.js +24 -0
  83. package/dist/components/Drawer/index.js +55 -0
  84. package/dist/components/Dropdown/DropdownList.js +90 -0
  85. package/dist/components/ErrorLogModal/ErrorLogModal.js +69 -0
  86. package/dist/components/FileUpload/FileUpload.js +237 -0
  87. package/dist/components/FileUpload/ImagePreview.js +19 -0
  88. package/dist/components/FileUpload/LengthCard.js +6 -0
  89. package/dist/components/FileUpload/PreviewModal.js +53 -0
  90. package/dist/components/Grid/Column.js +29 -0
  91. package/dist/components/Grid/Row.js +6 -0
  92. package/dist/components/Heading/Heading.js +22 -0
  93. package/dist/components/Icon/index.js +24 -0
  94. package/dist/components/IconBox/IconBox.js +13 -0
  95. package/dist/components/InfiniteScroll/InfiniteScroll.js +41 -0
  96. package/dist/components/InfoBoxList/InfoBoxList.js +30 -0
  97. package/dist/components/InfoBoxList/helper.js +83 -0
  98. package/dist/components/InfoDate/InfoDate.js +19 -0
  99. package/dist/components/InfoText/InfoText.js +13 -0
  100. package/dist/components/Input/Input.js +140 -0
  101. package/dist/components/Label/Label.js +22 -0
  102. package/dist/components/Loading/Loading.js +62 -0
  103. package/dist/components/Modal/Modal.js +74 -0
  104. package/dist/components/NavigatorCard/index.js +59 -0
  105. package/dist/components/NoResult/NoResult.js +12 -0
  106. package/dist/components/Notification/Notification.js +26 -0
  107. package/dist/components/PageWrapper/PageWrap.js +46 -0
  108. package/dist/components/Pager/Pager.js +103 -0
  109. package/dist/components/Panel/Panel.js +71 -0
  110. package/dist/components/PermaLink/PermaLink.js +387 -0
  111. package/dist/components/Radio/Radio.js +96 -0
  112. package/dist/components/ResultError/ResultError.js +20 -0
  113. package/dist/components/ScrollContainer/ScrollContainer.js +23 -0
  114. package/dist/components/Select/NoData.js +10 -0
  115. package/dist/components/Select/OptionItem.js +19 -0
  116. package/dist/components/Select/Select.js +13 -0
  117. package/dist/components/Sidebar/MenuItem.js +9 -0
  118. package/dist/components/Sidebar/index.js +137 -0
  119. package/dist/components/StatusTag/StatusTag.js +24 -0
  120. package/dist/components/StatusTypography/StatusTypography.js +51 -0
  121. package/dist/components/Stepper/Stepper.js +75 -0
  122. package/dist/components/Switch/Switch.js +84 -0
  123. package/dist/components/Tab/Tab.js +28 -0
  124. package/dist/components/Table/Table.js +271 -0
  125. package/dist/components/Table/TableHeader.js +137 -0
  126. package/dist/components/Table/TableSort.js +25 -0
  127. package/dist/components/Textarea/Textarea.js +95 -0
  128. package/dist/components/Tooltip/Tooltip.js +1548 -0
  129. package/dist/components/TypographyText/TypographyText.js +91 -0
  130. package/dist/components/ValidationError/ValidationError.js +7 -0
  131. package/dist/components/index.js +133 -0
  132. package/dist/defineProperty-DeKy1XT0.js +37 -0
  133. package/dist/enums/appearance.js +14 -0
  134. package/dist/enums/applicationTypeSlug.js +4 -0
  135. package/dist/enums/index.js +29 -0
  136. package/dist/enums/isActiveColor.js +4 -0
  137. package/dist/enums/size.js +4 -0
  138. package/dist/enums/status.js +11 -0
  139. package/dist/equals-PL9KqVQf.js +119 -0
  140. package/dist/flatpickr-CRz1AV0e.js +59 -0
  141. package/dist/helper-lFjvXQpv.js +1465 -0
  142. package/dist/hooks/index.js +15 -0
  143. package/dist/hooks/useAauth.js +40 -0
  144. package/dist/hooks/useDisclosure.js +14 -0
  145. package/dist/hooks/useDrawer.js +9 -0
  146. package/dist/hooks/useMediaQuery.js +21 -0
  147. package/dist/hooks/useNiceModal.js +13 -0
  148. package/dist/i18nInstance-CiCZbaCK.js +55 -0
  149. package/dist/includes-8YTFrx85.js +46 -0
  150. package/dist/index-9ZLCCecr.js +364 -0
  151. package/dist/index-BHf7G3IG.js +35 -0
  152. package/dist/index-BJU1K2Aw.js +8003 -0
  153. package/dist/index-CB61CB0b.js +669 -0
  154. package/dist/index-H7XbDVmH.js +320 -0
  155. package/dist/index.css +1 -0
  156. package/dist/index.d.mts +1478 -0
  157. package/dist/index.d.ts +1478 -0
  158. package/dist/index.js +203 -0
  159. package/dist/index2.css +1 -0
  160. package/dist/jsx-runtime-BcAkpsdy.js +631 -0
  161. package/dist/keys-B0bo5Q7o.js +67 -0
  162. package/dist/locales/en/index.js +615 -0
  163. package/dist/locales/i18n.js +1417 -0
  164. package/dist/locales/index.js +5 -0
  165. package/dist/locales/tr/index.js +615 -0
  166. package/dist/main.css +1 -0
  167. package/dist/main.js +57 -0
  168. package/dist/prodivers.css +6 -0
  169. package/dist/prodivers.js +13 -0
  170. package/dist/react-content-loader.es-CswLCxkm.js +90 -0
  171. package/dist/react-toastify.esm-BUWNP7Nm.js +808 -0
  172. package/dist/types/common/date.js +1 -0
  173. package/dist/types/common/events.js +1 -0
  174. package/dist/types/common/forms.js +1 -0
  175. package/dist/types/common/option.js +1 -0
  176. package/dist/types/index.js +1 -0
  177. package/dist/useTranslation-CnCPcxVj.js +142 -0
  178. package/dist/utils/date.js +413 -0
  179. package/dist/utils/flatpickr.js +4 -0
  180. package/dist/utils/helper.js +18 -0
  181. package/dist/utils/index.js +27 -0
  182. package/dist/utils/language.js +46 -0
  183. package/dist/utils/table.js +62 -0
  184. package/dist/utils/validation.js +27 -0
  185. package/dist/utils/yup.js +2921 -0
  186. package/package.json +1 -1
@@ -0,0 +1,91 @@
1
+ import { j as o } from "../../jsx-runtime-BcAkpsdy.js";
2
+ import { useState as k, useRef as N } from "react";
3
+ import f from "../Icon/index.js";
4
+ import { Notification as z } from "../Notification/Notification.js";
5
+ import C from "../Tooltip/Tooltip.js";
6
+ import { c as a } from "../../index-BHf7G3IG.js";
7
+ import { Icons as _ } from "../../assets/icons/icons.js";
8
+ import { NotificationAppearanceType as I, AppearanceDirection as b } from "../../enums/appearance.js";
9
+ import { u as w } from "../../useTranslation-CnCPcxVj.js";
10
+ import '../../TypographyText.css';const P = "_typography_1a64z_2", S = "_ellipsis_1a64z_2", $ = "_success_1a64z_2", A = "_copy_1a64z_2", E = "_checkCopy_1a64z_2", R = "_code_1a64z_2", e = {
11
+ typography: P,
12
+ ellipsis: S,
13
+ success: $,
14
+ copy: A,
15
+ checkCopy: E,
16
+ code: R
17
+ }, J = (h) => {
18
+ const {
19
+ children: t,
20
+ copyable: n,
21
+ notificationProps: x,
22
+ className: u,
23
+ ellipsis: r,
24
+ id: p,
25
+ appearance: l,
26
+ href: m,
27
+ tooltipContent: y
28
+ } = h, [s, d] = k(!1), T = N(null), { t: g } = w(), c = x || {
29
+ type: I.SUCCESS,
30
+ message: g("text.copied"),
31
+ closeTime: 3e3
32
+ }, j = (i) => {
33
+ s || (navigator.clipboard.writeText(i), d(!0), z({
34
+ type: c.type,
35
+ message: c.message,
36
+ closeTime: c.closeTime
37
+ })), setTimeout(() => d(!1), 1e3);
38
+ };
39
+ return /* @__PURE__ */ o.jsxs(
40
+ "p",
41
+ {
42
+ "data-testid": "typographytext",
43
+ ref: T,
44
+ className: a(u, e.typography, {
45
+ [e.copy]: n,
46
+ [e[`${l}`]]: l
47
+ }),
48
+ onClick: () => m && window.open(m, "_blank"),
49
+ children: [
50
+ y ? /* @__PURE__ */ o.jsx(
51
+ C,
52
+ {
53
+ id: `tooltipContent${p}`,
54
+ tooltipContent: y,
55
+ ellipsis: r,
56
+ children: t
57
+ }
58
+ ) : /* @__PURE__ */ o.jsx("span", { className: a(
59
+ {
60
+ [e.ellipsis]: r
61
+ }
62
+ ), children: t }),
63
+ n && /* @__PURE__ */ o.jsx(
64
+ C,
65
+ {
66
+ id: `copyId${p}`,
67
+ className: "width90",
68
+ direction: b.TOP,
69
+ tooltipContent: s ? "Copied" : "Copy",
70
+ children: /* @__PURE__ */ o.jsx(
71
+ "span",
72
+ {
73
+ className: a(e.copy, {
74
+ [e.checkCopy]: s
75
+ }),
76
+ onClick: (i) => {
77
+ i.stopPropagation(), j(t);
78
+ },
79
+ children: s ? /* @__PURE__ */ o.jsx(f, { name: _.Check }) : /* @__PURE__ */ o.jsx(f, { name: _.Copy })
80
+ }
81
+ )
82
+ }
83
+ )
84
+ ]
85
+ },
86
+ p
87
+ );
88
+ };
89
+ export {
90
+ J as default
91
+ };
@@ -0,0 +1,7 @@
1
+ import { j as e } from "../../jsx-runtime-BcAkpsdy.js";
2
+ import '../../ValidationError.css';const a = "_message_1tml6_2", t = {
3
+ message: a
4
+ }, o = ({ message: s }) => /* @__PURE__ */ e.jsx("span", { "data-testid": "validationerror", className: t.message, children: s });
5
+ export {
6
+ o as default
7
+ };
@@ -0,0 +1,133 @@
1
+ import { default as r } from "./Button/Button.js";
2
+ import { N as a } from "../index-H7XbDVmH.js";
3
+ import { PermFallBack as l, getAuth as d } from "./AuthUserCan/index.js";
4
+ import { Accordion as m, AccordionItem as x } from "./Accordion/Accordion.js";
5
+ import { default as u } from "./ActionButton/ActionButton.js";
6
+ import { default as n } from "./AlertCard/AlertCard.js";
7
+ import { default as C } from "./AuthUserCan/Permission.js";
8
+ import { default as S } from "./Autocomplete/Autocomplete.js";
9
+ import { default as I } from "./Card/Card.js";
10
+ import { default as P } from "./Charts/index.js";
11
+ import { default as h } from "./Checkbox/Checkbox.js";
12
+ import { default as A } from "./Config/Config.js";
13
+ import { default as N } from "./Confirm/Confirm.js";
14
+ import { default as B } from "./ContentHeader/ContentHeader.js";
15
+ import { default as M } from "./ContentLoader/ContentLoader.js";
16
+ import { default as k } from "./Countdown/Countdown.js";
17
+ import { default as U } from "./Datepicker/Datepicker.js";
18
+ import { default as E } from "./Divider/Divider.js";
19
+ import { default as W } from "./Drawer/index.js";
20
+ import { default as q } from "./Dropdown/DropdownList.js";
21
+ import { default as G } from "./FileUpload/FileUpload.js";
22
+ import { default as K } from "./FileUpload/ImagePreview.js";
23
+ import { default as Q } from "./FileUpload/LengthCard.js";
24
+ import { default as Y } from "./FileUpload/PreviewModal.js";
25
+ import { default as _ } from "./Grid/Column.js";
26
+ import { default as oo } from "./Grid/Row.js";
27
+ import { default as ro } from "./Heading/Heading.js";
28
+ import { default as ao } from "./Icon/index.js";
29
+ import { default as lo } from "./IconBox/IconBox.js";
30
+ import { default as mo } from "./InfiniteScroll/InfiniteScroll.js";
31
+ import { default as so } from "./InfoBoxList/InfoBoxList.js";
32
+ import { createConnectedService as io } from "./InfoBoxList/helper.js";
33
+ import { default as co } from "./InfoDate/InfoDate.js";
34
+ import { InfoText as go } from "./InfoText/InfoText.js";
35
+ import { default as To } from "./Input/Input.js";
36
+ import { default as Lo } from "./Label/Label.js";
37
+ import { default as bo } from "./Loading/Loading.js";
38
+ import { default as wo } from "./Modal/Modal.js";
39
+ import { default as Do } from "./NavigatorCard/index.js";
40
+ import { default as vo } from "./NoResult/NoResult.js";
41
+ import { Notification as Fo } from "./Notification/Notification.js";
42
+ import { default as Ro } from "./PageWrapper/PageWrap.js";
43
+ import { default as yo } from "./Pager/Pager.js";
44
+ import { default as Ho } from "./Panel/Panel.js";
45
+ import { default as Vo } from "./PermaLink/PermaLink.js";
46
+ import { default as jo, RadioList as qo } from "./Radio/Radio.js";
47
+ import { default as Go } from "./ResultError/ResultError.js";
48
+ import { default as Ko } from "./ScrollContainer/ScrollContainer.js";
49
+ import { default as Qo } from "./Select/NoData.js";
50
+ import { S as Yo } from "../Select-BE_y91ZN.js";
51
+ import { default as _o } from "./Sidebar/index.js";
52
+ import { M as oe } from "../MenuItem-Df6Zsa7E.js";
53
+ import { default as re } from "./StatusTag/StatusTag.js";
54
+ import { default as ae } from "./StatusTypography/StatusTypography.js";
55
+ import { default as le } from "./Stepper/Stepper.js";
56
+ import { default as pe } from "./Switch/Switch.js";
57
+ import { default as xe } from "./Tab/Tab.js";
58
+ import { default as ue } from "./Table/Table.js";
59
+ import { default as ne } from "./Table/TableHeader.js";
60
+ import { default as Ce } from "./Table/TableSort.js";
61
+ import { default as Se } from "./Textarea/Textarea.js";
62
+ import { default as Ie } from "./Tooltip/Tooltip.js";
63
+ import { default as Pe } from "./TypographyText/TypographyText.js";
64
+ import { default as he } from "./ValidationError/ValidationError.js";
65
+ export {
66
+ m as Accordion,
67
+ x as AccordionItem,
68
+ u as ActionButton,
69
+ n as AlertCard,
70
+ S as Autocomplete,
71
+ r as Button,
72
+ I as Card,
73
+ P as Chart,
74
+ h as Checkbox,
75
+ _ as Column,
76
+ A as Config,
77
+ N as Confirm,
78
+ B as ContentHeader,
79
+ M as ContentLoader,
80
+ k as Countdown,
81
+ U as Datepicker,
82
+ E as Divider,
83
+ W as Drawer,
84
+ q as DropdownList,
85
+ G as FileUpload,
86
+ K as FileUploadImagePreview,
87
+ Q as FileUploadLengthCard,
88
+ Y as FileUploadPreviewModal,
89
+ ro as Heading,
90
+ ao as Icon,
91
+ lo as IconBox,
92
+ mo as InfiniteScroll,
93
+ so as InfoBoxList,
94
+ co as InfoDate,
95
+ go as InfoText,
96
+ To as Input,
97
+ Lo as Label,
98
+ bo as Loading,
99
+ oe as MenuItem,
100
+ wo as Modal,
101
+ Do as NavigatorCard,
102
+ a as NiceModal,
103
+ Qo as NoData,
104
+ vo as NoResult,
105
+ Fo as Notification,
106
+ Ro as PageWrapper,
107
+ yo as Pager,
108
+ Ho as Panel,
109
+ l as PermFallBack,
110
+ Vo as PermaLink,
111
+ C as Permission,
112
+ jo as Radio,
113
+ qo as RadioList,
114
+ Go as ResultError,
115
+ oo as Row,
116
+ Ko as ScrollContainer,
117
+ Yo as Select,
118
+ _o as Sidebar,
119
+ re as StatusTag,
120
+ ae as StatusTypography,
121
+ le as Stepper,
122
+ pe as Switch,
123
+ xe as Tab,
124
+ ue as Table,
125
+ ne as TableHeader,
126
+ Ce as TableSort,
127
+ Se as Textarea,
128
+ Ie as Tooltip,
129
+ Pe as TypographyText,
130
+ he as ValidationError,
131
+ io as createConnectedService,
132
+ d as getAuth
133
+ };
@@ -0,0 +1,37 @@
1
+ function o(t) {
2
+ "@babel/helpers - typeof";
3
+ return o = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(r) {
4
+ return typeof r;
5
+ } : function(r) {
6
+ return r && typeof Symbol == "function" && r.constructor === Symbol && r !== Symbol.prototype ? "symbol" : typeof r;
7
+ }, o(t);
8
+ }
9
+ function i(t, r) {
10
+ if (o(t) != "object" || !t)
11
+ return t;
12
+ var e = t[Symbol.toPrimitive];
13
+ if (e !== void 0) {
14
+ var n = e.call(t, r || "default");
15
+ if (o(n) != "object")
16
+ return n;
17
+ throw new TypeError("@@toPrimitive must return a primitive value.");
18
+ }
19
+ return (r === "string" ? String : Number)(t);
20
+ }
21
+ function u(t) {
22
+ var r = i(t, "string");
23
+ return o(r) == "symbol" ? r : r + "";
24
+ }
25
+ function f(t, r, e) {
26
+ return r = u(r), r in t ? Object.defineProperty(t, r, {
27
+ value: e,
28
+ enumerable: !0,
29
+ configurable: !0,
30
+ writable: !0
31
+ }) : t[r] = e, t;
32
+ }
33
+ export {
34
+ f as _,
35
+ o as a,
36
+ u as t
37
+ };
@@ -0,0 +1,14 @@
1
+ var E = /* @__PURE__ */ ((I) => (I.DEFAULT = "default", I.SUCCESS = "success", I))(E || {}), L = /* @__PURE__ */ ((I) => (I.ADDONS_INITIALIZING = "addons_initializing", I.ADDONS_ADDONS_INITILIZATION_FAILED = "addons_initialization_failed", I.DEPLOYING = "deploying", I.FAILED = "failed", I.DEPLOYED = "deployed", I.INITIALIZING = "initializing", I.INITIALIZING_FAILED = "initialization_failed", I.QUEUEING = "queueing", I.QUEUED = "queued", I))(L || {}), R = /* @__PURE__ */ ((I) => (I.INFO = "info", I.SUCCESS = "success", I.ERROR = "error", I.WARNING = "warning", I.LOADING = "loading", I))(R || {}), N = /* @__PURE__ */ ((I) => (I.LIGHT = "light", I.DARK = "dark", I.LIGHT_FULL = "light_full", I.DARK_FULL = "darkFull", I))(N || {}), D = /* @__PURE__ */ ((I) => (I.LIGHT = "light", I.DARK = "dark", I.MORE_DARK = "more_dark", I))(D || {}), G = /* @__PURE__ */ ((I) => (I.LIGHT = "light", I.DARK = "dark", I.DARK_BLUE = "dark_blue", I))(G || {}), l = /* @__PURE__ */ ((I) => (I.LIGHT = "light", I.GREY = "grey", I.DARK_GREY = "dark_grey", I))(l || {}), g = /* @__PURE__ */ ((I) => (I.LINK = "link", I.DEFAULT = "default", I.PRIMARY = "primary", I.DANGER = "danger", I.SUCCESS = "success", I.WARNING = "warning", I.DARK = "dark", I))(g || {}), _ = /* @__PURE__ */ ((I) => (I.TOP = "top", I.RIGHT = "right", I.BOTTOM = "bottom", I.LEFT = "left", I))(_ || {}), O = /* @__PURE__ */ ((I) => (I.DANGER = "danger", I.SUCCESS = "success", I.WARNING = "warning", I))(O || {}), U = /* @__PURE__ */ ((I) => (I.DANGER = "danger", I.WARNING = "warning", I))(U || {});
2
+ export {
3
+ L as AppAndServicesStatusApperenceType,
4
+ U as AppearanceAlertCard,
5
+ g as AppearanceButton,
6
+ _ as AppearanceDirection,
7
+ N as AppearanceSpinner,
8
+ O as AppearanceTag,
9
+ l as DividerAppearance,
10
+ D as FormFieldAppearance,
11
+ E as ModalAppearanceType,
12
+ R as NotificationAppearanceType,
13
+ G as ThemeAppearance
14
+ };
@@ -0,0 +1,4 @@
1
+ var N = /* @__PURE__ */ ((E) => (E.COMMERCE = "commerce", E.ZERO = "zero", E.DEMO_AKINON_ZERO = "demo-akinon-zero", E.INSTORE = "instore", E.SALES_CHANNEL = "sales-channel", E.BI_TOOL = "bi-tool", E.OMNITRON_FRONTEND = "omnitron-frontend", E.OMS = "oms", E.EXTENSION = "extension", E.SELLER_CENTER_FRONTEND = "seller_center_fe", E.SELLER_CENTER_BACKEND = "seller_center_be", E.OMNITRON = "omnitron", E))(N || {});
2
+ export {
3
+ N as ApplicationTypeSlug
4
+ };
@@ -0,0 +1,29 @@
1
+ import { AppAndServicesStatusApperenceType as a, AppearanceAlertCard as r, AppearanceButton as t, AppearanceDirection as n, AppearanceSpinner as o, AppearanceTag as A, DividerAppearance as c, FormFieldAppearance as i, ModalAppearanceType as u, NotificationAppearanceType as m, ThemeAppearance as S } from "./appearance.js";
2
+ import { ApplicationTypeSlug as s } from "./applicationTypeSlug.js";
3
+ import { isActiveColor as d } from "./isActiveColor.js";
4
+ import { Size as l } from "./size.js";
5
+ import { AppTypeEnum as E, CopyTextStatusEnum as g, PodStatusEnum as v, ReportStatus as C, SortEnum as D, StatusEnum as F, StatusType as h, TagStatus as z } from "./status.js";
6
+ export {
7
+ a as AppAndServicesStatusApperenceType,
8
+ E as AppTypeEnum,
9
+ r as AppearanceAlertCard,
10
+ t as AppearanceButton,
11
+ n as AppearanceDirection,
12
+ o as AppearanceSpinner,
13
+ A as AppearanceTag,
14
+ s as ApplicationTypeSlug,
15
+ g as CopyTextStatusEnum,
16
+ c as DividerAppearance,
17
+ i as FormFieldAppearance,
18
+ u as ModalAppearanceType,
19
+ m as NotificationAppearanceType,
20
+ v as PodStatusEnum,
21
+ C as ReportStatus,
22
+ l as Size,
23
+ D as SortEnum,
24
+ F as StatusEnum,
25
+ h as StatusType,
26
+ z as TagStatus,
27
+ S as ThemeAppearance,
28
+ d as isActiveColor
29
+ };
@@ -0,0 +1,4 @@
1
+ var f = /* @__PURE__ */ ((e) => (e.inActive = "#4482ff", e.active = "#3f4b5c", e))(f || {});
2
+ export {
3
+ f as isActiveColor
4
+ };
@@ -0,0 +1,4 @@
1
+ var r = /* @__PURE__ */ ((l) => (l.XS = "xsmall", l.SM = "small", l.MD = "normal", l.LG = "large", l.XL = "xlarge", l))(r || {});
2
+ export {
3
+ r as Size
4
+ };
@@ -0,0 +1,11 @@
1
+ var e = /* @__PURE__ */ ((i) => (i.IDLE = "idle", i.PENDING = "pending", i.FULFILLED = "fulfilled", i.REJECTED = "rejected", i))(e || {}), n = /* @__PURE__ */ ((i) => (i.SUCCESS = "success", i.ERROR = "error", i))(n || {}), r = /* @__PURE__ */ ((i) => (i.SERVICE = "service", i.APPLICATION = "application", i))(r || {}), d = /* @__PURE__ */ ((i) => (i.PENDING = "pending", i.FAILED = "failed", i.IN_PROGRESS = "analyzing", i.SUCCESS = "completed", i))(d || {}), l = /* @__PURE__ */ ((i) => (i.addons_initializing = "initializing", i.addons_initialization_failed = "failed", i.deploying = "warning", i.failed = "failed", i.deployed = "success", i.completed = "success", i.initializing = "initializing", i.initialization_failed = "failed", i.queueing = "warning", i.queued = "queued", i.pending = "pending", i))(l || {}), c = /* @__PURE__ */ ((i) => (i.TERMINATED = "Terminated", i.TERMINATING = "Terminating", i.FAILED = "Failed", i.PENDING = "Pending", i.RUNNING = "Running", i.SUCCEEDED = "Succeeded", i.EVICTED = "Evicted", i))(c || {}), I = /* @__PURE__ */ ((i) => (i.success = "success", i.failed = "failed", i.waiting = "waiting", i.empty = "empty", i))(I || {}), g = /* @__PURE__ */ ((i) => (i.ASC = "asc", i.DESC = "desc", i))(g || {});
2
+ export {
3
+ r as AppTypeEnum,
4
+ n as CopyTextStatusEnum,
5
+ c as PodStatusEnum,
6
+ d as ReportStatus,
7
+ g as SortEnum,
8
+ l as StatusEnum,
9
+ e as StatusType,
10
+ I as TagStatus
11
+ };
@@ -0,0 +1,119 @@
1
+ import { b as m, k as y, c as q, _ as h } from "./keys-B0bo5Q7o.js";
2
+ var p = /* @__PURE__ */ m(function(e) {
3
+ return e === null ? "Null" : e === void 0 ? "Undefined" : Object.prototype.toString.call(e).slice(8, -1);
4
+ });
5
+ function d(r) {
6
+ for (var e = [], n; !(n = r.next()).done; )
7
+ e.push(n.value);
8
+ return e;
9
+ }
10
+ function v(r, e, n) {
11
+ for (var t = 0, u = n.length; t < u; ) {
12
+ if (r(e, n[t]))
13
+ return !0;
14
+ t += 1;
15
+ }
16
+ return !1;
17
+ }
18
+ function A(r) {
19
+ var e = String(r).match(/^function (\w*)/);
20
+ return e == null ? "" : e[1];
21
+ }
22
+ function _(r, e) {
23
+ return r === e ? r !== 0 || 1 / r === 1 / e : r !== r && e !== e;
24
+ }
25
+ const f = typeof Object.is == "function" ? Object.is : _;
26
+ function g(r, e, n, t) {
27
+ var u = d(r), a = d(e);
28
+ function s(c, i) {
29
+ return o(c, i, n.slice(), t.slice());
30
+ }
31
+ return !v(function(c, i) {
32
+ return !v(s, i, c);
33
+ }, a, u);
34
+ }
35
+ function o(r, e, n, t) {
36
+ if (f(r, e))
37
+ return !0;
38
+ var u = p(r);
39
+ if (u !== p(e) || r == null || e == null)
40
+ return !1;
41
+ if (typeof r["fantasy-land/equals"] == "function" || typeof e["fantasy-land/equals"] == "function")
42
+ return typeof r["fantasy-land/equals"] == "function" && r["fantasy-land/equals"](e) && typeof e["fantasy-land/equals"] == "function" && e["fantasy-land/equals"](r);
43
+ if (typeof r.equals == "function" || typeof e.equals == "function")
44
+ return typeof r.equals == "function" && r.equals(e) && typeof e.equals == "function" && e.equals(r);
45
+ switch (u) {
46
+ case "Arguments":
47
+ case "Array":
48
+ case "Object":
49
+ if (typeof r.constructor == "function" && A(r.constructor) === "Promise")
50
+ return r === e;
51
+ break;
52
+ case "Boolean":
53
+ case "Number":
54
+ case "String":
55
+ if (!(typeof r == typeof e && f(r.valueOf(), e.valueOf())))
56
+ return !1;
57
+ break;
58
+ case "Date":
59
+ if (!f(r.valueOf(), e.valueOf()))
60
+ return !1;
61
+ break;
62
+ case "Error":
63
+ return r.name === e.name && r.message === e.message;
64
+ case "RegExp":
65
+ if (!(r.source === e.source && r.global === e.global && r.ignoreCase === e.ignoreCase && r.multiline === e.multiline && r.sticky === e.sticky && r.unicode === e.unicode))
66
+ return !1;
67
+ break;
68
+ }
69
+ for (var a = n.length - 1; a >= 0; ) {
70
+ if (n[a] === r)
71
+ return t[a] === e;
72
+ a -= 1;
73
+ }
74
+ switch (u) {
75
+ case "Map":
76
+ return r.size !== e.size ? !1 : g(r.entries(), e.entries(), n.concat([r]), t.concat([e]));
77
+ case "Set":
78
+ return r.size !== e.size ? !1 : g(r.values(), e.values(), n.concat([r]), t.concat([e]));
79
+ case "Arguments":
80
+ case "Array":
81
+ case "Object":
82
+ case "Boolean":
83
+ case "Number":
84
+ case "String":
85
+ case "Date":
86
+ case "Error":
87
+ case "RegExp":
88
+ case "Int8Array":
89
+ case "Uint8Array":
90
+ case "Uint8ClampedArray":
91
+ case "Int16Array":
92
+ case "Uint16Array":
93
+ case "Int32Array":
94
+ case "Uint32Array":
95
+ case "Float32Array":
96
+ case "Float64Array":
97
+ case "ArrayBuffer":
98
+ break;
99
+ default:
100
+ return !1;
101
+ }
102
+ var s = y(r);
103
+ if (s.length !== y(e).length)
104
+ return !1;
105
+ var c = n.concat([r]), i = t.concat([e]);
106
+ for (a = s.length - 1; a >= 0; ) {
107
+ var l = s[a];
108
+ if (!(q(l, e) && o(e[l], r[l], c, i)))
109
+ return !1;
110
+ a -= 1;
111
+ }
112
+ return !0;
113
+ }
114
+ var O = /* @__PURE__ */ h(function(e, n) {
115
+ return o(e, n, [], []);
116
+ });
117
+ export {
118
+ O as e
119
+ };
@@ -0,0 +1,59 @@
1
+ const a = {
2
+ weekdays: {
3
+ shorthand: ["Paz", "Pzt", "Sal", "Çar", "Per", "Cum", "Cmt"],
4
+ longhand: [
5
+ "Pazar",
6
+ "Pazartesi",
7
+ "Salı",
8
+ "Çarşamba",
9
+ "Perşembe",
10
+ "Cuma",
11
+ "Cumartesi"
12
+ ]
13
+ },
14
+ months: {
15
+ shorthand: [
16
+ "Oca",
17
+ "Şub",
18
+ "Mar",
19
+ "Nis",
20
+ "May",
21
+ "Haz",
22
+ "Tem",
23
+ "Ağu",
24
+ "Eyl",
25
+ "Eki",
26
+ "Kas",
27
+ "Ara"
28
+ ],
29
+ longhand: [
30
+ "Ocak",
31
+ "Şubat",
32
+ "Mart",
33
+ "Nisan",
34
+ "Mayıs",
35
+ "Haziran",
36
+ "Temmuz",
37
+ "Ağustos",
38
+ "Eylül",
39
+ "Ekim",
40
+ "Kasım",
41
+ "Aralık"
42
+ ]
43
+ },
44
+ firstDayOfWeek: 1,
45
+ ordinal: () => ".",
46
+ rangeSeparator: " - ",
47
+ weekAbbreviation: "Hf",
48
+ scrollTitle: "Artırmak için kaydırın",
49
+ toggleTitle: "Aç/Kapa",
50
+ amPM: ["ÖÖ", "ÖS"],
51
+ time_24hr: !0
52
+ }, e = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
53
+ __proto__: null,
54
+ tr: a
55
+ }, Symbol.toStringTag, { value: "Module" }));
56
+ export {
57
+ e as D,
58
+ a as t
59
+ };