@prokodo/ui 0.0.10 → 0.0.11

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 (235) hide show
  1. package/README.md +2 -0
  2. package/dist/_virtual/_commonjsHelpers.js +6 -1
  3. package/dist/_virtual/index.js +7 -1
  4. package/dist/_virtual/index2.js +4 -1
  5. package/dist/_virtual/index3.js +4 -1
  6. package/dist/_virtual/jsx-runtime.js +5 -1
  7. package/dist/_virtual/jsx-runtime2.js +4 -1
  8. package/dist/_virtual/react-is.development.js +4 -1
  9. package/dist/_virtual/react-is.production.min.js +4 -1
  10. package/dist/_virtual/react-jsx-runtime.development.js +4 -1
  11. package/dist/_virtual/react-jsx-runtime.production.js +4 -1
  12. package/dist/assets/images/card_background_primary_1.webp.js +4 -1
  13. package/dist/assets/images/card_background_primary_2.webp.js +4 -1
  14. package/dist/assets/images/card_background_primary_3.webp.js +4 -1
  15. package/dist/assets/images/card_background_primary_4.webp.js +4 -1
  16. package/dist/assets/images/card_background_secondary_1.webp.js +4 -1
  17. package/dist/assets/images/card_background_secondary_2.webp.js +4 -1
  18. package/dist/assets/images/card_background_secondary_3.webp.js +4 -1
  19. package/dist/assets/images/card_background_secondary_4.webp.js +4 -1
  20. package/dist/components/accordion/Accordion.js +115 -1
  21. package/dist/components/accordion/Accordion.module.scss.js +23 -1
  22. package/dist/components/accordion/index.js +4 -1
  23. package/dist/components/animated/Animated.js +53 -1
  24. package/dist/components/animated/Animated.module.scss.js +18 -1
  25. package/dist/components/animated/index.js +4 -1
  26. package/dist/components/animatedText/AnimatedText.js +31 -1
  27. package/dist/components/animatedText/index.js +4 -1
  28. package/dist/components/avatar/Avatar.js +78 -1
  29. package/dist/components/avatar/Avatar.module.scss.js +24 -1
  30. package/dist/components/avatar/index.js +4 -1
  31. package/dist/components/base-link/BaseLink.js +30 -1
  32. package/dist/components/base-link/index.js +4 -1
  33. package/dist/components/button/Button.js +84 -1
  34. package/dist/components/button/Button.module.scss.js +34 -1
  35. package/dist/components/button/index.js +4 -1
  36. package/dist/components/calendly/Calendly.js +82 -1
  37. package/dist/components/calendly/index.js +4 -1
  38. package/dist/components/card/Card.js +180 -1
  39. package/dist/components/card/Card.module.scss.js +38 -1
  40. package/dist/components/card/index.js +4 -1
  41. package/dist/components/carousel/Carousel.js +232 -1
  42. package/dist/components/carousel/Carousel.module.scss.js +21 -1
  43. package/dist/components/carousel/Carousel.services.js +22 -1
  44. package/dist/components/carousel/index.js +4 -1
  45. package/dist/components/chip/Chip.js +61 -1
  46. package/dist/components/chip/Chip.module.scss.js +26 -1
  47. package/dist/components/chip/index.js +4 -1
  48. package/dist/components/datePicker/DatePicker.js +93 -1
  49. package/dist/components/datePicker/index.js +4 -1
  50. package/dist/components/dialog/Dialog.js +156 -1
  51. package/dist/components/dialog/Dialog.module.scss.js +23 -1
  52. package/dist/components/dialog/index.js +4 -1
  53. package/dist/components/drawer/Drawer.js +94 -1
  54. package/dist/components/drawer/Drawer.module.scss.js +37 -1
  55. package/dist/components/drawer/index.js +6 -1
  56. package/dist/components/form/Form.js +228 -1
  57. package/dist/components/form/Form.module.scss.js +13 -1
  58. package/dist/components/form/FormField.js +96 -1
  59. package/dist/components/form/FormField.module.scss.js +10 -1
  60. package/dist/components/form/FormResponse.js +43 -1
  61. package/dist/components/form/FormResponse.module.scss.js +14 -1
  62. package/dist/components/form/index.js +6 -1
  63. package/dist/components/grid/Grid.js +21 -1
  64. package/dist/components/grid/Grid.module.scss.js +10 -1
  65. package/dist/components/grid/GridRow.js +29 -1
  66. package/dist/components/grid/GridRow.module.scss.js +73 -1
  67. package/dist/components/grid/index.js +6 -1
  68. package/dist/components/headline/Headline.js +71 -1
  69. package/dist/components/headline/Headline.module.scss.js +34 -1
  70. package/dist/components/headline/index.js +5 -1
  71. package/dist/components/icon/Icon.js +60 -1
  72. package/dist/components/icon/Icon.module.scss.js +16 -1
  73. package/dist/components/icon/iconsMap.js +4131 -1
  74. package/dist/components/icon/index.js +5 -1
  75. package/dist/components/image/Image.js +29 -1
  76. package/dist/components/image/Image.module.scss.js +11 -1
  77. package/dist/components/image/index.js +4 -1
  78. package/dist/components/image-text/ImageText.js +99 -1
  79. package/dist/components/image-text/ImageText.module.scss.js +22 -1
  80. package/dist/components/image-text/index.js +4 -1
  81. package/dist/components/input/Input.js +189 -1
  82. package/dist/components/input/Input.module.scss.js +30 -1
  83. package/dist/components/input/InputValidation.js +52 -1
  84. package/dist/components/input/index.js +4 -1
  85. package/dist/components/inputOTP/InputOTP.js +79 -1
  86. package/dist/components/inputOTP/InputOTP.module.scss.js +16 -1
  87. package/dist/components/inputOTP/index.js +4 -1
  88. package/dist/components/label/Label.js +65 -1
  89. package/dist/components/label/Label.module.scss.js +13 -1
  90. package/dist/components/label/index.js +4 -1
  91. package/dist/components/link/Link.js +58 -1
  92. package/dist/components/link/Link.module.scss.js +18 -1
  93. package/dist/components/link/index.js +4 -1
  94. package/dist/components/list/List.js +172 -1
  95. package/dist/components/list/List.module.scss.js +31 -1
  96. package/dist/components/list/index.js +4 -1
  97. package/dist/components/loading/Loading.js +57 -1
  98. package/dist/components/loading/Loading.module.scss.js +19 -1
  99. package/dist/components/loading/index.js +4 -1
  100. package/dist/components/lottie/Lottie.js +55 -1
  101. package/dist/components/lottie/Lottie.module.scss.js +10 -1
  102. package/dist/components/lottie/LottieAnimations.js +35 -1
  103. package/dist/components/lottie/index.js +4 -1
  104. package/dist/components/map/Map.js +51 -1
  105. package/dist/components/map/index.js +4 -1
  106. package/dist/components/post-item/PostItem.js +136 -1
  107. package/dist/components/post-item/PostItem.module.scss.js +22 -1
  108. package/dist/components/post-item/PostItemAuthor.js +37 -1
  109. package/dist/components/post-item/PostItemAuthor.module.scss.js +11 -1
  110. package/dist/components/post-item/index.js +4 -1
  111. package/dist/components/post-teaser/PostTeaser.js +168 -1
  112. package/dist/components/post-teaser/PostTeaser.module.scss.js +25 -1
  113. package/dist/components/post-teaser/index.js +4 -1
  114. package/dist/components/post-widget/PostWidget.js +158 -1
  115. package/dist/components/post-widget/PostWidget.module.scss.js +19 -1
  116. package/dist/components/post-widget/index.js +4 -1
  117. package/dist/components/post-widget-carousel/PostWidgetCarousel.js +159 -1
  118. package/dist/components/post-widget-carousel/PostWidgetCarousel.module.scss.js +16 -1
  119. package/dist/components/post-widget-carousel/index.js +4 -1
  120. package/dist/components/quote/Quote.js +90 -1
  121. package/dist/components/quote/Quote.module.scss.js +18 -1
  122. package/dist/components/quote/index.js +4 -1
  123. package/dist/components/rich-text/RichText.js +143 -1
  124. package/dist/components/rich-text/RichText.module.scss.js +16 -1
  125. package/dist/components/rich-text/index.js +4 -1
  126. package/dist/components/select/Select.js +199 -1
  127. package/dist/components/select/Select.module.scss.js +34 -1
  128. package/dist/components/select/index.js +4 -1
  129. package/dist/components/skeleton/Skeleton.js +29 -1
  130. package/dist/components/skeleton/Skeleton.module.scss.js +18 -1
  131. package/dist/components/skeleton/index.js +4 -1
  132. package/dist/components/slider/Slider.js +104 -1
  133. package/dist/components/slider/Slider.module.scss.js +20 -1
  134. package/dist/components/slider/index.js +4 -1
  135. package/dist/components/stepper/Stepper.js +119 -1
  136. package/dist/components/stepper/Stepper.module.scss.js +23 -1
  137. package/dist/components/stepper/index.js +4 -1
  138. package/dist/components/switch/Switch.js +102 -1
  139. package/dist/components/switch/Switch.module.scss.js +30 -1
  140. package/dist/components/switch/index.js +4 -1
  141. package/dist/components/table/Table.js +75 -1
  142. package/dist/components/table/Table.module.scss.js +27 -1
  143. package/dist/components/table/index.js +4 -1
  144. package/dist/components/teaser/Teaser.js +102 -1
  145. package/dist/components/teaser/Teaser.module.scss.js +23 -1
  146. package/dist/components/teaser/index.js +4 -1
  147. package/dist/helpers/bem.js +12 -1
  148. package/dist/helpers/calculation.js +4 -1
  149. package/dist/helpers/validations.js +8 -1
  150. package/dist/hooks/useGoogleMaps.js +19 -1
  151. package/dist/index.js +86 -1
  152. package/dist/node_modules/.pnpm/@floating-ui_core@1.7.0/node_modules/@floating-ui/core/dist/floating-ui.core.js +353 -1
  153. package/dist/node_modules/.pnpm/@floating-ui_dom@1.7.0/node_modules/@floating-ui/dom/dist/floating-ui.dom.js +395 -1
  154. package/dist/node_modules/.pnpm/@floating-ui_react-dom@2.1.2_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.js +170 -1
  155. package/dist/node_modules/.pnpm/@floating-ui_utils@0.2.9/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js +131 -1
  156. package/dist/node_modules/.pnpm/@floating-ui_utils@0.2.9/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +128 -1
  157. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Option/Option.js +119 -1
  158. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Option/optionClasses.js +10 -1
  159. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Portal/Portal.js +71 -1
  160. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Select/Select.js +286 -1
  161. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Select/selectClasses.js +10 -1
  162. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Slider/Slider.js +414 -1
  163. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Slider/sliderClasses.js +10 -1
  164. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Switch/Switch.js +158 -1
  165. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Switch/switchClasses.js +10 -1
  166. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Unstable_Popup/Popup.js +205 -1
  167. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Unstable_Popup/PopupContext.js +6 -1
  168. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Unstable_Popup/popupClasses.js +10 -1
  169. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/generateUtilityClass/index.js +15 -1
  170. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/generateUtilityClasses/index.js +10 -1
  171. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useButton/useButton.js +79 -1
  172. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useCompound/useCompoundItem.js +25 -1
  173. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useCompound/useCompoundParent.js +47 -1
  174. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useList/ListContext.js +6 -1
  175. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useList/listActions.types.js +14 -1
  176. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useList/listReducer.js +223 -1
  177. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useList/useList.js +150 -1
  178. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useList/useListItem.js +61 -3
  179. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useOption/useOption.js +63 -1
  180. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useOption/useOptionContextStabilizer.js +32 -1
  181. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useSelect/SelectProvider.js +34 -1
  182. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useSelect/defaultOptionStringifier.js +10 -1
  183. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useSelect/selectReducer.js +65 -1
  184. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useSelect/useSelect.js +242 -1
  185. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useSelect/useSelect.types.js +7 -1
  186. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useSlider/useSlider.js +423 -1
  187. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useSwitch/useSwitch.js +58 -1
  188. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useTransition/TransitionContext.js +6 -1
  189. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useTransition/useTransitionTrigger.js +27 -1
  190. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/utils/ClassNameConfigurator.js +15 -1
  191. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/utils/areArraysEqual.js +6 -1
  192. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/utils/combineHooksSlotProps.js +15 -1
  193. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/utils/isHostComponent.js +6 -1
  194. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/utils/resolveComponentProps.js +6 -1
  195. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/utils/useControllableReducer.js +70 -1
  196. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/utils/useRootElementName.js +17 -1
  197. package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/utils/useTextNavigation.js +17 -1
  198. package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/HTMLElementType/HTMLElementType.js +9 -1
  199. package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/appendOwnerState/appendOwnerState.js +13 -1
  200. package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/chainPropTypes/chainPropTypes.js +8 -1
  201. package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/clamp/clamp.js +6 -1
  202. package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/composeClasses/composeClasses.js +16 -1
  203. package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/exactProp/exactProp.js +13 -1
  204. package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/extractEventHandlers/extractEventHandlers.js +11 -1
  205. package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/generateUtilityClass/generateUtilityClass.js +17 -1
  206. package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/getReactNodeRef/getReactNodeRef.js +12 -1
  207. package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/isFocusVisible/isFocusVisible.js +12 -2
  208. package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/isHostComponent/isHostComponent.js +6 -1
  209. package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/mergeSlotProps/mergeSlotProps.js +48 -1
  210. package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/omitEventHandlers/omitEventHandlers.js +11 -1
  211. package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/ownerDocument/ownerDocument.js +6 -1
  212. package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/resolveComponentProps/resolveComponentProps.js +6 -1
  213. package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/setRef/setRef.js +6 -1
  214. package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/useControlled/useControlled.js +31 -3
  215. package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/useEnhancedEffect/useEnhancedEffect.js +5 -1
  216. package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/useEventCallback/useEventCallback.js +14 -1
  217. package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/useForkRef/useForkRef.js +12 -1
  218. package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/useId/useId.js +19 -1
  219. package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/useSlotProps/useSlotProps.js +27 -1
  220. package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/visuallyHidden/visuallyHidden.js +14 -1
  221. package/dist/node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.js +17 -1
  222. package/dist/node_modules/.pnpm/object-assign@4.1.1/node_modules/object-assign/index.js +51 -2
  223. package/dist/node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/checkPropTypes.js +54 -1
  224. package/dist/node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/factoryWithThrowingShims.js +52 -1
  225. package/dist/node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/factoryWithTypeCheckers.js +329 -2
  226. package/dist/node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/index.js +17 -1
  227. package/dist/node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/lib/ReactPropTypesSecret.js +10 -1
  228. package/dist/node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/lib/has.js +7 -1
  229. package/dist/node_modules/.pnpm/react-is@16.13.1/node_modules/react-is/cjs/react-is.development.js +89 -2
  230. package/dist/node_modules/.pnpm/react-is@16.13.1/node_modules/react-is/cjs/react-is.production.min.js +72 -2
  231. package/dist/node_modules/.pnpm/react-is@16.13.1/node_modules/react-is/index.js +10 -1
  232. package/dist/node_modules/.pnpm/react@19.1.0/node_modules/react/cjs/react-jsx-runtime.development.js +236 -3
  233. package/dist/node_modules/.pnpm/react@19.1.0/node_modules/react/cjs/react-jsx-runtime.production.js +28 -2
  234. package/dist/node_modules/.pnpm/react@19.1.0/node_modules/react/jsx-runtime.js +10 -1
  235. package/package.json +2 -4
@@ -1 +1,65 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const i=require("../../_virtual/jsx-runtime.js"),h=require("react"),R=require("../../helpers/bem.js"),t=require("./Label.module.scss.js"),a=R.create(t.default,"Label"),r=h.memo(({className:m,htmlFor:u,required:o,label:n,contentProps:j,textProps:e,error:l,children:c,...d})=>{const s=n==null?void 0:n.split(" ");return s?i.jsxRuntimeExports.jsxs("label",{...d,className:a(void 0,void 0,m),htmlFor:u,children:[i.jsxRuntimeExports.jsxs("span",{...j,children:[i.jsxRuntimeExports.jsxs("i",{...e,className:a("highlighted",{error:!!l},e==null?void 0:e.className),children:[s==null?void 0:s[0]," "]}),i.jsxRuntimeExports.jsxs("i",{...e,className:a("text",void 0,e==null?void 0:e.className),children:[s==null?void 0:s.slice(1).join(" ")," ",!!o&&i.jsxRuntimeExports.jsx("span",{"aria-hidden":"true",children:"*"})]})]}),c]}):c});r.displayName="Label";exports.Label=r;
1
+ import { j as s } from "../../_virtual/jsx-runtime.js";
2
+ import { memo as l } from "react";
3
+ import { create as N } from "../../helpers/bem.js";
4
+ import f from "./Label.module.scss.js";
5
+ const n = N(f, "Label"), u = l(
6
+ ({
7
+ className: r,
8
+ htmlFor: o,
9
+ required: e,
10
+ label: a,
11
+ contentProps: d,
12
+ textProps: i,
13
+ error: h,
14
+ children: c,
15
+ ...j
16
+ }) => {
17
+ const m = a == null ? void 0 : a.split(" ");
18
+ return m ? /* @__PURE__ */ s.jsxs(
19
+ "label",
20
+ {
21
+ ...j,
22
+ className: n(void 0, void 0, r),
23
+ htmlFor: o,
24
+ children: [
25
+ /* @__PURE__ */ s.jsxs("span", { ...d, children: [
26
+ /* @__PURE__ */ s.jsxs(
27
+ "i",
28
+ {
29
+ ...i,
30
+ className: n(
31
+ "highlighted",
32
+ {
33
+ error: !!h
34
+ },
35
+ i == null ? void 0 : i.className
36
+ ),
37
+ children: [
38
+ m == null ? void 0 : m[0],
39
+ " "
40
+ ]
41
+ }
42
+ ),
43
+ /* @__PURE__ */ s.jsxs(
44
+ "i",
45
+ {
46
+ ...i,
47
+ className: n("text", void 0, i == null ? void 0 : i.className),
48
+ children: [
49
+ m == null ? void 0 : m.slice(1).join(" "),
50
+ " ",
51
+ !!e && /* @__PURE__ */ s.jsx("span", { "aria-hidden": "true", children: "*" })
52
+ ]
53
+ }
54
+ )
55
+ ] }),
56
+ c
57
+ ]
58
+ }
59
+ ) : c;
60
+ }
61
+ );
62
+ u.displayName = "Label";
63
+ export {
64
+ u as Label
65
+ };
@@ -1 +1,13 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e="gradientMove",o="fadeInKeyframe",r={"prokodo-Label":"prokodo-Label","prokodo-Label__highlighted":"prokodo-Label__highlighted","prokodo-Label__highlighted--error":"prokodo-Label__highlighted--error","prokodo-Label__text":"prokodo-Label__text",gradientMove:e,fadeInKeyframe:o};exports.default=r;exports.fadeInKeyframe=o;exports.gradientMove=e;
1
+ const e = "gradientMove", o = "fadeInKeyframe", r = {
2
+ "prokodo-Label": "prokodo-Label",
3
+ "prokodo-Label__highlighted": "prokodo-Label__highlighted",
4
+ "prokodo-Label__highlighted--error": "prokodo-Label__highlighted--error",
5
+ "prokodo-Label__text": "prokodo-Label__text",
6
+ gradientMove: e,
7
+ fadeInKeyframe: o
8
+ };
9
+ export {
10
+ r as default,
11
+ o as fadeInKeyframe,
12
+ e as gradientMove
13
+ };
@@ -1 +1,4 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./Label.js");exports.Label=e.Label;
1
+ import { Label as r } from "./Label.js";
2
+ export {
3
+ r as Label
4
+ };
@@ -1 +1,58 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("../../_virtual/jsx-runtime.js"),f=require("react"),j=require("../../helpers/bem.js"),p=require("../../helpers/validations.js"),q=require("../base-link/BaseLink.js"),L=require("./Link.module.scss.js"),g=j.create(L.default,"Link"),a=f.memo(({variant:u="inherit",href:t,children:n,className:c,style:l,target:d,itemProp:m,hasBackground:s,onMouseEnter:b,onClick:e,onKeyDown:x,ariaLabel:i})=>{const k={"has-no-background":s===!1,[`has-no-background--${u}`]:s===!1},r={className:g(void 0,k,c),style:l,onMouseEnter:b};return e&&!p.isString(t)?o.jsxRuntimeExports.jsx("span",{"aria-label":i,role:"button",tabIndex:0,onClick:e,onKeyDown:x,...r,children:n}):o.jsxRuntimeExports.jsx(q.BaseLink,{...r,"aria-label":i,href:t,itemProp:m,target:d??void 0,onClick:e,children:n})});a.displayName="Link";exports.Link=a;
1
+ import { j as a } from "../../_virtual/jsx-runtime.js";
2
+ import { memo as x } from "react";
3
+ import { create as c } from "../../helpers/bem.js";
4
+ import { isString as j } from "../../helpers/validations.js";
5
+ import { BaseLink as k } from "../base-link/BaseLink.js";
6
+ import g from "./Link.module.scss.js";
7
+ const L = c(g, "Link"), v = x(
8
+ ({
9
+ variant: m = "inherit",
10
+ href: r,
11
+ children: t,
12
+ className: n,
13
+ style: p,
14
+ target: f,
15
+ itemProp: l,
16
+ hasBackground: s,
17
+ onMouseEnter: b,
18
+ onClick: o,
19
+ onKeyDown: d,
20
+ ariaLabel: i
21
+ }) => {
22
+ const u = {
23
+ "has-no-background": s === !1,
24
+ [`has-no-background--${m}`]: s === !1
25
+ }, e = {
26
+ className: L(void 0, u, n),
27
+ style: p,
28
+ onMouseEnter: b
29
+ };
30
+ return o && !j(r) ? /* @__PURE__ */ a.jsx(
31
+ "span",
32
+ {
33
+ "aria-label": i,
34
+ role: "button",
35
+ tabIndex: 0,
36
+ onClick: o,
37
+ onKeyDown: d,
38
+ ...e,
39
+ children: t
40
+ }
41
+ ) : /* @__PURE__ */ a.jsx(
42
+ k,
43
+ {
44
+ ...e,
45
+ "aria-label": i,
46
+ href: r,
47
+ itemProp: l,
48
+ target: f ?? void 0,
49
+ onClick: o,
50
+ children: t
51
+ }
52
+ );
53
+ }
54
+ );
55
+ v.displayName = "Link";
56
+ export {
57
+ v as Link
58
+ };
@@ -1 +1,18 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const o="gradientMove",n="fadeInKeyframe",r={"prokodo-Link":"prokodo-Link","prokodo-Link--has-no-background":"prokodo-Link--has-no-background","prokodo-Link--has-no-background--primary":"prokodo-Link--has-no-background--primary","prokodo-Link--has-no-background--secondary":"prokodo-Link--has-no-background--secondary","prokodo-Link--has-no-background--info":"prokodo-Link--has-no-background--info","prokodo-Link--has-no-background--success":"prokodo-Link--has-no-background--success","prokodo-Link--has-no-background--warning":"prokodo-Link--has-no-background--warning","prokodo-Link--has-no-background--error":"prokodo-Link--has-no-background--error","prokodo-Link--has-no-background--white":"prokodo-Link--has-no-background--white",gradientMove:o,fadeInKeyframe:n};exports.default=r;exports.fadeInKeyframe=n;exports.gradientMove=o;
1
+ const o = "gradientMove", n = "fadeInKeyframe", r = {
2
+ "prokodo-Link": "prokodo-Link",
3
+ "prokodo-Link--has-no-background": "prokodo-Link--has-no-background",
4
+ "prokodo-Link--has-no-background--primary": "prokodo-Link--has-no-background--primary",
5
+ "prokodo-Link--has-no-background--secondary": "prokodo-Link--has-no-background--secondary",
6
+ "prokodo-Link--has-no-background--info": "prokodo-Link--has-no-background--info",
7
+ "prokodo-Link--has-no-background--success": "prokodo-Link--has-no-background--success",
8
+ "prokodo-Link--has-no-background--warning": "prokodo-Link--has-no-background--warning",
9
+ "prokodo-Link--has-no-background--error": "prokodo-Link--has-no-background--error",
10
+ "prokodo-Link--has-no-background--white": "prokodo-Link--has-no-background--white",
11
+ gradientMove: o,
12
+ fadeInKeyframe: n
13
+ };
14
+ export {
15
+ r as default,
16
+ n as fadeInKeyframe,
17
+ o as gradientMove
18
+ };
@@ -1 +1,4 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./Link.js");exports.Link=e.Link;
1
+ import { Link as e } from "./Link.js";
2
+ export {
3
+ e as Link
4
+ };
@@ -1 +1,172 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("../../_virtual/jsx-runtime.js"),l=require("react"),q=require("../../helpers/bem.js"),L=require("../../helpers/validations.js"),I=require("../card/Card.js"),b=require("../icon/Icon.js"),g=require("../link/Link.js"),t=require("./List.module.scss.js"),c=q.create(t.default,"List"),i=l.memo(({type:o,variant:e="inherit",className:R,options:d={},items:E,classNameDesc:k,...h})=>{const j=l.useMemo(()=>({[`${o}`]:!!o}),[o]),u=l.useCallback((s,n)=>r.jsxRuntimeExports.jsx("span",{className:c("item__title",{"is-clickable":!!(n!=null&&n.onClick),...j}),children:s}),[j]),v=l.useCallback((s,n)=>r.jsxRuntimeExports.jsx(g.Link,{className:c("item__link",void 0,s==null?void 0:s.className),variant:e,...s,children:n}),[e]),_=l.useCallback(s=>s?r.jsxRuntimeExports.jsx("div",{className:c("item__icon__wrapper"),children:r.jsxRuntimeExports.jsx(b.Icon,{color:e,name:s,...d==null?void 0:d.icon})}):null,[e,d==null?void 0:d.icon]),x=l.useCallback(s=>L.isString(s)&&r.jsxRuntimeExports.jsx("p",{className:c("item__desc",void 0,k),children:s}),[k]),C=l.useCallback(s=>{var a;const n=s==null?void 0:s.icon;return r.jsxRuntimeExports.jsx(I.Card,{variant:"white",...s,className:c("item__card",void 0,s==null?void 0:s.className),contentClassName:c("item__card__content",void 0,s==null?void 0:s.contentClassName),children:r.jsxRuntimeExports.jsxs("div",{className:c("item__inner",void 0,s==null?void 0:s.innerClassName),children:[n&&r.jsxRuntimeExports.jsx("div",{className:c("item__icon",void 0,(a=s==null?void 0:s.iconProps)==null?void 0:a.className),children:r.jsxRuntimeExports.jsx(b.Icon,{...s==null?void 0:s.iconProps,className:c("item__icon__svg"),name:n,size:"sm"})}),r.jsxRuntimeExports.jsxs("div",{className:c("item__content"),children:[u(s.title),x(s==null?void 0:s.desc)]})]})})},[u,x]),f=l.useCallback(s=>{switch(o){case"card":return C(s);default:return(s==null?void 0:s.redirect)!==void 0?v(s.redirect,r.jsxRuntimeExports.jsxs(l.Fragment,{children:[_(s==null?void 0:s.icon),u(s.title,s),x(s==null?void 0:s.desc)]})):r.jsxRuntimeExports.jsxs(l.Fragment,{children:[_(s==null?void 0:s.icon),u(s.title,s),x(s==null?void 0:s.desc)]})}},[o,C,_,v,u,x]);return r.jsxRuntimeExports.jsx("ul",{"aria-live":"polite","aria-relevant":"additions text",...h,className:c(void 0,void 0,R),children:E.map(s=>{const n=!!(s!=null&&s.onClick)||!!(s!=null&&s.redirect);return r.jsxRuntimeExports.jsx("li",{"aria-pressed":n?!1:void 0,role:n?"button":void 0,tabIndex:n?0:-1,className:c("item",{"is-clickable":n,[`is-clickable--${(s==null?void 0:s.variant)??e}`]:n,...j},s==null?void 0:s.className),onClick:o==="default"&&n?()=>{var a;return(a=s.onClick)==null?void 0:a.call(s,s)}:void 0,onKeyDown:n?a=>{var N;(a.key==="Enter"||a.key===" ")&&(a.preventDefault(),(N=s==null?void 0:s.onClick)==null||N.call(s,s))}:void 0,children:f(s)},`list-item-${s.title}`)})})});i.displayName="List";exports.List=i;
1
+ import { j as c } from "../../_virtual/jsx-runtime.js";
2
+ import { memo as g, useMemo as $, useCallback as d, Fragment as C } from "react";
3
+ import { create as D } from "../../helpers/bem.js";
4
+ import { isString as E } from "../../helpers/validations.js";
5
+ import { Card as P } from "../card/Card.js";
6
+ import { Icon as e } from "../icon/Icon.js";
7
+ import { Link as z } from "../link/Link.js";
8
+ import F from "./List.module.scss.js";
9
+ const n = D(F, "List"), K = g(
10
+ ({
11
+ type: a,
12
+ variant: _ = "inherit",
13
+ className: b,
14
+ options: o = {},
15
+ items: I,
16
+ classNameDesc: f,
17
+ ...L
18
+ }) => {
19
+ const N = $(
20
+ () => ({
21
+ [`${a}`]: !!a
22
+ }),
23
+ [a]
24
+ ), v = d(
25
+ (r, s) => /* @__PURE__ */ c.jsx(
26
+ "span",
27
+ {
28
+ className: n("item__title", {
29
+ "is-clickable": !!(s != null && s.onClick),
30
+ ...N
31
+ }),
32
+ children: r
33
+ }
34
+ ),
35
+ [N]
36
+ ), j = d(
37
+ (r, s) => /* @__PURE__ */ c.jsx(
38
+ z,
39
+ {
40
+ className: n("item__link", void 0, r == null ? void 0 : r.className),
41
+ variant: _,
42
+ ...r,
43
+ children: s
44
+ }
45
+ ),
46
+ [_]
47
+ ), u = d(
48
+ (r) => r ? /* @__PURE__ */ c.jsx("div", { className: n("item__icon__wrapper"), children: /* @__PURE__ */ c.jsx(e, { color: _, name: r, ...o == null ? void 0 : o.icon }) }) : null,
49
+ [_, o == null ? void 0 : o.icon]
50
+ ), x = d(
51
+ (r) => E(r) && /* @__PURE__ */ c.jsx("p", { className: n("item__desc", void 0, f), children: r }),
52
+ [f]
53
+ ), k = d(
54
+ (r) => {
55
+ var l;
56
+ const s = r == null ? void 0 : r.icon;
57
+ return /* @__PURE__ */ c.jsx(
58
+ P,
59
+ {
60
+ variant: "white",
61
+ ...r,
62
+ className: n("item__card", void 0, r == null ? void 0 : r.className),
63
+ contentClassName: n(
64
+ "item__card__content",
65
+ void 0,
66
+ r == null ? void 0 : r.contentClassName
67
+ ),
68
+ children: /* @__PURE__ */ c.jsxs(
69
+ "div",
70
+ {
71
+ className: n("item__inner", void 0, r == null ? void 0 : r.innerClassName),
72
+ children: [
73
+ s && /* @__PURE__ */ c.jsx(
74
+ "div",
75
+ {
76
+ className: n(
77
+ "item__icon",
78
+ void 0,
79
+ (l = r == null ? void 0 : r.iconProps) == null ? void 0 : l.className
80
+ ),
81
+ children: /* @__PURE__ */ c.jsx(
82
+ e,
83
+ {
84
+ ...r == null ? void 0 : r.iconProps,
85
+ className: n("item__icon__svg"),
86
+ name: s,
87
+ size: "sm"
88
+ }
89
+ )
90
+ }
91
+ ),
92
+ /* @__PURE__ */ c.jsxs("div", { className: n("item__content"), children: [
93
+ v(r.title),
94
+ x(r == null ? void 0 : r.desc)
95
+ ] })
96
+ ]
97
+ }
98
+ )
99
+ }
100
+ );
101
+ },
102
+ [v, x]
103
+ ), w = d(
104
+ (r) => {
105
+ switch (a) {
106
+ case "card":
107
+ return k(r);
108
+ default:
109
+ return (r == null ? void 0 : r.redirect) !== void 0 ? j(
110
+ r.redirect,
111
+ /* @__PURE__ */ c.jsxs(C, { children: [
112
+ u(r == null ? void 0 : r.icon),
113
+ v(r.title, r),
114
+ x(r == null ? void 0 : r.desc)
115
+ ] })
116
+ ) : /* @__PURE__ */ c.jsxs(C, { children: [
117
+ u(r == null ? void 0 : r.icon),
118
+ v(r.title, r),
119
+ x(r == null ? void 0 : r.desc)
120
+ ] });
121
+ }
122
+ },
123
+ [a, k, u, j, v, x]
124
+ );
125
+ return /* @__PURE__ */ c.jsx(
126
+ "ul",
127
+ {
128
+ "aria-live": "polite",
129
+ "aria-relevant": "additions text",
130
+ ...L,
131
+ className: n(void 0, void 0, b),
132
+ children: I.map((r) => {
133
+ const s = !!(r != null && r.onClick) || !!(r != null && r.redirect);
134
+ return (
135
+ /* eslint-disable-next-line jsx-a11y/no-noninteractive-element-interactions */
136
+ /* @__PURE__ */ c.jsx(
137
+ "li",
138
+ {
139
+ "aria-pressed": s ? !1 : void 0,
140
+ role: s ? "button" : void 0,
141
+ tabIndex: s ? 0 : -1,
142
+ className: n(
143
+ "item",
144
+ {
145
+ "is-clickable": s,
146
+ [`is-clickable--${(r == null ? void 0 : r.variant) ?? _}`]: s,
147
+ ...N
148
+ },
149
+ r == null ? void 0 : r.className
150
+ ),
151
+ onClick: a === "default" && s ? () => {
152
+ var l;
153
+ return (l = r.onClick) == null ? void 0 : l.call(r, r);
154
+ } : void 0,
155
+ onKeyDown: s ? (l) => {
156
+ var h;
157
+ (l.key === "Enter" || l.key === " ") && (l.preventDefault(), (h = r == null ? void 0 : r.onClick) == null || h.call(r, r));
158
+ } : void 0,
159
+ children: w(r)
160
+ },
161
+ `list-item-${r.title}`
162
+ )
163
+ );
164
+ })
165
+ }
166
+ );
167
+ }
168
+ );
169
+ K.displayName = "List";
170
+ export {
171
+ K as List
172
+ };
@@ -1 +1,31 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const o="gradientMove",i="fadeInKeyframe",_={"prokodo-List":"prokodo-List","prokodo-List__item":"prokodo-List__item","prokodo-List__item__card":"prokodo-List__item__card","prokodo-List__item__card__content":"prokodo-List__item__card__content","prokodo-List__item__inner":"prokodo-List__item__inner","prokodo-List__item__link":"prokodo-List__item__link","prokodo-List__item__icon":"prokodo-List__item__icon","prokodo-List__item__icon__svg":"prokodo-List__item__icon__svg","prokodo-List__item__icon__wrapper":"prokodo-List__item__icon__wrapper","prokodo-List__item__title--card":"prokodo-List__item__title--card","prokodo-List__item__content":"prokodo-List__item__content","prokodo-List__item__desc":"prokodo-List__item__desc","prokodo-List__item--is-clickable":"prokodo-List__item--is-clickable","prokodo-List__item--is-clickable--inherit":"prokodo-List__item--is-clickable--inherit","prokodo-List__item--is-clickable--primary":"prokodo-List__item--is-clickable--primary","prokodo-List__item--is-clickable--secondary":"prokodo-List__item--is-clickable--secondary","prokodo-List__item--is-clickable--info":"prokodo-List__item--is-clickable--info","prokodo-List__item--is-clickable--success":"prokodo-List__item--is-clickable--success","prokodo-List__item--is-clickable--warning":"prokodo-List__item--is-clickable--warning","prokodo-List__item--is-clickable--error":"prokodo-List__item--is-clickable--error","prokodo-List__item--is-clickable--white":"prokodo-List__item--is-clickable--white","prokodo-List__item--card":"prokodo-List__item--card",gradientMove:o,fadeInKeyframe:i};exports.default=_;exports.fadeInKeyframe=i;exports.gradientMove=o;
1
+ const o = "gradientMove", i = "fadeInKeyframe", _ = {
2
+ "prokodo-List": "prokodo-List",
3
+ "prokodo-List__item": "prokodo-List__item",
4
+ "prokodo-List__item__card": "prokodo-List__item__card",
5
+ "prokodo-List__item__card__content": "prokodo-List__item__card__content",
6
+ "prokodo-List__item__inner": "prokodo-List__item__inner",
7
+ "prokodo-List__item__link": "prokodo-List__item__link",
8
+ "prokodo-List__item__icon": "prokodo-List__item__icon",
9
+ "prokodo-List__item__icon__svg": "prokodo-List__item__icon__svg",
10
+ "prokodo-List__item__icon__wrapper": "prokodo-List__item__icon__wrapper",
11
+ "prokodo-List__item__title--card": "prokodo-List__item__title--card",
12
+ "prokodo-List__item__content": "prokodo-List__item__content",
13
+ "prokodo-List__item__desc": "prokodo-List__item__desc",
14
+ "prokodo-List__item--is-clickable": "prokodo-List__item--is-clickable",
15
+ "prokodo-List__item--is-clickable--inherit": "prokodo-List__item--is-clickable--inherit",
16
+ "prokodo-List__item--is-clickable--primary": "prokodo-List__item--is-clickable--primary",
17
+ "prokodo-List__item--is-clickable--secondary": "prokodo-List__item--is-clickable--secondary",
18
+ "prokodo-List__item--is-clickable--info": "prokodo-List__item--is-clickable--info",
19
+ "prokodo-List__item--is-clickable--success": "prokodo-List__item--is-clickable--success",
20
+ "prokodo-List__item--is-clickable--warning": "prokodo-List__item--is-clickable--warning",
21
+ "prokodo-List__item--is-clickable--error": "prokodo-List__item--is-clickable--error",
22
+ "prokodo-List__item--is-clickable--white": "prokodo-List__item--is-clickable--white",
23
+ "prokodo-List__item--card": "prokodo-List__item--card",
24
+ gradientMove: o,
25
+ fadeInKeyframe: i
26
+ };
27
+ export {
28
+ _ as default,
29
+ i as fadeInKeyframe,
30
+ o as gradientMove
31
+ };
@@ -1 +1,4 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("./List.js");exports.List=t.List;
1
+ import { List as t } from "./List.js";
2
+ export {
3
+ t as List
4
+ };
@@ -1 +1,57 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("../../_virtual/jsx-runtime.js"),r=require("react"),a=require("../../helpers/bem.js"),t=require("./Loading.module.scss.js"),s=a.create(t.default,"Loading"),i=r.memo(({className:n,size:o="sm"})=>e.jsxRuntimeExports.jsxs("div",{className:s(void 0,void 0,n),style:{display:"flex",alignItems:"center",justifyContent:"center",gap:"16px"},children:[e.jsxRuntimeExports.jsx("svg",{height:0,style:{position:"absolute"},width:0,children:e.jsxRuntimeExports.jsx("defs",{children:e.jsxRuntimeExports.jsxs("linearGradient",{className:s("gradient"),id:"loading-gradient",x1:"0%",x2:"0%",y1:"0%",y2:"100%",children:[e.jsxRuntimeExports.jsx("stop",{offset:"0%"}),e.jsxRuntimeExports.jsx("stop",{offset:"50%"}),e.jsxRuntimeExports.jsx("stop",{offset:"100%"})]})})}),e.jsxRuntimeExports.jsx("div",{className:s("animation",{[`size-${o}`]:!0}),style:{borderRadius:"50%",border:"4px solid transparent",borderTop:"4px solid",animation:`${t.default.spin} 1s linear infinite`,background:"conic-gradient(from 0deg at 50% 50%, url(#loading-gradient) 0deg 360deg)"}})]}));i.displayName="Loading";exports.Loading=i;
1
+ import { j as e } from "../../_virtual/jsx-runtime.js";
2
+ import { memo as n } from "react";
3
+ import { create as r } from "../../helpers/bem.js";
4
+ import i from "./Loading.module.scss.js";
5
+ const s = r(i, "Loading"), a = n(({ className: t, size: o = "sm" }) => /* @__PURE__ */ e.jsxs(
6
+ "div",
7
+ {
8
+ className: s(void 0, void 0, t),
9
+ style: {
10
+ display: "flex",
11
+ alignItems: "center",
12
+ justifyContent: "center",
13
+ gap: "16px"
14
+ },
15
+ children: [
16
+ /* @__PURE__ */ e.jsx("svg", { height: 0, style: { position: "absolute" }, width: 0, children: /* @__PURE__ */ e.jsx("defs", { children: /* @__PURE__ */ e.jsxs(
17
+ "linearGradient",
18
+ {
19
+ className: s("gradient"),
20
+ id: "loading-gradient",
21
+ x1: "0%",
22
+ x2: "0%",
23
+ y1: "0%",
24
+ y2: "100%",
25
+ children: [
26
+ /* @__PURE__ */ e.jsx("stop", { offset: "0%" }),
27
+ /* @__PURE__ */ e.jsx("stop", { offset: "50%" }),
28
+ /* @__PURE__ */ e.jsx("stop", { offset: "100%" })
29
+ ]
30
+ }
31
+ ) }) }),
32
+ /* @__PURE__ */ e.jsx(
33
+ "div",
34
+ {
35
+ className: s("animation", {
36
+ [`size-${o}`]: !0
37
+ }),
38
+ style: {
39
+ borderRadius: "50%",
40
+ border: "4px solid transparent",
41
+ // Transparent border for empty space
42
+ borderTop: "4px solid",
43
+ // Apply color for top border only
44
+ animation: `${i.spin} 1s linear infinite`,
45
+ // Define animation for spinning
46
+ background: "conic-gradient(from 0deg at 50% 50%, url(#loading-gradient) 0deg 360deg)"
47
+ // Create a conic gradient
48
+ }
49
+ }
50
+ )
51
+ ]
52
+ }
53
+ ));
54
+ a.displayName = "Loading";
55
+ export {
56
+ a as Loading
57
+ };
@@ -1 +1,19 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const o="spin",i="gradientMove",n="fadeInKeyframe",a={"prokodo-Loading":"prokodo-Loading","prokodo-Loading__gradient":"prokodo-Loading__gradient","prokodo-Loading__animation":"prokodo-Loading__animation",spin:o,"prokodo-Loading__animation--size-xs":"prokodo-Loading__animation--size-xs","prokodo-Loading__animation--size-sm":"prokodo-Loading__animation--size-sm","prokodo-Loading__animation--size-md":"prokodo-Loading__animation--size-md","prokodo-Loading__animation--size-lg":"prokodo-Loading__animation--size-lg","prokodo-Loading__animation--size-xl":"prokodo-Loading__animation--size-xl",gradientMove:i,fadeInKeyframe:n};exports.default=a;exports.fadeInKeyframe=n;exports.gradientMove=i;exports.spin=o;
1
+ const o = "spin", i = "gradientMove", n = "fadeInKeyframe", a = {
2
+ "prokodo-Loading": "prokodo-Loading",
3
+ "prokodo-Loading__gradient": "prokodo-Loading__gradient",
4
+ "prokodo-Loading__animation": "prokodo-Loading__animation",
5
+ spin: o,
6
+ "prokodo-Loading__animation--size-xs": "prokodo-Loading__animation--size-xs",
7
+ "prokodo-Loading__animation--size-sm": "prokodo-Loading__animation--size-sm",
8
+ "prokodo-Loading__animation--size-md": "prokodo-Loading__animation--size-md",
9
+ "prokodo-Loading__animation--size-lg": "prokodo-Loading__animation--size-lg",
10
+ "prokodo-Loading__animation--size-xl": "prokodo-Loading__animation--size-xl",
11
+ gradientMove: i,
12
+ fadeInKeyframe: n
13
+ };
14
+ export {
15
+ a as default,
16
+ n as fadeInKeyframe,
17
+ i as gradientMove,
18
+ o as spin
19
+ };
@@ -1 +1,4 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./Loading.js");exports.Loading=e.Loading;
1
+ import { Loading as a } from "./Loading.js";
2
+ export {
3
+ a as Loading
4
+ };
@@ -1 +1,55 @@
1
- "use strict";var R=Object.create;var m=Object.defineProperty;var j=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var b=Object.getPrototypeOf,L=Object.prototype.hasOwnProperty;var E=(e,t,s,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of I(t))!L.call(e,o)&&o!==s&&m(e,o,{get:()=>t[o],enumerable:!(n=j(t,o))||n.enumerable});return e};var N=(e,t,s)=>(s=e!=null?R(b(e)):{},E(t||!e||!e.__esModule?m(s,"default",{value:e,enumerable:!0}):s,e));Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("../../_virtual/jsx-runtime.js"),i=require("react"),S=require("../../helpers/bem.js"),h=require("./Lottie.module.scss.js"),f=require("./LottieAnimations.js"),c=S.create(h.default,"Lottie"),q=i.lazy(()=>import("@lottiefiles/dotlottie-react").then(e=>({default:e.DotLottieReact}))),p=i.memo(({className:e,animationName:t,containerClassName:s,...n})=>{var d;const[o,v]=i.useState(!1),a=i.useRef(null);return i.useEffect(()=>{const u=new IntersectionObserver(([l])=>{(l==null?void 0:l.isIntersecting)===!0&&(v(!0),u.disconnect())}),x=a.current;return x&&u.observe(x),()=>u.disconnect()},[]),(d=f.ANIMATIONS)!=null&&d[t]?r.jsxRuntimeExports.jsx("div",{ref:a,className:c("container",void 0,s),children:o?r.jsxRuntimeExports.jsx(i.Suspense,{fallback:r.jsxRuntimeExports.jsx("div",{className:c("placeholder",void 0,s)}),children:r.jsxRuntimeExports.jsx(q,{autoplay:!0,autoResizeCanvas:!0,loop:!0,className:c(void 0,void 0,e),renderConfig:{devicePixelRatio:.9},src:f.ANIMATIONS[t],useFrameInterpolation:!1,...n})}):r.jsxRuntimeExports.jsx("div",{className:c("placeholder",void 0,s)})}):null});p.displayName="Lottie";exports.Lottie=p;
1
+ import { j as e } from "../../_virtual/jsx-runtime.js";
2
+ import { memo as p, useState as v, useRef as x, useEffect as I, Suspense as j, lazy as R } from "react";
3
+ import { create as b } from "../../helpers/bem.js";
4
+ import h from "./Lottie.module.scss.js";
5
+ import { ANIMATIONS as u } from "./LottieAnimations.js";
6
+ const t = b(h, "Lottie"), L = R(
7
+ () => import("@lottiefiles/dotlottie-react").then((o) => ({
8
+ default: o.DotLottieReact
9
+ }))
10
+ ), N = p(
11
+ ({ className: o, animationName: c, containerClassName: s, ...d }) => {
12
+ var l;
13
+ const [f, m] = v(!1), n = x(null);
14
+ return I(() => {
15
+ const r = new IntersectionObserver(([i]) => {
16
+ (i == null ? void 0 : i.isIntersecting) === !0 && (m(!0), r.disconnect());
17
+ }), a = n.current;
18
+ return a && r.observe(a), () => r.disconnect();
19
+ }, []), (l = u) != null && l[c] ? /* @__PURE__ */ e.jsx(
20
+ "div",
21
+ {
22
+ ref: n,
23
+ className: t("container", void 0, s),
24
+ children: f ? /* @__PURE__ */ e.jsx(
25
+ j,
26
+ {
27
+ fallback: /* @__PURE__ */ e.jsx(
28
+ "div",
29
+ {
30
+ className: t("placeholder", void 0, s)
31
+ }
32
+ ),
33
+ children: /* @__PURE__ */ e.jsx(
34
+ L,
35
+ {
36
+ autoplay: !0,
37
+ autoResizeCanvas: !0,
38
+ loop: !0,
39
+ className: t(void 0, void 0, o),
40
+ renderConfig: { devicePixelRatio: 0.9 },
41
+ src: u[c],
42
+ useFrameInterpolation: !1,
43
+ ...d
44
+ }
45
+ )
46
+ }
47
+ ) : /* @__PURE__ */ e.jsx("div", { className: t("placeholder", void 0, s) })
48
+ }
49
+ ) : null;
50
+ }
51
+ );
52
+ N.displayName = "Lottie";
53
+ export {
54
+ N as Lottie
55
+ };
@@ -1 +1,10 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e="gradientMove",o="fadeInKeyframe",t={"prokodo-Lottie__container":"prokodo-Lottie__container",gradientMove:e,fadeInKeyframe:o};exports.default=t;exports.fadeInKeyframe=o;exports.gradientMove=e;
1
+ const e = "gradientMove", o = "fadeInKeyframe", t = {
2
+ "prokodo-Lottie__container": "prokodo-Lottie__container",
3
+ gradientMove: e,
4
+ fadeInKeyframe: o
5
+ };
6
+ export {
7
+ t as default,
8
+ o as fadeInKeyframe,
9
+ e as gradientMove
10
+ };
@@ -1 +1,35 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t={SolutionUIUXDesign:"https://lottie.host/af0b17d4-cc93-48bb-b388-d058f579ae3a/mzzgcsHwL4.lottie",SolutionSoftwareDevelopment:"https://lottie.host/bf06b5a0-be40-4f2a-95e4-ae3e033006d3/pxQ7Wtj79u.lottie",SolutionAppDevelopment:"https://lottie.host/24da243e-b6e4-4180-abd2-fc70ece1a39c/UDS9WBtmnP.lottie",SolutionMarketing:"https://lottie.host/adcecb1c-461d-44a1-88bb-33ac05d46d3c/3MJbj0EmAN.lottie",SolutionCloud:"https://lottie.host/1f4750fd-b6d1-467c-956e-aa73a135859e/eFYRZy1wGx.lottie",SolutionCMS:"https://lottie.host/ba018362-745a-437f-9d7b-d73b9e703330/rzxWewbkvC.lottie",SolutionAIAutomation:"https://lottie.host/48d72c0c-5c54-4b15-9bd7-fd74c390ba37/m0eYQx59TH.lottie",SolutionProjectManagement:"https://lottie.host/688bcc01-8a1d-409b-908e-a56173c7927b/svTnec8A7e.lottie",ServiceAI:"https://lottie.host/a5311ebe-c1f3-4b94-9509-2d631a59cc46/bjuqMpRJkv.lottie",ServiceProjectmanagement:"https://lottie.host/841f6dd8-1cfc-4165-b5e9-09381141cb99/z0eni2vMyw.lottie",ServiceCloudSolutionsDatacenter:"https://lottie.host/66ac6f8d-66ef-458a-8d14-948592f1a65e/uQfPmnlujm.lottie",ServiceCMSDataTransfer:"https://lottie.host/105fc09c-ee9c-4765-ab43-0bf5b26cb395/93DzSJoUgh.lottie",ServiceWebApplicationCoding:"https://lottie.host/2830c0f4-5e97-4b3a-b3ed-b726c0de8447/g5nlv0g7p9.lottie",ServiceAppApplicationCoding:"https://lottie.host/9c029e60-f915-4eb8-91ea-123edb9b42bc/V77o0U9cND.lottie",ServiceAPIDevelopment:"https://lottie.host/f1df7053-da17-4070-afcd-0ee7063b94d5/ENvAukhE2D.lottie",ServiceWebdesign:"https://lottie.host/76b43e18-040a-4a8f-b75f-46eab430d3af/YuB4P2DMfj.lottie",AboutOurMission:"https://lottie.host/e9a146f1-91a1-4c9a-a75b-2b2646dbae13/Yanqpw6Rzd.lottie",AboutWhoWeAre:"https://lottie.host/e1123476-13bd-45ef-a5a4-a8560bcf3f29/9HJJWo4xtJ.lottie",LogoAWS:"https://lottie.host/0db4ad01-4be2-439f-858e-5b35a6a3fa10/na8bHDn7XH.lottie",LogoGCP:"https://lottie.host/7485553e-5baa-4463-a4cd-dc34df3e1966/b8mdLcofyU.lottie",LogoReact:"https://lottie.host/1f3571ff-9caf-4669-9cca-eb49f4481eab/rP3fY4zubb.lottie",LogoNodejs:"https://lottie.host/9bab6357-0884-43b8-ae4d-46e9ed1f175f/B1hOYuLcCu.lottie",LogoGithub:"https://lottie.host/e83a6197-0828-4cfe-b4e3-c02c64ae62e9/6Dcb0MXTTu.lottie",DataAnalytics:"https://lottie.host/39705791-7f99-48e4-8bd5-bc591c8c5356/TUI5KNWHZf.lottie",ProjectManagement:"https://lottie.host/5d3b9fec-c47e-42db-a730-eba87a1e8423/0ad0xAp3EE.lottie",CustomerFeedback:"https://lottie.host/a747a4f7-edf5-4d39-a815-513ec58b0f08/l0JXyd15wv.lottie",CustomerService:"https://lottie.host/9f95fc75-bc9a-4e79-962e-ee29aa814006/tYw7JZIxRh.lottie",MobileOTP:"https://lottie.host/23f9ab5b-1338-4ed4-841c-8fcdc3c2088c/7IjlwL6yhC.lottie",Swipe:"https://lottie.host/7da0edc5-d79e-497c-bcce-ab9dd8e9458d/lahjQ7ICxg.lottie",NotFound:"https://lottie.host/ee63adf0-2f07-44ca-94b1-f8829aea03a5/8qjL7cSngV.lottie"};exports.ANIMATIONS=t;
1
+ const t = {
2
+ SolutionUIUXDesign: "https://lottie.host/af0b17d4-cc93-48bb-b388-d058f579ae3a/mzzgcsHwL4.lottie",
3
+ SolutionSoftwareDevelopment: "https://lottie.host/bf06b5a0-be40-4f2a-95e4-ae3e033006d3/pxQ7Wtj79u.lottie",
4
+ SolutionAppDevelopment: "https://lottie.host/24da243e-b6e4-4180-abd2-fc70ece1a39c/UDS9WBtmnP.lottie",
5
+ SolutionMarketing: "https://lottie.host/adcecb1c-461d-44a1-88bb-33ac05d46d3c/3MJbj0EmAN.lottie",
6
+ SolutionCloud: "https://lottie.host/1f4750fd-b6d1-467c-956e-aa73a135859e/eFYRZy1wGx.lottie",
7
+ SolutionCMS: "https://lottie.host/ba018362-745a-437f-9d7b-d73b9e703330/rzxWewbkvC.lottie",
8
+ SolutionAIAutomation: "https://lottie.host/48d72c0c-5c54-4b15-9bd7-fd74c390ba37/m0eYQx59TH.lottie",
9
+ SolutionProjectManagement: "https://lottie.host/688bcc01-8a1d-409b-908e-a56173c7927b/svTnec8A7e.lottie",
10
+ ServiceAI: "https://lottie.host/a5311ebe-c1f3-4b94-9509-2d631a59cc46/bjuqMpRJkv.lottie",
11
+ ServiceProjectmanagement: "https://lottie.host/841f6dd8-1cfc-4165-b5e9-09381141cb99/z0eni2vMyw.lottie",
12
+ ServiceCloudSolutionsDatacenter: "https://lottie.host/66ac6f8d-66ef-458a-8d14-948592f1a65e/uQfPmnlujm.lottie",
13
+ ServiceCMSDataTransfer: "https://lottie.host/105fc09c-ee9c-4765-ab43-0bf5b26cb395/93DzSJoUgh.lottie",
14
+ ServiceWebApplicationCoding: "https://lottie.host/2830c0f4-5e97-4b3a-b3ed-b726c0de8447/g5nlv0g7p9.lottie",
15
+ ServiceAppApplicationCoding: "https://lottie.host/9c029e60-f915-4eb8-91ea-123edb9b42bc/V77o0U9cND.lottie",
16
+ ServiceAPIDevelopment: "https://lottie.host/f1df7053-da17-4070-afcd-0ee7063b94d5/ENvAukhE2D.lottie",
17
+ ServiceWebdesign: "https://lottie.host/76b43e18-040a-4a8f-b75f-46eab430d3af/YuB4P2DMfj.lottie",
18
+ AboutOurMission: "https://lottie.host/e9a146f1-91a1-4c9a-a75b-2b2646dbae13/Yanqpw6Rzd.lottie",
19
+ AboutWhoWeAre: "https://lottie.host/e1123476-13bd-45ef-a5a4-a8560bcf3f29/9HJJWo4xtJ.lottie",
20
+ LogoAWS: "https://lottie.host/0db4ad01-4be2-439f-858e-5b35a6a3fa10/na8bHDn7XH.lottie",
21
+ LogoGCP: "https://lottie.host/7485553e-5baa-4463-a4cd-dc34df3e1966/b8mdLcofyU.lottie",
22
+ LogoReact: "https://lottie.host/1f3571ff-9caf-4669-9cca-eb49f4481eab/rP3fY4zubb.lottie",
23
+ LogoNodejs: "https://lottie.host/9bab6357-0884-43b8-ae4d-46e9ed1f175f/B1hOYuLcCu.lottie",
24
+ LogoGithub: "https://lottie.host/e83a6197-0828-4cfe-b4e3-c02c64ae62e9/6Dcb0MXTTu.lottie",
25
+ DataAnalytics: "https://lottie.host/39705791-7f99-48e4-8bd5-bc591c8c5356/TUI5KNWHZf.lottie",
26
+ ProjectManagement: "https://lottie.host/5d3b9fec-c47e-42db-a730-eba87a1e8423/0ad0xAp3EE.lottie",
27
+ CustomerFeedback: "https://lottie.host/a747a4f7-edf5-4d39-a815-513ec58b0f08/l0JXyd15wv.lottie",
28
+ CustomerService: "https://lottie.host/9f95fc75-bc9a-4e79-962e-ee29aa814006/tYw7JZIxRh.lottie",
29
+ MobileOTP: "https://lottie.host/23f9ab5b-1338-4ed4-841c-8fcdc3c2088c/7IjlwL6yhC.lottie",
30
+ Swipe: "https://lottie.host/7da0edc5-d79e-497c-bcce-ab9dd8e9458d/lahjQ7ICxg.lottie",
31
+ NotFound: "https://lottie.host/ee63adf0-2f07-44ca-94b1-f8829aea03a5/8qjL7cSngV.lottie"
32
+ };
33
+ export {
34
+ t as ANIMATIONS
35
+ };
@@ -1 +1,4 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("./Lottie.js");exports.Lottie=t.Lottie;
1
+ import { Lottie as e } from "./Lottie.js";
2
+ export {
3
+ e as Lottie
4
+ };