claude-flow-novice 2.0.6 → 2.0.8

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 (1447) hide show
  1. package/dist/src/agents/frontend/index.js +3 -3
  2. package/dist/src/agents/github/agent-factory.js +6 -6
  3. package/dist/src/agents/github/compatibility/legacy-agent-proxy.js +4 -4
  4. package/dist/src/agents/github/core/github-collaboration-manager.js +1 -1
  5. package/dist/src/agents/github/core/github-integration-manager.js +1 -1
  6. package/dist/src/agents/github/core/github-release-coordinator.js +1 -1
  7. package/dist/src/agents/github/index.js +10 -10
  8. package/dist/src/cfn-loop/cfn-loop-orchestrator.js +1 -1
  9. package/dist/src/cli/agents/coder.js +1 -1
  10. package/dist/src/cli/commands/create-template.js +8 -8
  11. package/dist/src/cli/commands/start.js +1 -1
  12. package/dist/src/cli/commands/verification.js +1 -1
  13. package/dist/src/cli/consolidated/core/CommandHandlers.js +1 -1
  14. package/dist/src/cli/consolidated/utils/IntelligentDefaults.js +1 -1
  15. package/dist/src/cli/maestro-cli-bridge.js +1 -1
  16. package/dist/src/cli/main.js +1 -1
  17. package/dist/src/config/migration-manager.js +1 -1
  18. package/dist/src/coordination/archives/v2-sdk-typescript/v2/core/__tests__/help-system-integration.test.js +5 -5
  19. package/dist/src/coordination/archives/v2-sdk-typescript/v2/deadlock/deadlock-detector.test.js +1 -1
  20. package/dist/src/coordination/archives/v2-sdk-typescript/v2/index.js +5 -5
  21. package/dist/src/coordination/archives/v2-sdk-typescript/v2/integration/__tests__/help-deadlock-integration.test.js +4 -4
  22. package/dist/src/coordination/archives/v2-sdk-typescript/v2/integration/__tests__/state-machine-integration.test.js +2 -2
  23. package/dist/src/coordination/archives/v2-sdk-typescript/v2/truth/index.js +3 -3
  24. package/dist/src/enterprise/analytics-manager.js +1135 -0
  25. package/dist/src/enterprise/audit-manager.js +1115 -0
  26. package/dist/src/enterprise/cloud-manager.js +891 -0
  27. package/dist/src/enterprise/deployment-manager.js +966 -0
  28. package/dist/src/enterprise/index.js +6 -0
  29. package/dist/src/enterprise/project-manager.js +584 -0
  30. package/dist/src/enterprise/security-manager.js +991 -0
  31. package/dist/src/hooks/index.js +4 -4
  32. package/dist/src/migration/dist/index.d.js +5 -0
  33. package/dist/src/migration/dist/index.js +166 -0
  34. package/dist/src/migration/dist/logger.d.js +1 -0
  35. package/dist/src/migration/dist/logger.js +144 -0
  36. package/dist/src/migration/dist/migration-analyzer.d.js +3 -0
  37. package/dist/src/migration/dist/migration-analyzer.js +286 -0
  38. package/dist/src/migration/dist/migration-runner.d.js +1 -0
  39. package/dist/src/migration/dist/migration-runner.js +500 -0
  40. package/dist/src/migration/dist/migration-validator.d.js +3 -0
  41. package/dist/src/migration/dist/migration-validator.js +311 -0
  42. package/dist/src/migration/dist/progress-reporter.d.js +3 -0
  43. package/dist/src/migration/dist/progress-reporter.js +161 -0
  44. package/dist/src/migration/dist/rollback-manager.d.js +3 -0
  45. package/dist/src/migration/dist/rollback-manager.js +349 -0
  46. package/dist/src/migration/dist/types.d.js +3 -0
  47. package/dist/src/migration/dist/types.js +6 -0
  48. package/dist/src/migration/index.js +92 -0
  49. package/dist/src/migration/logger.js +121 -0
  50. package/dist/src/migration/migration-analyzer.js +268 -0
  51. package/dist/src/migration/migration-runner.js +522 -0
  52. package/dist/src/migration/migration-validator.js +285 -0
  53. package/dist/src/migration/progress-reporter.js +150 -0
  54. package/dist/src/migration/rollback-manager.js +321 -0
  55. package/dist/src/migration/tests/migration-system.test.js +7 -0
  56. package/dist/src/migration/types.js +3 -0
  57. package/dist/src/swarm/__tests__/integration.test.js +227 -0
  58. package/dist/src/swarm/__tests__/prompt-copier.test.js +344 -0
  59. package/dist/src/swarm/advanced-orchestrator.js +1095 -0
  60. package/dist/src/swarm/claude-code-interface.js +961 -0
  61. package/dist/src/swarm/claude-flow-executor.js +229 -0
  62. package/dist/src/swarm/consensus-coordinator.js +475 -0
  63. package/dist/src/swarm/coordinator.js +2993 -0
  64. package/dist/src/swarm/direct-executor.js +1180 -0
  65. package/dist/src/swarm/error-recovery/advanced-error-detection.js +691 -0
  66. package/dist/src/swarm/error-recovery/automated-recovery-workflows.js +998 -0
  67. package/dist/src/swarm/error-recovery/error-recovery-coordinator.js +1197 -0
  68. package/dist/src/swarm/error-recovery/recovery-monitoring.js +772 -0
  69. package/dist/src/swarm/error-recovery/resilience-architecture.js +714 -0
  70. package/dist/src/swarm/error-recovery/self-healing-mechanisms.js +1319 -0
  71. package/dist/src/swarm/error-recovery/test-error-recovery-effectiveness.js +808 -0
  72. package/dist/src/swarm/executor-v2.js +322 -0
  73. package/dist/src/swarm/executor.js +815 -0
  74. package/dist/src/swarm/hive-mind-integration.js +703 -0
  75. package/dist/src/swarm/index.js +41 -0
  76. package/dist/src/swarm/json-output-aggregator.js +267 -0
  77. package/dist/src/swarm/large-scale-coordinator.js +542 -0
  78. package/dist/src/swarm/mcp-integration-wrapper.js +628 -0
  79. package/dist/src/swarm/memory.js +1117 -0
  80. package/dist/src/swarm/optimizations/__tests__/optimization.test.js +348 -0
  81. package/dist/src/swarm/optimizations/async-file-manager.js +285 -0
  82. package/dist/src/swarm/optimizations/circular-buffer.js +162 -0
  83. package/dist/src/swarm/optimizations/connection-pool.js +244 -0
  84. package/dist/src/swarm/optimizations/index.js +28 -0
  85. package/dist/src/swarm/optimizations/optimized-executor.js +320 -0
  86. package/dist/src/swarm/optimizations/ttl-map.js +234 -0
  87. package/dist/src/swarm/prompt-cli.js +200 -0
  88. package/dist/src/swarm/prompt-copier-enhanced.js +202 -0
  89. package/dist/src/swarm/prompt-copier.js +381 -0
  90. package/dist/src/swarm/prompt-manager.js +295 -0
  91. package/dist/src/swarm/prompt-utils.js +310 -0
  92. package/dist/src/swarm/result-aggregator.js +718 -0
  93. package/dist/src/swarm/sparc-executor.js +1568 -0
  94. package/dist/src/swarm/strategies/auto.js +758 -0
  95. package/dist/src/swarm/strategies/base.js +128 -0
  96. package/dist/src/swarm/strategies/research.js +914 -0
  97. package/dist/src/swarm/strategies/strategy-metrics-patch.js +2 -0
  98. package/dist/src/swarm/types.js +52 -0
  99. package/dist/src/swarm/workers/copy-worker.js +56 -0
  100. package/dist/src/validators/epic-config-schema.js +214 -0
  101. package/dist/src/validators/index.js +10 -0
  102. package/dist/src/validators/swarm-init-validator.js +259 -0
  103. package/dist/src/validators/todowrite-batching-validator.js +215 -0
  104. package/dist/src/validators/todowrite-integration.js +187 -0
  105. package/dist/src/web/api/server.js +1 -1
  106. package/dist/src/web/dashboard/index.js +7 -7
  107. package/package.json +26 -14
  108. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryAlertRounded.js +0 -7
  109. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryAlertSharp.js +0 -7
  110. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryAlertTwoTone.js +0 -7
  111. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryCharging20.js +0 -12
  112. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryCharging20Outlined.js +0 -12
  113. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryCharging20Rounded.js +0 -12
  114. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryCharging20Sharp.js +0 -12
  115. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryCharging20TwoTone.js +0 -12
  116. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryCharging30.js +0 -12
  117. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryCharging30Outlined.js +0 -12
  118. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryCharging30Rounded.js +0 -12
  119. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryCharging30Sharp.js +0 -12
  120. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryCharging30TwoTone.js +0 -12
  121. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryCharging50.js +0 -12
  122. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryCharging50Outlined.js +0 -12
  123. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryCharging50Rounded.js +0 -12
  124. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryCharging50Sharp.js +0 -12
  125. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryCharging50TwoTone.js +0 -12
  126. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryCharging60.js +0 -12
  127. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryCharging60Outlined.js +0 -12
  128. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryCharging60Rounded.js +0 -12
  129. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryCharging60Sharp.js +0 -12
  130. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryCharging60TwoTone.js +0 -12
  131. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryCharging80.js +0 -12
  132. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryCharging80Outlined.js +0 -12
  133. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryCharging80Rounded.js +0 -12
  134. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryCharging80Sharp.js +0 -12
  135. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryCharging80TwoTone.js +0 -12
  136. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryCharging90.js +0 -12
  137. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryCharging90Outlined.js +0 -12
  138. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryCharging90Rounded.js +0 -12
  139. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryCharging90Sharp.js +0 -12
  140. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryCharging90TwoTone.js +0 -12
  141. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryChargingFull.js +0 -7
  142. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryChargingFullOutlined.js +0 -7
  143. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryChargingFullRounded.js +0 -7
  144. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryChargingFullSharp.js +0 -7
  145. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryChargingFullTwoTone.js +0 -7
  146. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryFull.js +0 -7
  147. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryFullOutlined.js +0 -7
  148. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryFullRounded.js +0 -7
  149. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryFullSharp.js +0 -7
  150. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryFullTwoTone.js +0 -7
  151. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatterySaver.js +0 -7
  152. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatterySaverOutlined.js +0 -7
  153. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatterySaverRounded.js +0 -7
  154. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatterySaverSharp.js +0 -7
  155. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatterySaverTwoTone.js +0 -7
  156. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryStd.js +0 -7
  157. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryStdOutlined.js +0 -7
  158. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryStdRounded.js +0 -7
  159. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryStdSharp.js +0 -7
  160. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryStdTwoTone.js +0 -7
  161. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryUnknown.js +0 -7
  162. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryUnknownOutlined.js +0 -7
  163. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryUnknownRounded.js +0 -7
  164. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryUnknownSharp.js +0 -7
  165. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BatteryUnknownTwoTone.js +0 -7
  166. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BeachAccess.js +0 -7
  167. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BeachAccessOutlined.js +0 -7
  168. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BeachAccessRounded.js +0 -7
  169. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BeachAccessSharp.js +0 -7
  170. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BeachAccessTwoTone.js +0 -10
  171. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Bed.js +0 -7
  172. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BedOutlined.js +0 -7
  173. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BedRounded.js +0 -7
  174. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BedSharp.js +0 -7
  175. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BedTwoTone.js +0 -10
  176. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BedroomBaby.js +0 -9
  177. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BedroomBabyOutlined.js +0 -7
  178. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BedroomBabyRounded.js +0 -9
  179. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BedroomBabySharp.js +0 -9
  180. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BedroomBabyTwoTone.js +0 -15
  181. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BedroomChild.js +0 -9
  182. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BedroomChildOutlined.js +0 -7
  183. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BedroomChildRounded.js +0 -9
  184. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BedroomChildSharp.js +0 -9
  185. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BedroomChildTwoTone.js +0 -12
  186. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BedroomParent.js +0 -9
  187. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BedroomParentOutlined.js +0 -7
  188. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BedroomParentRounded.js +0 -9
  189. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BedroomParentSharp.js +0 -9
  190. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BedroomParentTwoTone.js +0 -12
  191. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Bedtime.js +0 -7
  192. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BedtimeOff.js +0 -7
  193. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BedtimeOffOutlined.js +0 -7
  194. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BedtimeOffRounded.js +0 -7
  195. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BedtimeOffSharp.js +0 -7
  196. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BedtimeOffTwoTone.js +0 -10
  197. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BedtimeOutlined.js +0 -7
  198. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BedtimeRounded.js +0 -7
  199. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BedtimeSharp.js +0 -7
  200. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BedtimeTwoTone.js +0 -10
  201. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Beenhere.js +0 -7
  202. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BeenhereOutlined.js +0 -7
  203. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BeenhereRounded.js +0 -7
  204. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BeenhereSharp.js +0 -7
  205. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BeenhereTwoTone.js +0 -10
  206. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Bento.js +0 -7
  207. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BentoOutlined.js +0 -7
  208. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BentoRounded.js +0 -7
  209. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BentoSharp.js +0 -7
  210. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BentoTwoTone.js +0 -10
  211. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BikeScooter.js +0 -9
  212. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BikeScooterOutlined.js +0 -9
  213. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BikeScooterRounded.js +0 -9
  214. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BikeScooterSharp.js +0 -9
  215. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BikeScooterTwoTone.js +0 -9
  216. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Biotech.js +0 -13
  217. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BiotechOutlined.js +0 -7
  218. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BiotechRounded.js +0 -13
  219. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BiotechSharp.js +0 -13
  220. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BiotechTwoTone.js +0 -15
  221. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Blender.js +0 -7
  222. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlenderOutlined.js +0 -11
  223. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlenderRounded.js +0 -7
  224. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlenderSharp.js +0 -7
  225. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlenderTwoTone.js +0 -14
  226. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Blind.js +0 -11
  227. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlindOutlined.js +0 -11
  228. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlindRounded.js +0 -11
  229. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlindSharp.js +0 -11
  230. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlindTwoTone.js +0 -11
  231. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Blinds.js +0 -7
  232. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlindsClosed.js +0 -7
  233. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlindsClosedOutlined.js +0 -7
  234. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlindsClosedRounded.js +0 -7
  235. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlindsClosedSharp.js +0 -7
  236. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlindsClosedTwoTone.js +0 -10
  237. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlindsOutlined.js +0 -7
  238. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlindsRounded.js +0 -7
  239. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlindsSharp.js +0 -7
  240. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlindsTwoTone.js +0 -10
  241. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Block.js +0 -7
  242. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlockOutlined.js +0 -7
  243. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlockRounded.js +0 -7
  244. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlockSharp.js +0 -7
  245. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlockTwoTone.js +0 -7
  246. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Bloodtype.js +0 -7
  247. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BloodtypeOutlined.js +0 -9
  248. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BloodtypeRounded.js +0 -7
  249. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BloodtypeSharp.js +0 -7
  250. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BloodtypeTwoTone.js +0 -12
  251. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Bluetooth.js +0 -7
  252. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BluetoothAudio.js +0 -7
  253. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BluetoothAudioOutlined.js +0 -7
  254. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BluetoothAudioRounded.js +0 -7
  255. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BluetoothAudioSharp.js +0 -7
  256. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BluetoothAudioTwoTone.js +0 -7
  257. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BluetoothConnected.js +0 -7
  258. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BluetoothConnectedOutlined.js +0 -7
  259. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BluetoothConnectedRounded.js +0 -7
  260. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BluetoothConnectedSharp.js +0 -7
  261. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BluetoothConnectedTwoTone.js +0 -7
  262. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BluetoothDisabled.js +0 -7
  263. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BluetoothDisabledOutlined.js +0 -7
  264. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BluetoothDisabledRounded.js +0 -7
  265. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BluetoothDisabledSharp.js +0 -7
  266. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BluetoothDisabledTwoTone.js +0 -7
  267. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BluetoothDrive.js +0 -9
  268. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BluetoothDriveOutlined.js +0 -17
  269. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BluetoothDriveRounded.js +0 -9
  270. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BluetoothDriveSharp.js +0 -9
  271. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BluetoothDriveTwoTone.js +0 -20
  272. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BluetoothOutlined.js +0 -7
  273. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BluetoothRounded.js +0 -7
  274. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BluetoothSearching.js +0 -7
  275. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BluetoothSearchingOutlined.js +0 -7
  276. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BluetoothSearchingRounded.js +0 -7
  277. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BluetoothSearchingSharp.js +0 -7
  278. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BluetoothSearchingTwoTone.js +0 -7
  279. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BluetoothSharp.js +0 -7
  280. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BluetoothTwoTone.js +0 -7
  281. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlurCircular.js +0 -7
  282. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlurCircularOutlined.js +0 -7
  283. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlurCircularRounded.js +0 -7
  284. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlurCircularSharp.js +0 -7
  285. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlurCircularTwoTone.js +0 -29
  286. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlurLinear.js +0 -7
  287. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlurLinearOutlined.js +0 -7
  288. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlurLinearRounded.js +0 -7
  289. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlurLinearSharp.js +0 -7
  290. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlurLinearTwoTone.js +0 -51
  291. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlurOff.js +0 -7
  292. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlurOffOutlined.js +0 -47
  293. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlurOffRounded.js +0 -47
  294. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlurOffSharp.js +0 -47
  295. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlurOffTwoTone.js +0 -47
  296. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlurOn.js +0 -7
  297. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlurOnOutlined.js +0 -7
  298. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlurOnRounded.js +0 -7
  299. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlurOnSharp.js +0 -7
  300. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BlurOnTwoTone.js +0 -79
  301. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Bolt.js +0 -7
  302. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BoltOutlined.js +0 -7
  303. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BoltRounded.js +0 -7
  304. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BoltSharp.js +0 -7
  305. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BoltTwoTone.js +0 -7
  306. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Book.js +0 -7
  307. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookOnline.js +0 -7
  308. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookOnlineOutlined.js +0 -7
  309. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookOnlineRounded.js +0 -7
  310. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookOnlineSharp.js +0 -7
  311. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookOnlineTwoTone.js +0 -10
  312. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookOutlined.js +0 -7
  313. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookRounded.js +0 -7
  314. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookSharp.js +0 -7
  315. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookTwoTone.js +0 -10
  316. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Bookmark.js +0 -7
  317. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookmarkAdd.js +0 -7
  318. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookmarkAddOutlined.js +0 -7
  319. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookmarkAddRounded.js +0 -7
  320. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookmarkAddSharp.js +0 -7
  321. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookmarkAddTwoTone.js +0 -10
  322. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookmarkAdded.js +0 -7
  323. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookmarkAddedOutlined.js +0 -7
  324. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookmarkAddedRounded.js +0 -7
  325. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookmarkAddedSharp.js +0 -7
  326. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookmarkAddedTwoTone.js +0 -10
  327. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookmarkBorder.js +0 -7
  328. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookmarkBorderOutlined.js +0 -7
  329. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookmarkBorderRounded.js +0 -7
  330. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookmarkBorderSharp.js +0 -7
  331. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookmarkBorderTwoTone.js +0 -7
  332. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookmarkOutlined.js +0 -7
  333. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookmarkRemove.js +0 -7
  334. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookmarkRemoveOutlined.js +0 -7
  335. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookmarkRemoveRounded.js +0 -7
  336. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookmarkRemoveSharp.js +0 -7
  337. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookmarkRemoveTwoTone.js +0 -10
  338. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookmarkRounded.js +0 -7
  339. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookmarkSharp.js +0 -7
  340. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookmarkTwoTone.js +0 -10
  341. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Bookmarks.js +0 -7
  342. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookmarksOutlined.js +0 -7
  343. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookmarksRounded.js +0 -7
  344. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookmarksSharp.js +0 -7
  345. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BookmarksTwoTone.js +0 -10
  346. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderAll.js +0 -7
  347. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderAllOutlined.js +0 -7
  348. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderAllRounded.js +0 -7
  349. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderAllSharp.js +0 -7
  350. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderAllTwoTone.js +0 -7
  351. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderBottom.js +0 -7
  352. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderBottomOutlined.js +0 -7
  353. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderBottomRounded.js +0 -7
  354. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderBottomSharp.js +0 -7
  355. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderBottomTwoTone.js +0 -7
  356. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderClear.js +0 -7
  357. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderClearOutlined.js +0 -7
  358. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderClearRounded.js +0 -7
  359. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderClearSharp.js +0 -7
  360. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderClearTwoTone.js +0 -7
  361. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderColor.js +0 -7
  362. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderColorOutlined.js +0 -7
  363. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderColorRounded.js +0 -7
  364. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderColorSharp.js +0 -7
  365. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderColorTwoTone.js +0 -7
  366. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderHorizontal.js +0 -7
  367. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderHorizontalOutlined.js +0 -7
  368. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderHorizontalRounded.js +0 -7
  369. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderHorizontalSharp.js +0 -7
  370. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderHorizontalTwoTone.js +0 -7
  371. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderInner.js +0 -7
  372. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderInnerOutlined.js +0 -7
  373. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderInnerRounded.js +0 -7
  374. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderInnerSharp.js +0 -7
  375. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderInnerTwoTone.js +0 -7
  376. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderLeft.js +0 -7
  377. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderLeftOutlined.js +0 -7
  378. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderLeftRounded.js +0 -7
  379. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderLeftSharp.js +0 -7
  380. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderLeftTwoTone.js +0 -7
  381. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderOuter.js +0 -7
  382. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderOuterOutlined.js +0 -7
  383. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderOuterRounded.js +0 -7
  384. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderOuterSharp.js +0 -7
  385. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderOuterTwoTone.js +0 -7
  386. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderRight.js +0 -7
  387. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderRightOutlined.js +0 -7
  388. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderRightRounded.js +0 -7
  389. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderRightSharp.js +0 -7
  390. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderRightTwoTone.js +0 -7
  391. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderStyle.js +0 -7
  392. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderStyleOutlined.js +0 -7
  393. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderStyleRounded.js +0 -7
  394. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderStyleSharp.js +0 -7
  395. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderStyleTwoTone.js +0 -7
  396. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderTop.js +0 -7
  397. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderTopOutlined.js +0 -7
  398. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderTopRounded.js +0 -7
  399. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderTopSharp.js +0 -7
  400. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderTopTwoTone.js +0 -7
  401. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderVertical.js +0 -7
  402. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderVerticalOutlined.js +0 -7
  403. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderVerticalRounded.js +0 -7
  404. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderVerticalSharp.js +0 -7
  405. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BorderVerticalTwoTone.js +0 -7
  406. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Boy.js +0 -7
  407. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BoyOutlined.js +0 -7
  408. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BoyRounded.js +0 -7
  409. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BoySharp.js +0 -7
  410. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BoyTwoTone.js +0 -7
  411. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrandingWatermark.js +0 -7
  412. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrandingWatermarkOutlined.js +0 -7
  413. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrandingWatermarkRounded.js +0 -7
  414. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrandingWatermarkSharp.js +0 -7
  415. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrandingWatermarkTwoTone.js +0 -10
  416. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BreakfastDining.js +0 -8
  417. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BreakfastDiningOutlined.js +0 -9
  418. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BreakfastDiningRounded.js +0 -7
  419. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BreakfastDiningSharp.js +0 -7
  420. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BreakfastDiningTwoTone.js +0 -12
  421. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness1.js +0 -9
  422. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness1Outlined.js +0 -7
  423. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness1Rounded.js +0 -9
  424. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness1Sharp.js +0 -9
  425. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness1TwoTone.js +0 -10
  426. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness2.js +0 -7
  427. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness2Outlined.js +0 -7
  428. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness2Rounded.js +0 -7
  429. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness2Sharp.js +0 -7
  430. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness2TwoTone.js +0 -10
  431. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness3.js +0 -7
  432. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness3Outlined.js +0 -7
  433. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness3Rounded.js +0 -7
  434. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness3Sharp.js +0 -7
  435. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness3TwoTone.js +0 -10
  436. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness4.js +0 -7
  437. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness4Outlined.js +0 -7
  438. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness4Rounded.js +0 -7
  439. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness4Sharp.js +0 -7
  440. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness4TwoTone.js +0 -10
  441. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness5.js +0 -7
  442. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness5Outlined.js +0 -7
  443. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness5Rounded.js +0 -7
  444. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness5Sharp.js +0 -7
  445. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness5TwoTone.js +0 -10
  446. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness6.js +0 -7
  447. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness6Outlined.js +0 -7
  448. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness6Rounded.js +0 -7
  449. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness6Sharp.js +0 -7
  450. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness6TwoTone.js +0 -10
  451. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness7.js +0 -7
  452. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness7Outlined.js +0 -11
  453. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness7Rounded.js +0 -7
  454. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness7Sharp.js +0 -7
  455. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brightness7TwoTone.js +0 -14
  456. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrightnessAuto.js +0 -7
  457. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrightnessAutoOutlined.js +0 -7
  458. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrightnessAutoRounded.js +0 -7
  459. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrightnessAutoSharp.js +0 -7
  460. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrightnessAutoTwoTone.js +0 -10
  461. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrightnessHigh.js +0 -7
  462. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrightnessHighOutlined.js +0 -11
  463. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrightnessHighRounded.js +0 -7
  464. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrightnessHighSharp.js +0 -7
  465. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrightnessHighTwoTone.js +0 -14
  466. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrightnessLow.js +0 -7
  467. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrightnessLowOutlined.js +0 -7
  468. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrightnessLowRounded.js +0 -7
  469. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrightnessLowSharp.js +0 -7
  470. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrightnessLowTwoTone.js +0 -10
  471. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrightnessMedium.js +0 -7
  472. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrightnessMediumOutlined.js +0 -7
  473. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrightnessMediumRounded.js +0 -7
  474. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrightnessMediumSharp.js +0 -7
  475. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrightnessMediumTwoTone.js +0 -10
  476. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BroadcastOnHome.js +0 -11
  477. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BroadcastOnHomeOutlined.js +0 -11
  478. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BroadcastOnHomeRounded.js +0 -11
  479. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BroadcastOnHomeSharp.js +0 -11
  480. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BroadcastOnHomeTwoTone.js +0 -14
  481. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BroadcastOnPersonal.js +0 -11
  482. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BroadcastOnPersonalOutlined.js +0 -11
  483. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BroadcastOnPersonalRounded.js +0 -11
  484. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BroadcastOnPersonalSharp.js +0 -11
  485. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BroadcastOnPersonalTwoTone.js +0 -14
  486. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrokenImage.js +0 -7
  487. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrokenImageOutlined.js +0 -7
  488. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrokenImageRounded.js +0 -7
  489. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrokenImageSharp.js +0 -7
  490. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrokenImageTwoTone.js +0 -10
  491. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrowseGallery.js +0 -9
  492. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrowseGalleryOutlined.js +0 -9
  493. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrowseGalleryRounded.js +0 -9
  494. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrowseGallerySharp.js +0 -9
  495. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrowseGalleryTwoTone.js +0 -12
  496. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrowserNotSupported.js +0 -7
  497. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrowserNotSupportedOutlined.js +0 -7
  498. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrowserNotSupportedRounded.js +0 -7
  499. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrowserNotSupportedSharp.js +0 -7
  500. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrowserNotSupportedTwoTone.js +0 -7
  501. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrowserUpdated.js +0 -7
  502. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrowserUpdatedOutlined.js +0 -7
  503. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrowserUpdatedRounded.js +0 -7
  504. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrowserUpdatedSharp.js +0 -7
  505. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrowserUpdatedTwoTone.js +0 -7
  506. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrunchDining.js +0 -8
  507. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrunchDiningOutlined.js +0 -7
  508. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrunchDiningRounded.js +0 -7
  509. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrunchDiningSharp.js +0 -7
  510. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrunchDiningTwoTone.js +0 -10
  511. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Brush.js +0 -7
  512. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrushOutlined.js +0 -7
  513. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrushRounded.js +0 -7
  514. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrushSharp.js +0 -7
  515. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BrushTwoTone.js +0 -10
  516. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BubbleChart.js +0 -17
  517. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BubbleChartOutlined.js +0 -7
  518. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BubbleChartRounded.js +0 -17
  519. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BubbleChartSharp.js +0 -17
  520. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BubbleChartTwoTone.js +0 -20
  521. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BugReport.js +0 -7
  522. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BugReportOutlined.js +0 -7
  523. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BugReportRounded.js +0 -7
  524. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BugReportSharp.js +0 -7
  525. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BugReportTwoTone.js +0 -10
  526. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Build.js +0 -7
  527. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BuildCircle.js +0 -8
  528. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BuildCircleOutlined.js +0 -13
  529. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BuildCircleRounded.js +0 -8
  530. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BuildCircleSharp.js +0 -8
  531. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BuildCircleTwoTone.js +0 -12
  532. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BuildOutlined.js +0 -7
  533. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BuildRounded.js +0 -7
  534. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BuildSharp.js +0 -7
  535. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BuildTwoTone.js +0 -10
  536. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Bungalow.js +0 -7
  537. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BungalowOutlined.js +0 -7
  538. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BungalowRounded.js +0 -7
  539. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BungalowSharp.js +0 -7
  540. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BungalowTwoTone.js +0 -10
  541. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BurstMode.js +0 -7
  542. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BurstModeOutlined.js +0 -7
  543. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BurstModeRounded.js +0 -7
  544. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BurstModeSharp.js +0 -7
  545. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BurstModeTwoTone.js +0 -10
  546. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BusAlert.js +0 -7
  547. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BusAlertOutlined.js +0 -17
  548. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BusAlertRounded.js +0 -9
  549. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BusAlertSharp.js +0 -9
  550. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BusAlertTwoTone.js +0 -20
  551. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Business.js +0 -7
  552. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BusinessCenter.js +0 -7
  553. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BusinessCenterOutlined.js +0 -7
  554. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BusinessCenterRounded.js +0 -7
  555. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BusinessCenterSharp.js +0 -7
  556. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BusinessCenterTwoTone.js +0 -10
  557. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BusinessOutlined.js +0 -7
  558. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BusinessRounded.js +0 -7
  559. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BusinessSharp.js +0 -7
  560. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/BusinessTwoTone.js +0 -10
  561. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Cabin.js +0 -7
  562. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CabinOutlined.js +0 -7
  563. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CabinRounded.js +0 -7
  564. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CabinSharp.js +0 -7
  565. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CabinTwoTone.js +0 -10
  566. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Cable.js +0 -7
  567. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CableOutlined.js +0 -7
  568. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CableRounded.js +0 -7
  569. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CableSharp.js +0 -7
  570. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CableTwoTone.js +0 -7
  571. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Cached.js +0 -7
  572. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CachedOutlined.js +0 -7
  573. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CachedRounded.js +0 -7
  574. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CachedSharp.js +0 -7
  575. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CachedTwoTone.js +0 -7
  576. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Cake.js +0 -7
  577. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CakeOutlined.js +0 -7
  578. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CakeRounded.js +0 -7
  579. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CakeSharp.js +0 -7
  580. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CakeTwoTone.js +0 -10
  581. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Calculate.js +0 -7
  582. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CalculateOutlined.js +0 -9
  583. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CalculateRounded.js +0 -7
  584. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CalculateSharp.js +0 -7
  585. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CalculateTwoTone.js +0 -12
  586. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CalendarMonth.js +0 -7
  587. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CalendarMonthOutlined.js +0 -7
  588. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CalendarMonthRounded.js +0 -7
  589. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CalendarMonthSharp.js +0 -7
  590. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CalendarMonthTwoTone.js +0 -10
  591. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CalendarToday.js +0 -7
  592. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CalendarTodayOutlined.js +0 -7
  593. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CalendarTodayRounded.js +0 -7
  594. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CalendarTodaySharp.js +0 -7
  595. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CalendarTodayTwoTone.js +0 -10
  596. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CalendarViewDay.js +0 -7
  597. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CalendarViewDayOutlined.js +0 -7
  598. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CalendarViewDayRounded.js +0 -7
  599. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CalendarViewDaySharp.js +0 -7
  600. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CalendarViewDayTwoTone.js +0 -10
  601. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CalendarViewMonth.js +0 -7
  602. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CalendarViewMonthOutlined.js +0 -7
  603. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CalendarViewMonthRounded.js +0 -7
  604. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CalendarViewMonthSharp.js +0 -7
  605. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CalendarViewMonthTwoTone.js +0 -10
  606. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CalendarViewWeek.js +0 -7
  607. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CalendarViewWeekOutlined.js +0 -7
  608. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CalendarViewWeekRounded.js +0 -7
  609. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CalendarViewWeekSharp.js +0 -7
  610. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CalendarViewWeekTwoTone.js +0 -10
  611. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Call.js +0 -7
  612. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallEnd.js +0 -7
  613. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallEndOutlined.js +0 -7
  614. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallEndRounded.js +0 -7
  615. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallEndSharp.js +0 -7
  616. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallEndTwoTone.js +0 -10
  617. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallMade.js +0 -7
  618. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallMadeOutlined.js +0 -7
  619. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallMadeRounded.js +0 -7
  620. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallMadeSharp.js +0 -7
  621. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallMadeTwoTone.js +0 -7
  622. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallMerge.js +0 -7
  623. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallMergeOutlined.js +0 -7
  624. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallMergeRounded.js +0 -7
  625. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallMergeSharp.js +0 -7
  626. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallMergeTwoTone.js +0 -7
  627. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallMissed.js +0 -7
  628. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallMissedOutgoing.js +0 -7
  629. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallMissedOutgoingOutlined.js +0 -7
  630. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallMissedOutgoingRounded.js +0 -7
  631. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallMissedOutgoingSharp.js +0 -7
  632. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallMissedOutgoingTwoTone.js +0 -7
  633. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallMissedOutlined.js +0 -7
  634. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallMissedRounded.js +0 -7
  635. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallMissedSharp.js +0 -7
  636. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallMissedTwoTone.js +0 -7
  637. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallOutlined.js +0 -7
  638. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallReceived.js +0 -7
  639. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallReceivedOutlined.js +0 -7
  640. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallReceivedRounded.js +0 -7
  641. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallReceivedSharp.js +0 -7
  642. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallReceivedTwoTone.js +0 -7
  643. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallRounded.js +0 -7
  644. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallSharp.js +0 -7
  645. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallSplit.js +0 -7
  646. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallSplitOutlined.js +0 -7
  647. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallSplitRounded.js +0 -7
  648. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallSplitSharp.js +0 -7
  649. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallSplitTwoTone.js +0 -7
  650. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallToAction.js +0 -7
  651. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallToActionOutlined.js +0 -7
  652. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallToActionRounded.js +0 -7
  653. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallToActionSharp.js +0 -7
  654. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallToActionTwoTone.js +0 -10
  655. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CallTwoTone.js +0 -10
  656. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Camera.js +0 -7
  657. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraAlt.js +0 -11
  658. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraAltOutlined.js +0 -7
  659. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraAltRounded.js +0 -11
  660. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraAltSharp.js +0 -11
  661. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraAltTwoTone.js +0 -10
  662. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraEnhance.js +0 -9
  663. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraEnhanceOutlined.js +0 -7
  664. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraEnhanceRounded.js +0 -7
  665. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraEnhanceSharp.js +0 -7
  666. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraEnhanceTwoTone.js +0 -10
  667. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraFront.js +0 -7
  668. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraFrontOutlined.js +0 -7
  669. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraFrontRounded.js +0 -7
  670. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraFrontSharp.js +0 -7
  671. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraFrontTwoTone.js +0 -10
  672. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraIndoor.js +0 -7
  673. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraIndoorOutlined.js +0 -7
  674. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraIndoorRounded.js +0 -7
  675. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraIndoorSharp.js +0 -7
  676. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraIndoorTwoTone.js +0 -12
  677. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraOutdoor.js +0 -7
  678. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraOutdoorOutlined.js +0 -7
  679. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraOutdoorRounded.js +0 -7
  680. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraOutdoorSharp.js +0 -7
  681. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraOutdoorTwoTone.js +0 -7
  682. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraOutlined.js +0 -7
  683. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraRear.js +0 -7
  684. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraRearOutlined.js +0 -7
  685. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraRearRounded.js +0 -7
  686. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraRearSharp.js +0 -7
  687. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraRearTwoTone.js +0 -10
  688. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraRoll.js +0 -7
  689. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraRollOutlined.js +0 -7
  690. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraRollRounded.js +0 -7
  691. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraRollSharp.js +0 -7
  692. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraRollTwoTone.js +0 -10
  693. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraRounded.js +0 -7
  694. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraSharp.js +0 -7
  695. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraTwoTone.js +0 -10
  696. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Cameraswitch.js +0 -9
  697. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraswitchOutlined.js +0 -13
  698. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraswitchRounded.js +0 -9
  699. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraswitchSharp.js +0 -9
  700. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CameraswitchTwoTone.js +0 -16
  701. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Campaign.js +0 -7
  702. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CampaignOutlined.js +0 -7
  703. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CampaignRounded.js +0 -7
  704. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CampaignSharp.js +0 -7
  705. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CampaignTwoTone.js +0 -10
  706. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Cancel.js +0 -7
  707. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CancelOutlined.js +0 -7
  708. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CancelPresentation.js +0 -9
  709. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CancelPresentationOutlined.js +0 -7
  710. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CancelPresentationRounded.js +0 -7
  711. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CancelPresentationSharp.js +0 -7
  712. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CancelPresentationTwoTone.js +0 -10
  713. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CancelRounded.js +0 -7
  714. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CancelScheduleSend.js +0 -9
  715. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CancelScheduleSendOutlined.js +0 -9
  716. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CancelScheduleSendRounded.js +0 -9
  717. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CancelScheduleSendSharp.js +0 -9
  718. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CancelScheduleSendTwoTone.js +0 -12
  719. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CancelSharp.js +0 -7
  720. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CancelTwoTone.js +0 -10
  721. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CandlestickChart.js +0 -7
  722. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CandlestickChartOutlined.js +0 -7
  723. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CandlestickChartRounded.js +0 -7
  724. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CandlestickChartSharp.js +0 -7
  725. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CandlestickChartTwoTone.js +0 -12
  726. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CarCrash.js +0 -7
  727. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CarCrashOutlined.js +0 -7
  728. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CarCrashRounded.js +0 -7
  729. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CarCrashSharp.js +0 -7
  730. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CarCrashTwoTone.js +0 -10
  731. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CarRental.js +0 -7
  732. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CarRentalOutlined.js +0 -15
  733. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CarRentalRounded.js +0 -7
  734. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CarRentalSharp.js +0 -7
  735. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CarRentalTwoTone.js +0 -18
  736. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CarRepair.js +0 -7
  737. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CarRepairOutlined.js +0 -15
  738. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CarRepairRounded.js +0 -7
  739. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CarRepairSharp.js +0 -7
  740. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CarRepairTwoTone.js +0 -18
  741. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CardGiftcard.js +0 -7
  742. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CardGiftcardOutlined.js +0 -7
  743. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CardGiftcardRounded.js +0 -7
  744. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CardGiftcardSharp.js +0 -7
  745. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CardGiftcardTwoTone.js +0 -10
  746. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CardMembership.js +0 -7
  747. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CardMembershipOutlined.js +0 -7
  748. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CardMembershipRounded.js +0 -7
  749. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CardMembershipSharp.js +0 -7
  750. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CardMembershipTwoTone.js +0 -10
  751. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CardTravel.js +0 -7
  752. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CardTravelOutlined.js +0 -7
  753. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CardTravelRounded.js +0 -7
  754. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CardTravelSharp.js +0 -7
  755. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CardTravelTwoTone.js +0 -10
  756. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Carpenter.js +0 -7
  757. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CarpenterOutlined.js +0 -7
  758. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CarpenterRounded.js +0 -7
  759. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CarpenterSharp.js +0 -7
  760. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CarpenterTwoTone.js +0 -10
  761. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Cases.js +0 -7
  762. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CasesOutlined.js +0 -9
  763. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CasesRounded.js +0 -7
  764. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CasesSharp.js +0 -7
  765. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CasesTwoTone.js +0 -12
  766. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Casino.js +0 -7
  767. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CasinoOutlined.js +0 -27
  768. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CasinoRounded.js +0 -7
  769. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CasinoSharp.js +0 -7
  770. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CasinoTwoTone.js +0 -30
  771. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Cast.js +0 -7
  772. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CastConnected.js +0 -7
  773. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CastConnectedOutlined.js +0 -7
  774. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CastConnectedRounded.js +0 -7
  775. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CastConnectedSharp.js +0 -7
  776. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CastConnectedTwoTone.js +0 -10
  777. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CastForEducation.js +0 -7
  778. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CastForEducationOutlined.js +0 -7
  779. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CastForEducationRounded.js +0 -7
  780. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CastForEducationSharp.js +0 -7
  781. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CastForEducationTwoTone.js +0 -7
  782. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CastOutlined.js +0 -7
  783. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CastRounded.js +0 -7
  784. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CastSharp.js +0 -7
  785. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CastTwoTone.js +0 -7
  786. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Castle.js +0 -7
  787. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CastleOutlined.js +0 -9
  788. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CastleRounded.js +0 -7
  789. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CastleSharp.js +0 -7
  790. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CastleTwoTone.js +0 -12
  791. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CatchingPokemon.js +0 -7
  792. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CatchingPokemonOutlined.js +0 -7
  793. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CatchingPokemonRounded.js +0 -7
  794. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CatchingPokemonSharp.js +0 -7
  795. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CatchingPokemonTwoTone.js +0 -10
  796. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Category.js +0 -13
  797. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CategoryOutlined.js +0 -7
  798. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CategoryRounded.js +0 -13
  799. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CategorySharp.js +0 -13
  800. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CategoryTwoTone.js +0 -15
  801. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Celebration.js +0 -7
  802. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CelebrationOutlined.js +0 -7
  803. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CelebrationRounded.js +0 -7
  804. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CelebrationSharp.js +0 -9
  805. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CelebrationTwoTone.js +0 -10
  806. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CellTower.js +0 -9
  807. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CellTowerOutlined.js +0 -9
  808. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CellTowerRounded.js +0 -9
  809. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CellTowerSharp.js +0 -9
  810. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CellTowerTwoTone.js +0 -9
  811. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CellWifi.js +0 -7
  812. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CellWifiOutlined.js +0 -7
  813. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CellWifiRounded.js +0 -9
  814. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CellWifiSharp.js +0 -7
  815. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CellWifiTwoTone.js +0 -7
  816. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CenterFocusStrong.js +0 -7
  817. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CenterFocusStrongOutlined.js +0 -7
  818. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CenterFocusStrongRounded.js +0 -7
  819. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CenterFocusStrongSharp.js +0 -7
  820. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CenterFocusStrongTwoTone.js +0 -12
  821. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CenterFocusWeak.js +0 -7
  822. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CenterFocusWeakOutlined.js +0 -7
  823. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CenterFocusWeakRounded.js +0 -7
  824. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CenterFocusWeakSharp.js +0 -7
  825. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/CenterFocusWeakTwoTone.js +0 -10
  826. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Chair.js +0 -9
  827. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/ChairAlt.js +0 -7
  828. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/ChairAltOutlined.js +0 -7
  829. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/ChairAltRounded.js +0 -7
  830. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/ChairAltSharp.js +0 -7
  831. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/ChairAltTwoTone.js +0 -10
  832. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/ChairOutlined.js +0 -7
  833. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/ChairRounded.js +0 -9
  834. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/ChairSharp.js +0 -9
  835. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/ChairTwoTone.js +0 -13
  836. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/Chalet.js +0 -7
  837. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/ChaletOutlined.js +0 -7
  838. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/ChaletRounded.js +0 -7
  839. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/ChaletSharp.js +0 -7
  840. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/ChaletTwoTone.js +0 -10
  841. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/ChangeCircle.js +0 -7
  842. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/ChangeCircleOutlined.js +0 -7
  843. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/ChangeCircleRounded.js +0 -7
  844. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/ChangeCircleSharp.js +0 -7
  845. package/dist/src/web/frontend/node_modules/@mui/.icons-material-kdHMqIOU/esm/ChangeCircleTwoTone.js +0 -0
  846. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Accordion/Accordion.js +0 -296
  847. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Accordion/AccordionContext.js +0 -13
  848. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Accordion/accordionClasses.js +0 -7
  849. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Accordion/index.js +0 -3
  850. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/AccordionActions/AccordionActions.js +0 -94
  851. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/AccordionActions/accordionActionsClasses.js +0 -7
  852. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/AccordionActions/index.js +0 -3
  853. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/AccordionDetails/AccordionDetails.js +0 -71
  854. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/AccordionDetails/accordionDetailsClasses.js +0 -7
  855. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/AccordionDetails/index.js +0 -3
  856. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/AccordionSummary/AccordionSummary.js +0 -200
  857. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/AccordionSummary/accordionSummaryClasses.js +0 -7
  858. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/AccordionSummary/index.js +0 -3
  859. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Alert/Alert.js +0 -348
  860. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Alert/alertClasses.js +0 -7
  861. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Alert/index.js +0 -5
  862. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/AlertTitle/AlertTitle.js +0 -77
  863. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/AlertTitle/alertTitleClasses.js +0 -7
  864. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/AlertTitle/index.js +0 -5
  865. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/AppBar/AppBar.js +0 -179
  866. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/AppBar/appBarClasses.js +0 -7
  867. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/AppBar/index.js +0 -5
  868. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Autocomplete/Autocomplete.js +0 -1130
  869. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Autocomplete/autocompleteClasses.js +0 -7
  870. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Autocomplete/index.js +0 -5
  871. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Avatar/Avatar.js +0 -289
  872. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Avatar/avatarClasses.js +0 -7
  873. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Avatar/index.js +0 -5
  874. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/AvatarGroup/AvatarGroup.js +0 -200
  875. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/AvatarGroup/avatarGroupClasses.js +0 -7
  876. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/AvatarGroup/index.js +0 -5
  877. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Backdrop/Backdrop.js +0 -188
  878. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Backdrop/backdropClasses.js +0 -7
  879. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Backdrop/index.js +0 -5
  880. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Badge/Badge.js +0 -431
  881. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Badge/badgeClasses.js +0 -9
  882. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Badge/index.js +0 -5
  883. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/BottomNavigation/BottomNavigation.js +0 -124
  884. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/BottomNavigation/bottomNavigationClasses.js +0 -7
  885. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/BottomNavigation/index.js +0 -5
  886. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/BottomNavigationAction/BottomNavigationAction.js +0 -173
  887. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/BottomNavigationAction/bottomNavigationActionClasses.js +0 -7
  888. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/BottomNavigationAction/index.js +0 -5
  889. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Box/Box.js +0 -35
  890. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Box/boxClasses.js +0 -3
  891. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Box/index.js +0 -5
  892. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Breadcrumbs/BreadcrumbCollapsed.js +0 -90
  893. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Breadcrumbs/Breadcrumbs.js +0 -242
  894. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Breadcrumbs/breadcrumbsClasses.js +0 -7
  895. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Breadcrumbs/index.js +0 -5
  896. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Button/Button.js +0 -379
  897. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Button/buttonClasses.js +0 -7
  898. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Button/index.js +0 -5
  899. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/ButtonBase/ButtonBase.js +0 -477
  900. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/ButtonBase/buttonBaseClasses.js +0 -7
  901. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/ButtonBase/index.js +0 -7
  902. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/ButtonGroup/ButtonGroup.js +0 -293
  903. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/ButtonGroup/ButtonGroupButtonContext.js +0 -9
  904. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/ButtonGroup/ButtonGroupContext.js +0 -9
  905. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/ButtonGroup/buttonGroupClasses.js +0 -7
  906. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/ButtonGroup/index.js +0 -7
  907. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Card/Card.js +0 -87
  908. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Card/cardClasses.js +0 -7
  909. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Card/index.js +0 -5
  910. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/CardActionArea/CardActionArea.js +0 -120
  911. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/CardActionArea/cardActionAreaClasses.js +0 -7
  912. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/CardActionArea/index.js +0 -5
  913. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/CardActions/CardActions.js +0 -91
  914. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/CardActions/cardActionsClasses.js +0 -7
  915. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/CardActions/index.js +0 -5
  916. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/CardContent/CardContent.js +0 -83
  917. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/CardContent/cardContentClasses.js +0 -7
  918. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/CardContent/index.js +0 -5
  919. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/CardHeader/CardHeader.js +0 -196
  920. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/CardHeader/cardHeaderClasses.js +0 -7
  921. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/CardHeader/index.js +0 -5
  922. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/CardMedia/CardMedia.js +0 -138
  923. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/CardMedia/cardMediaClasses.js +0 -7
  924. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/CardMedia/index.js +0 -5
  925. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Checkbox/Checkbox.js +0 -212
  926. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Checkbox/checkboxClasses.js +0 -7
  927. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Checkbox/index.js +0 -5
  928. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Chip/Chip.js +0 -506
  929. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Chip/chipClasses.js +0 -7
  930. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Chip/index.js +0 -5
  931. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/CircularProgress/CircularProgress.js +0 -251
  932. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/CircularProgress/circularProgressClasses.js +0 -7
  933. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/CircularProgress/index.js +0 -5
  934. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/ClickAwayListener/ClickAwayListener.js +0 -177
  935. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/ClickAwayListener/index.js +0 -1
  936. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Collapse/Collapse.js +0 -377
  937. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Collapse/collapseClasses.js +0 -7
  938. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Collapse/index.js +0 -5
  939. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Container/Container.js +0 -67
  940. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Container/containerClasses.js +0 -7
  941. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Container/index.js +0 -5
  942. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/CssBaseline/CssBaseline.js +0 -103
  943. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/CssBaseline/index.js +0 -3
  944. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/DefaultPropsProvider/DefaultPropsProvider.js +0 -28
  945. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/DefaultPropsProvider/index.js +0 -1
  946. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Dialog/Dialog.js +0 -401
  947. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Dialog/DialogContext.js +0 -6
  948. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Dialog/dialogClasses.js +0 -7
  949. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Dialog/index.js +0 -5
  950. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/DialogActions/DialogActions.js +0 -93
  951. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/DialogActions/dialogActionsClasses.js +0 -7
  952. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/DialogActions/index.js +0 -5
  953. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/DialogContent/DialogContent.js +0 -99
  954. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/DialogContent/dialogContentClasses.js +0 -7
  955. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/DialogContent/index.js +0 -5
  956. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/DialogContentText/DialogContentText.js +0 -74
  957. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/DialogContentText/dialogContentTextClasses.js +0 -7
  958. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/DialogContentText/index.js +0 -5
  959. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/DialogTitle/DialogTitle.js +0 -83
  960. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/DialogTitle/dialogTitleClasses.js +0 -7
  961. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/DialogTitle/index.js +0 -5
  962. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Divider/Divider.js +0 -255
  963. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Divider/dividerClasses.js +0 -7
  964. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Divider/index.js +0 -5
  965. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Drawer/Drawer.js +0 -320
  966. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Drawer/drawerClasses.js +0 -7
  967. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Drawer/index.js +0 -5
  968. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Fab/Fab.js +0 -229
  969. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Fab/fabClasses.js +0 -7
  970. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Fab/index.js +0 -5
  971. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Fade/Fade.js +0 -206
  972. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Fade/index.js +0 -3
  973. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/FilledInput/FilledInput.js +0 -429
  974. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/FilledInput/filledInputClasses.js +0 -9
  975. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/FilledInput/index.js +0 -5
  976. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/FormControl/FormControl.js +0 -290
  977. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/FormControl/FormControlContext.js +0 -9
  978. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/FormControl/formControlClasses.js +0 -7
  979. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/FormControl/formControlState.js +0 -15
  980. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/FormControl/index.js +0 -6
  981. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/FormControlLabel/FormControlLabel.js +0 -245
  982. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/FormControlLabel/formControlLabelClasses.js +0 -7
  983. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/FormControlLabel/index.js +0 -5
  984. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/FormGroup/FormGroup.js +0 -105
  985. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/FormGroup/formGroupClasses.js +0 -7
  986. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/FormGroup/index.js +0 -5
  987. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/FormHelperText/FormHelperText.js +0 -166
  988. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/FormHelperText/formHelperTextClasses.js +0 -7
  989. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/FormHelperText/index.js +0 -5
  990. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/FormLabel/FormLabel.js +0 -165
  991. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/FormLabel/formLabelClasses.js +0 -7
  992. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/FormLabel/index.js +0 -6
  993. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/GlobalStyles/GlobalStyles.js +0 -26
  994. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/GlobalStyles/index.js +0 -1
  995. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Grid/Grid.js +0 -569
  996. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Grid/GridContext.js +0 -12
  997. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Grid/gridClasses.js +0 -19
  998. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Grid/index.js +0 -5
  999. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Grow/Grow.js +0 -256
  1000. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Grow/index.js +0 -3
  1001. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Hidden/Hidden.js +0 -141
  1002. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Hidden/HiddenCss.js +0 -180
  1003. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Hidden/HiddenJs.js +0 -125
  1004. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Hidden/hiddenCssClasses.js +0 -7
  1005. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Hidden/index.js +0 -3
  1006. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Icon/Icon.js +0 -146
  1007. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Icon/iconClasses.js +0 -7
  1008. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Icon/index.js +0 -5
  1009. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/IconButton/IconButton.js +0 -205
  1010. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/IconButton/iconButtonClasses.js +0 -7
  1011. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/IconButton/index.js +0 -5
  1012. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/ImageList/ImageList.js +0 -156
  1013. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/ImageList/ImageListContext.js +0 -13
  1014. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/ImageList/imageListClasses.js +0 -7
  1015. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/ImageList/index.js +0 -5
  1016. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/ImageListItem/ImageListItem.js +0 -174
  1017. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/ImageListItem/imageListItemClasses.js +0 -7
  1018. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/ImageListItem/index.js +0 -5
  1019. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/ImageListItemBar/ImageListItemBar.js +0 -222
  1020. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/ImageListItemBar/imageListItemBarClasses.js +0 -7
  1021. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/ImageListItemBar/index.js +0 -5
  1022. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/InitColorSchemeScript/InitColorSchemeScript.js +0 -14
  1023. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/InitColorSchemeScript/index.js +0 -1
  1024. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Input/Input.js +0 -342
  1025. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Input/index.js +0 -5
  1026. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Input/inputClasses.js +0 -9
  1027. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/InputAdornment/InputAdornment.js +0 -173
  1028. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/InputAdornment/index.js +0 -5
  1029. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/InputAdornment/inputAdornmentClasses.js +0 -7
  1030. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/InputBase/InputBase.js +0 -710
  1031. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/InputBase/index.js +0 -5
  1032. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/InputBase/inputBaseClasses.js +0 -7
  1033. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/InputLabel/InputLabel.js +0 -216
  1034. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/InputLabel/index.js +0 -5
  1035. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/InputLabel/inputLabelClasses.js +0 -7
  1036. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/LinearProgress/LinearProgress.js +0 -351
  1037. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/LinearProgress/index.js +0 -5
  1038. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/LinearProgress/linearProgressClasses.js +0 -7
  1039. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Link/Link.js +0 -211
  1040. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Link/getTextDecoration.js +0 -25
  1041. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Link/index.js +0 -5
  1042. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/Link/linkClasses.js +0 -7
  1043. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/List/List.js +0 -128
  1044. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/List/ListContext.js +0 -12
  1045. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/List/index.js +0 -5
  1046. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/List/listClasses.js +0 -7
  1047. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/ListItem/ListItem.js +0 -422
  1048. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/ListItem/index.js +0 -5
  1049. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/ListItem/listItemClasses.js +0 -7
  1050. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/className/index.js +0 -2
  1051. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/colors/amber.js +0 -17
  1052. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/colors/blue.js +0 -17
  1053. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/colors/blueGrey.js +0 -17
  1054. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/colors/brown.js +0 -17
  1055. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/colors/common.js +0 -5
  1056. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/colors/cyan.js +0 -17
  1057. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/colors/deepOrange.js +0 -17
  1058. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/colors/deepPurple.js +0 -17
  1059. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/colors/green.js +0 -17
  1060. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/colors/grey.js +0 -17
  1061. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/colors/index.js +0 -20
  1062. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/colors/indigo.js +0 -17
  1063. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/colors/lightBlue.js +0 -17
  1064. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/colors/lightGreen.js +0 -17
  1065. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/colors/lime.js +0 -17
  1066. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/darkScrollbar/index.js +0 -32
  1067. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/generateUtilityClass/index.js +0 -1
  1068. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/generateUtilityClasses/index.js +0 -1
  1069. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/index.js +0 -289
  1070. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/internal/animate.js +0 -39
  1071. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/internal/svg-icons/Add.js +0 -12
  1072. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/internal/svg-icons/ArrowDownward.js +0 -12
  1073. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/internal/svg-icons/ArrowDropDown.js +0 -12
  1074. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/internal/svg-icons/Cancel.js +0 -12
  1075. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/internal/svg-icons/CheckBox.js +0 -12
  1076. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/internal/svg-icons/CheckBoxOutlineBlank.js +0 -12
  1077. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/internal/svg-icons/CheckCircle.js +0 -12
  1078. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/internal/svg-icons/Close.js +0 -14
  1079. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/internal/svg-icons/ErrorOutline.js +0 -12
  1080. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/internal/svg-icons/FirstPage.js +0 -12
  1081. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/internal/svg-icons/IndeterminateCheckBox.js +0 -12
  1082. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/internal/svg-icons/InfoOutlined.js +0 -12
  1083. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/internal/svg-icons/KeyboardArrowLeft.js +0 -12
  1084. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/internal/svg-icons/KeyboardArrowRight.js +0 -12
  1085. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/internal/svg-icons/LastPage.js +0 -12
  1086. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Accordion/Accordion.js +0 -307
  1087. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Accordion/AccordionContext.js +0 -13
  1088. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Accordion/accordionClasses.js +0 -7
  1089. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Accordion/index.js +0 -3
  1090. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/AccordionActions/AccordionActions.js +0 -90
  1091. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/AccordionActions/accordionActionsClasses.js +0 -7
  1092. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/AccordionActions/index.js +0 -3
  1093. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/AccordionDetails/AccordionDetails.js +0 -69
  1094. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/AccordionDetails/accordionDetailsClasses.js +0 -7
  1095. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/AccordionDetails/index.js +0 -3
  1096. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/AccordionSummary/AccordionSummary.js +0 -199
  1097. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/AccordionSummary/accordionSummaryClasses.js +0 -7
  1098. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/AccordionSummary/index.js +0 -3
  1099. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Alert/Alert.js +0 -386
  1100. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Alert/alertClasses.js +0 -7
  1101. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Alert/index.js +0 -5
  1102. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/AlertTitle/AlertTitle.js +0 -73
  1103. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/AlertTitle/alertTitleClasses.js +0 -7
  1104. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/AlertTitle/index.js +0 -5
  1105. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/AppBar/AppBar.js +0 -176
  1106. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/AppBar/appBarClasses.js +0 -7
  1107. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/AppBar/index.js +0 -5
  1108. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Autocomplete/Autocomplete.js +0 -1126
  1109. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Autocomplete/autocompleteClasses.js +0 -7
  1110. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Autocomplete/index.js +0 -5
  1111. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Avatar/Avatar.js +0 -296
  1112. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Avatar/avatarClasses.js +0 -7
  1113. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Avatar/index.js +0 -5
  1114. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/AvatarGroup/AvatarGroup.js +0 -197
  1115. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/AvatarGroup/avatarGroupClasses.js +0 -7
  1116. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/AvatarGroup/index.js +0 -5
  1117. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Backdrop/Backdrop.js +0 -189
  1118. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Backdrop/backdropClasses.js +0 -7
  1119. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Backdrop/index.js +0 -5
  1120. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Badge/Badge.js +0 -442
  1121. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Badge/badgeClasses.js +0 -9
  1122. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Badge/index.js +0 -5
  1123. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/BottomNavigation/BottomNavigation.js +0 -124
  1124. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/BottomNavigation/bottomNavigationClasses.js +0 -7
  1125. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/BottomNavigation/index.js +0 -5
  1126. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/BottomNavigationAction/BottomNavigationAction.js +0 -166
  1127. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/BottomNavigationAction/bottomNavigationActionClasses.js +0 -7
  1128. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/BottomNavigationAction/index.js +0 -5
  1129. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Box/Box.js +0 -35
  1130. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Box/boxClasses.js +0 -3
  1131. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Box/index.js +0 -5
  1132. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Breadcrumbs/BreadcrumbCollapsed.js +0 -90
  1133. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Breadcrumbs/Breadcrumbs.js +0 -253
  1134. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Breadcrumbs/breadcrumbsClasses.js +0 -7
  1135. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Breadcrumbs/index.js +0 -5
  1136. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Button/Button.js +0 -378
  1137. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Button/buttonClasses.js +0 -7
  1138. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Button/index.js +0 -5
  1139. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ButtonBase/ButtonBase.js +0 -488
  1140. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ButtonBase/buttonBaseClasses.js +0 -7
  1141. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ButtonBase/index.js +0 -7
  1142. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ButtonGroup/ButtonGroup.js +0 -276
  1143. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ButtonGroup/ButtonGroupButtonContext.js +0 -9
  1144. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ButtonGroup/ButtonGroupContext.js +0 -9
  1145. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ButtonGroup/buttonGroupClasses.js +0 -7
  1146. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ButtonGroup/index.js +0 -7
  1147. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Card/Card.js +0 -85
  1148. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Card/cardClasses.js +0 -7
  1149. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Card/index.js +0 -5
  1150. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/CardActionArea/CardActionArea.js +0 -120
  1151. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/CardActionArea/cardActionAreaClasses.js +0 -7
  1152. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/CardActionArea/index.js +0 -5
  1153. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/CardActions/CardActions.js +0 -86
  1154. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/CardActions/cardActionsClasses.js +0 -7
  1155. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/CardActions/index.js +0 -5
  1156. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/CardContent/CardContent.js +0 -81
  1157. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/CardContent/cardContentClasses.js +0 -7
  1158. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/CardContent/index.js +0 -5
  1159. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/CardHeader/CardHeader.js +0 -199
  1160. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/CardHeader/cardHeaderClasses.js +0 -7
  1161. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/CardHeader/index.js +0 -5
  1162. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/CardMedia/CardMedia.js +0 -131
  1163. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/CardMedia/cardMediaClasses.js +0 -7
  1164. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/CardMedia/index.js +0 -5
  1165. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Checkbox/Checkbox.js +0 -212
  1166. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Checkbox/checkboxClasses.js +0 -7
  1167. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Checkbox/index.js +0 -5
  1168. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Chip/Chip.js +0 -455
  1169. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Chip/chipClasses.js +0 -7
  1170. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Chip/index.js +0 -5
  1171. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/CircularProgress/CircularProgress.js +0 -224
  1172. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/CircularProgress/circularProgressClasses.js +0 -7
  1173. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/CircularProgress/index.js +0 -5
  1174. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ClickAwayListener/ClickAwayListener.js +0 -180
  1175. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ClickAwayListener/index.js +0 -1
  1176. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Collapse/Collapse.js +0 -383
  1177. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Collapse/collapseClasses.js +0 -7
  1178. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Collapse/index.js +0 -5
  1179. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Container/Container.js +0 -67
  1180. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Container/containerClasses.js +0 -7
  1181. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Container/index.js +0 -5
  1182. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/CssBaseline/CssBaseline.js +0 -114
  1183. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/CssBaseline/index.js +0 -3
  1184. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/DefaultPropsProvider/DefaultPropsProvider.js +0 -28
  1185. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/DefaultPropsProvider/index.js +0 -1
  1186. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Dialog/Dialog.js +0 -401
  1187. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Dialog/DialogContext.js +0 -6
  1188. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Dialog/dialogClasses.js +0 -7
  1189. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Dialog/index.js +0 -5
  1190. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/DialogActions/DialogActions.js +0 -88
  1191. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/DialogActions/dialogActionsClasses.js +0 -7
  1192. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/DialogActions/index.js +0 -5
  1193. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/DialogContent/DialogContent.js +0 -93
  1194. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/DialogContent/dialogContentClasses.js +0 -7
  1195. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/DialogContent/index.js +0 -5
  1196. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/DialogContentText/DialogContentText.js +0 -74
  1197. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/DialogContentText/dialogContentTextClasses.js +0 -7
  1198. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/DialogContentText/index.js +0 -5
  1199. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/DialogTitle/DialogTitle.js +0 -80
  1200. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/DialogTitle/dialogTitleClasses.js +0 -7
  1201. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/DialogTitle/index.js +0 -5
  1202. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Divider/Divider.js +0 -260
  1203. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Divider/dividerClasses.js +0 -7
  1204. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Divider/index.js +0 -5
  1205. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Drawer/Drawer.js +0 -316
  1206. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Drawer/drawerClasses.js +0 -7
  1207. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Drawer/index.js +0 -5
  1208. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Fab/Fab.js +0 -229
  1209. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Fab/fabClasses.js +0 -7
  1210. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Fab/index.js +0 -5
  1211. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Fade/Fade.js +0 -207
  1212. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Fade/index.js +0 -3
  1213. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/FilledInput/FilledInput.js +0 -425
  1214. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/FilledInput/filledInputClasses.js +0 -9
  1215. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/FilledInput/index.js +0 -5
  1216. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/FormControl/FormControl.js +0 -301
  1217. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/FormControl/FormControlContext.js +0 -9
  1218. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/FormControl/formControlClasses.js +0 -7
  1219. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/FormControl/formControlState.js +0 -14
  1220. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/FormControl/index.js +0 -6
  1221. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/FormControlLabel/FormControlLabel.js +0 -241
  1222. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/FormControlLabel/formControlLabelClasses.js +0 -7
  1223. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/FormControlLabel/index.js +0 -5
  1224. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/FormGroup/FormGroup.js +0 -100
  1225. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/FormGroup/formGroupClasses.js +0 -7
  1226. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/FormGroup/index.js +0 -5
  1227. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/FormHelperText/FormHelperText.js +0 -167
  1228. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/FormHelperText/formHelperTextClasses.js +0 -7
  1229. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/FormHelperText/index.js +0 -5
  1230. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/FormLabel/FormLabel.js +0 -166
  1231. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/FormLabel/formLabelClasses.js +0 -7
  1232. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/FormLabel/index.js +0 -6
  1233. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/GlobalStyles/GlobalStyles.js +0 -26
  1234. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/GlobalStyles/index.js +0 -1
  1235. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Grid/Grid.js +0 -558
  1236. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Grid/GridContext.js +0 -12
  1237. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Grid/gridClasses.js +0 -28
  1238. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Grid/index.js +0 -5
  1239. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Grow/Grow.js +0 -254
  1240. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Grow/index.js +0 -3
  1241. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Hidden/Hidden.js +0 -149
  1242. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Hidden/HiddenCss.js +0 -168
  1243. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Hidden/HiddenJs.js +0 -123
  1244. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Hidden/hiddenCssClasses.js +0 -7
  1245. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Hidden/index.js +0 -3
  1246. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Icon/Icon.js +0 -144
  1247. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Icon/iconClasses.js +0 -7
  1248. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Icon/index.js +0 -5
  1249. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/IconButton/IconButton.js +0 -204
  1250. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/IconButton/iconButtonClasses.js +0 -7
  1251. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/IconButton/index.js +0 -5
  1252. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ImageList/ImageList.js +0 -155
  1253. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ImageList/ImageListContext.js +0 -13
  1254. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ImageList/imageListClasses.js +0 -7
  1255. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ImageList/index.js +0 -5
  1256. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ImageListItem/ImageListItem.js +0 -168
  1257. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ImageListItem/imageListItemClasses.js +0 -7
  1258. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ImageListItem/index.js +0 -5
  1259. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ImageListItemBar/ImageListItemBar.js +0 -212
  1260. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ImageListItemBar/imageListItemBarClasses.js +0 -7
  1261. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ImageListItemBar/index.js +0 -5
  1262. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/InitColorSchemeScript/InitColorSchemeScript.js +0 -14
  1263. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/InitColorSchemeScript/index.js +0 -1
  1264. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Input/Input.js +0 -339
  1265. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Input/index.js +0 -5
  1266. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Input/inputClasses.js +0 -9
  1267. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/InputAdornment/InputAdornment.js +0 -168
  1268. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/InputAdornment/index.js +0 -5
  1269. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/InputAdornment/inputAdornmentClasses.js +0 -7
  1270. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/InputBase/InputBase.js +0 -714
  1271. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/InputBase/index.js +0 -5
  1272. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/InputBase/inputBaseClasses.js +0 -7
  1273. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/InputLabel/InputLabel.js +0 -214
  1274. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/InputLabel/index.js +0 -5
  1275. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/InputLabel/inputLabelClasses.js +0 -7
  1276. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/LinearProgress/LinearProgress.js +0 -286
  1277. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/LinearProgress/index.js +0 -5
  1278. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/LinearProgress/linearProgressClasses.js +0 -7
  1279. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Link/Link.js +0 -209
  1280. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Link/getTextDecoration.js +0 -24
  1281. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Link/index.js +0 -5
  1282. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Link/linkClasses.js +0 -7
  1283. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/List/List.js +0 -127
  1284. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/List/ListContext.js +0 -12
  1285. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/List/index.js +0 -5
  1286. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/List/listClasses.js +0 -7
  1287. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ListItem/ListItem.js +0 -426
  1288. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ListItem/index.js +0 -5
  1289. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ListItem/listItemClasses.js +0 -7
  1290. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ListItemAvatar/ListItemAvatar.js +0 -82
  1291. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ListItemAvatar/index.js +0 -5
  1292. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ListItemAvatar/listItemAvatarClasses.js +0 -7
  1293. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ListItemButton/ListItemButton.js +0 -242
  1294. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ListItemButton/index.js +0 -5
  1295. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ListItemButton/listItemButtonClasses.js +0 -7
  1296. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ListItemIcon/ListItemIcon.js +0 -86
  1297. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ListItemIcon/index.js +0 -5
  1298. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ListItemIcon/listItemIconClasses.js +0 -7
  1299. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ListItemSecondaryAction/ListItemSecondaryAction.js +0 -85
  1300. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ListItemSecondaryAction/index.js +0 -5
  1301. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ListItemSecondaryAction/listItemSecondaryActionClasses.js +0 -7
  1302. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ListItemText/ListItemText.js +0 -161
  1303. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ListItemText/index.js +0 -5
  1304. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ListItemText/listItemTextClasses.js +0 -7
  1305. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ListSubheader/ListSubheader.js +0 -139
  1306. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ListSubheader/index.js +0 -5
  1307. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ListSubheader/listSubheaderClasses.js +0 -7
  1308. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Menu/index.js +0 -5
  1309. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/MenuItem/index.js +0 -5
  1310. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/MenuList/index.js +0 -3
  1311. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/MobileStepper/index.js +0 -5
  1312. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Modal/index.js +0 -6
  1313. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/NativeSelect/index.js +0 -5
  1314. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/NoSsr/index.js +0 -1
  1315. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/OutlinedInput/index.js +0 -5
  1316. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Pagination/index.js +0 -5
  1317. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/PaginationItem/index.js +0 -5
  1318. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Paper/index.js +0 -5
  1319. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Popover/index.js +0 -6
  1320. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Popper/BasePopper.js +0 -380
  1321. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Popper/BasePopper.types.js +0 -1
  1322. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Popper/index.js +0 -4
  1323. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Portal/index.js +0 -1
  1324. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Radio/index.js +0 -5
  1325. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/RadioGroup/index.js +0 -6
  1326. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Rating/index.js +0 -3
  1327. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ScopedCssBaseline/index.js +0 -5
  1328. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Select/index.js +0 -5
  1329. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Skeleton/index.js +0 -5
  1330. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Slide/index.js +0 -3
  1331. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Slider/index.js +0 -6
  1332. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Snackbar/index.js +0 -5
  1333. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/SnackbarContent/index.js +0 -5
  1334. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/SpeedDial/index.js +0 -5
  1335. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/SpeedDialAction/index.js +0 -5
  1336. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/SpeedDialIcon/index.js +0 -5
  1337. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Stack/index.js +0 -4
  1338. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Step/index.js +0 -7
  1339. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/StepButton/index.js +0 -5
  1340. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/StepConnector/index.js +0 -5
  1341. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/StepContent/index.js +0 -5
  1342. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/StepIcon/index.js +0 -5
  1343. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/StepLabel/index.js +0 -5
  1344. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Stepper/index.js +0 -7
  1345. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/StyledEngineProvider/index.js +0 -1
  1346. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/SvgIcon/index.js +0 -5
  1347. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/SwipeableDrawer/index.js +0 -3
  1348. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Switch/index.js +0 -5
  1349. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Tab/index.js +0 -5
  1350. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/TabScrollButton/index.js +0 -5
  1351. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Table/index.js +0 -5
  1352. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/TableBody/index.js +0 -5
  1353. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/TableCell/index.js +0 -5
  1354. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/TableContainer/index.js +0 -5
  1355. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/TableFooter/index.js +0 -5
  1356. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/TableHead/index.js +0 -5
  1357. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/TablePagination/index.js +0 -5
  1358. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/TableRow/index.js +0 -5
  1359. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/TableSortLabel/index.js +0 -5
  1360. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Tabs/index.js +0 -5
  1361. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/TextField/index.js +0 -5
  1362. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/TextareaAutosize/index.js +0 -1
  1363. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ToggleButton/index.js +0 -5
  1364. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ToggleButtonGroup/index.js +0 -5
  1365. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/ToggleButtonGroup/isValueSelected.js +0 -11
  1366. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Toolbar/index.js +0 -3
  1367. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Tooltip/index.js +0 -5
  1368. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Typography/index.js +0 -5
  1369. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Unstable_Grid2/Grid2.js +0 -37
  1370. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Unstable_Grid2/Grid2Props.js +0 -1
  1371. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Unstable_Grid2/grid2Classes.js +0 -28
  1372. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Unstable_Grid2/index.js +0 -6
  1373. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Unstable_TrapFocus/FocusTrap.js +0 -340
  1374. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Unstable_TrapFocus/FocusTrap.types.js +0 -1
  1375. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Unstable_TrapFocus/index.js +0 -1
  1376. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/Zoom/index.js +0 -3
  1377. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/className/index.js +0 -2
  1378. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/colors/amber.js +0 -17
  1379. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/colors/blue.js +0 -17
  1380. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/colors/blueGrey.js +0 -17
  1381. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/colors/brown.js +0 -17
  1382. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/colors/common.js +0 -5
  1383. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/colors/cyan.js +0 -17
  1384. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/colors/deepOrange.js +0 -17
  1385. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/colors/deepPurple.js +0 -17
  1386. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/colors/green.js +0 -17
  1387. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/colors/grey.js +0 -17
  1388. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/colors/index.js +0 -20
  1389. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/colors/indigo.js +0 -17
  1390. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/colors/lightBlue.js +0 -17
  1391. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/colors/lightGreen.js +0 -17
  1392. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/colors/lime.js +0 -17
  1393. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/darkScrollbar/index.js +0 -33
  1394. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/generateUtilityClass/index.js +0 -1
  1395. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/generateUtilityClasses/index.js +0 -1
  1396. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/index.js +0 -289
  1397. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/internal/animate.js +0 -41
  1398. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/internal/svg-icons/Add.js +0 -12
  1399. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/internal/svg-icons/ArrowDownward.js +0 -12
  1400. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/internal/svg-icons/ArrowDropDown.js +0 -12
  1401. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/internal/svg-icons/Cancel.js +0 -12
  1402. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/internal/svg-icons/CheckBox.js +0 -12
  1403. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/internal/svg-icons/CheckBoxOutlineBlank.js +0 -12
  1404. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/internal/svg-icons/CheckCircle.js +0 -12
  1405. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/internal/svg-icons/Close.js +0 -14
  1406. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/internal/svg-icons/ErrorOutline.js +0 -12
  1407. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/internal/svg-icons/FirstPage.js +0 -12
  1408. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/internal/svg-icons/IndeterminateCheckBox.js +0 -12
  1409. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/internal/svg-icons/InfoOutlined.js +0 -12
  1410. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/internal/svg-icons/KeyboardArrowLeft.js +0 -12
  1411. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/internal/svg-icons/KeyboardArrowRight.js +0 -12
  1412. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/internal/svg-icons/LastPage.js +0 -12
  1413. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/locale/index.js +0 -4389
  1414. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/styles/CssVarsProvider.js +0 -53
  1415. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/styles/adaptV4Theme.js +0 -81
  1416. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/styles/createMixins.js +0 -15
  1417. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/styles/createMuiStrictModeTheme.js +0 -10
  1418. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/styles/createPalette.js +0 -299
  1419. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/styles/createStyles.js +0 -10
  1420. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/styles/createTheme.js +0 -100
  1421. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/styles/createTransitions.js +0 -97
  1422. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/styles/createTypography.js +0 -93
  1423. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/styles/cssUtils.js +0 -122
  1424. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/styles/defaultTheme.js +0 -5
  1425. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/styles/excludeVariablesFromRoot.js +0 -10
  1426. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/styles/experimental_extendTheme.js +0 -336
  1427. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/styles/getOverlayAlpha.js +0 -11
  1428. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/styles/identifier.js +0 -1
  1429. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/styles/index.js +0 -37
  1430. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/styles/makeStyles.js +0 -4
  1431. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/transitions/index.js +0 -1
  1432. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/useAutocomplete/index.js +0 -3
  1433. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/useMediaQuery/index.js +0 -1
  1434. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/usePagination/index.js +0 -3
  1435. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/useScrollTrigger/index.js +0 -3
  1436. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/useTouchRipple/index.js +0 -3
  1437. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/utils/areArraysEqual.js +0 -9
  1438. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/utils/capitalize.js +0 -2
  1439. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/utils/createChainedFunction.js +0 -2
  1440. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/utils/createSvgIcon.js +0 -27
  1441. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/utils/debounce.js +0 -2
  1442. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/utils/deprecatedPropType.js +0 -2
  1443. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/utils/getScrollbarSize.js +0 -2
  1444. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/utils/index.js +0 -30
  1445. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/utils/isMuiElement.js +0 -2
  1446. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/version/index.js +0 -7
  1447. package/dist/src/web/frontend/node_modules/@mui/.material-VIftvoMg/legacy/zero-styled/index.js +0 -7
@@ -1,4389 +0,0 @@
1
- export var amET = {
2
- components: {
3
- MuiBreadcrumbs: {
4
- defaultProps: {
5
- expandText: 'መንገድ አሳይ'
6
- }
7
- },
8
- MuiTablePagination: {
9
- defaultProps: {
10
- getItemAriaLabel: function getItemAriaLabel(type) {
11
- if (type === 'first') {
12
- return 'ወደ መጀመሪያው ገጽ ይሂዱ';
13
- }
14
- if (type === 'last') {
15
- return 'ወደ መጨረሻው ገጽ ይሂዱ';
16
- }
17
- if (type === 'next') {
18
- return 'ወደ ቀጣዩ ገጽ ይሂዱ';
19
- }
20
- // if (type === 'previous') {
21
- return 'ወደ ቀዳሚው ገጽ ይሂዱ';
22
- },
23
- labelRowsPerPage: 'ረድፎች በአንድ ገጽ:',
24
- labelDisplayedRows: function labelDisplayedRows(_ref) {
25
- var from = _ref.from,
26
- to = _ref.to,
27
- count = _ref.count;
28
- return "".concat(from, "-").concat(to, " \u12A8 ").concat(count !== -1 ? count : "".concat(to, " \u1260\u120B\u12ED"));
29
- }
30
- }
31
- },
32
- MuiRating: {
33
- defaultProps: {
34
- getLabelText: function getLabelText(value) {
35
- return "".concat(value, " \u12AE\u12A8").concat(value !== 1 ? 'ቦች' : 'ብ');
36
- },
37
- emptyLabelText: 'ባዶ'
38
- }
39
- },
40
- MuiAutocomplete: {
41
- defaultProps: {
42
- clearText: 'አጽዳ',
43
- closeText: 'ዝጋ',
44
- loadingText: 'በመጫን ላይ…',
45
- noOptionsText: 'አማራጮች የሉም',
46
- openText: 'ክፈት'
47
- }
48
- },
49
- MuiAlert: {
50
- defaultProps: {
51
- closeText: 'ዝጋ'
52
- }
53
- },
54
- MuiPagination: {
55
- defaultProps: {
56
- 'aria-label': 'የገጽ አሰሳ',
57
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
58
- if (type === 'page') {
59
- return "".concat(selected ? '' : 'ወደ ', "\u1308\u133D ").concat(page).concat(selected ? '' : ' ሂድ');
60
- }
61
- if (type === 'first') {
62
- return 'ወደ መጀመሪያው ገጽ ይሂዱ';
63
- }
64
- if (type === 'last') {
65
- return 'ወደ መጨረሻው ገጽ ይሂዱ';
66
- }
67
- if (type === 'next') {
68
- return 'ወደ ቀጣዩ ገጽ ይሂዱ';
69
- }
70
- // if (type === 'previous') {
71
- return 'ወደ ቀዳሚው ገጽ ይሂዱ';
72
- }
73
- }
74
- }
75
- }
76
- };
77
- export var arEG = {
78
- components: {
79
- MuiBreadcrumbs: {
80
- defaultProps: {
81
- expandText: 'إظهار المسار'
82
- }
83
- },
84
- MuiTablePagination: {
85
- defaultProps: {
86
- getItemAriaLabel: function getItemAriaLabel(type) {
87
- if (type === 'first') {
88
- return 'انتقل إلى الصفحة الأولى';
89
- }
90
- if (type === 'last') {
91
- return 'انتقل إلى الصفحة الأخيرة';
92
- }
93
- if (type === 'next') {
94
- return 'انتقل إلى الصفحة التالية';
95
- }
96
- // if (type === 'previous') {
97
- return 'انتقل إلى الصفحة السابقة';
98
- },
99
- labelRowsPerPage: 'عدد الصفوف في الصفحة:',
100
- labelDisplayedRows: function labelDisplayedRows(_ref2) {
101
- var from = _ref2.from,
102
- to = _ref2.to,
103
- count = _ref2.count;
104
- return "".concat(from, "\u2013").concat(to, " \u0645\u0646 ").concat(count !== -1 ? count : " \u0623\u0643\u062B\u0631 \u0645\u0646".concat(to));
105
- }
106
- }
107
- },
108
- MuiRating: {
109
- defaultProps: {
110
- getLabelText: function getLabelText(value) {
111
- return "".concat(value, " ").concat(value !== 1 ? 'نجوم' : 'نجمة');
112
- },
113
- emptyLabelText: 'فارغ'
114
- }
115
- },
116
- MuiAutocomplete: {
117
- defaultProps: {
118
- clearText: 'مسح',
119
- closeText: 'إغلاق',
120
- loadingText: 'جار التحميل...',
121
- noOptionsText: 'لا يوجد خيارات',
122
- openText: 'فتح'
123
- }
124
- },
125
- MuiAlert: {
126
- defaultProps: {
127
- closeText: 'إغلاق'
128
- }
129
- },
130
- MuiPagination: {
131
- defaultProps: {
132
- 'aria-label': 'التنقل عبر الصفحات',
133
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
134
- if (type === 'page') {
135
- return "".concat(selected ? '' : 'انتقل إلى ', " \u0635\u0641\u062D\u0629 ").concat(page);
136
- }
137
- if (type === 'first') {
138
- return 'انتقل إلى الصفحة الأولى';
139
- }
140
- if (type === 'last') {
141
- return 'انتقل إلى الصفحة الأخيرة';
142
- }
143
- if (type === 'next') {
144
- return 'انتقل إلى الصفحة التالية';
145
- }
146
- // if (type === 'previous') {
147
- return 'انتقل إلى الصفحة السابقة';
148
- }
149
- }
150
- }
151
- }
152
- };
153
- export var arSA = {
154
- components: {
155
- MuiBreadcrumbs: {
156
- defaultProps: {
157
- expandText: 'إظهار المسار'
158
- }
159
- },
160
- MuiTablePagination: {
161
- defaultProps: {
162
- getItemAriaLabel: function getItemAriaLabel(type) {
163
- if (type === 'first') {
164
- return 'الانتقال إلى الصفحة الأولى';
165
- }
166
- if (type === 'last') {
167
- return 'الانتقال إلى الصفحة الأخيرة';
168
- }
169
- if (type === 'next') {
170
- return 'الانتقال إلى الصفحة التالية';
171
- }
172
- // if (type === 'previous') {
173
- return 'الانتقال إلى الصفحة السابقة';
174
- },
175
- labelRowsPerPage: 'عدد الصفوف في الصفحة:',
176
- labelDisplayedRows: function labelDisplayedRows(_ref3) {
177
- var from = _ref3.from,
178
- to = _ref3.to,
179
- count = _ref3.count;
180
- return "".concat(from, "\u2013").concat(to, " \u0645\u0646 ").concat(count !== -1 ? count : " \u0623\u0643\u062B\u0631 \u0645\u0646".concat(to));
181
- }
182
- }
183
- },
184
- MuiRating: {
185
- defaultProps: {
186
- getLabelText: function getLabelText(value) {
187
- return "".concat(value, " ").concat(value !== 1 ? 'نجوم' : 'نجمة');
188
- },
189
- emptyLabelText: 'فارغ'
190
- }
191
- },
192
- MuiAutocomplete: {
193
- defaultProps: {
194
- clearText: 'مسح',
195
- closeText: 'إغلاق',
196
- loadingText: 'جار التحميل...',
197
- noOptionsText: 'لا توجد خيارات',
198
- openText: 'فتح'
199
- }
200
- },
201
- MuiAlert: {
202
- defaultProps: {
203
- closeText: 'إغلاق'
204
- }
205
- },
206
- MuiPagination: {
207
- defaultProps: {
208
- 'aria-label': 'التنقل عبر الصفحات',
209
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
210
- if (type === 'page') {
211
- return "".concat(selected ? '' : 'الانتقال إلى ', " \u0635\u0641\u062D\u0629 ").concat(page);
212
- }
213
- if (type === 'first') {
214
- return 'الانتقال إلى الصفحة الأولى';
215
- }
216
- if (type === 'last') {
217
- return 'الانتقال الي الصفحة الأخيرة';
218
- }
219
- if (type === 'next') {
220
- return 'الانتقال إلى الصفحة التالية';
221
- }
222
- // if (type === 'previous') {
223
- return 'الانتقال إلى الصفحة السابقة';
224
- }
225
- }
226
- }
227
- }
228
- };
229
- export var arSD = {
230
- components: {
231
- MuiBreadcrumbs: {
232
- defaultProps: {
233
- expandText: 'إظهار المسار'
234
- }
235
- },
236
- MuiTablePagination: {
237
- defaultProps: {
238
- getItemAriaLabel: function getItemAriaLabel(type) {
239
- if (type === 'first') {
240
- return 'انتقل إلى الصفحة الأولى';
241
- }
242
- if (type === 'last') {
243
- return 'انتقل إلى الصفحة الأخيرة';
244
- }
245
- if (type === 'next') {
246
- return 'انتقل إلى الصفحة التالية';
247
- }
248
- // if (type === 'previous') {
249
- return 'انتقل إلى الصفحة السابقة';
250
- },
251
- labelRowsPerPage: 'عدد الصفوف في الصفحة:',
252
- labelDisplayedRows: function labelDisplayedRows(_ref4) {
253
- var from = _ref4.from,
254
- to = _ref4.to,
255
- count = _ref4.count;
256
- return "".concat(from, "\u2013").concat(to, " \u0645\u0646 ").concat(count !== -1 ? count : " \u0623\u0643\u062B\u0631 \u0645\u0646".concat(to));
257
- }
258
- }
259
- },
260
- MuiRating: {
261
- defaultProps: {
262
- getLabelText: function getLabelText(value) {
263
- return "".concat(value, " ").concat(value !== 1 ? 'نجوم' : 'نجمة');
264
- },
265
- emptyLabelText: 'فارغ'
266
- }
267
- },
268
- MuiAutocomplete: {
269
- defaultProps: {
270
- clearText: 'مسح',
271
- closeText: 'إغلاق',
272
- loadingText: 'جار التحميل...',
273
- noOptionsText: 'لا يوجد خيارات',
274
- openText: 'فتح'
275
- }
276
- },
277
- MuiAlert: {
278
- defaultProps: {
279
- closeText: 'إغلاق'
280
- }
281
- },
282
- MuiPagination: {
283
- defaultProps: {
284
- 'aria-label': 'التنقل عبر الصفحات',
285
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
286
- if (type === 'page') {
287
- return "".concat(selected ? '' : 'انتقل إلى ', " \u0635\u0641\u062D\u0629 ").concat(page);
288
- }
289
- if (type === 'first') {
290
- return 'انتقل إلى الصفحة الأولى';
291
- }
292
- if (type === 'last') {
293
- return 'انتقل الي الصفحة الأخيرة';
294
- }
295
- if (type === 'next') {
296
- return 'انتقل إلى الصفحة التالية';
297
- }
298
- // if (type === 'previous') {
299
- return 'انتقل إلى الصفحة السابقة';
300
- }
301
- }
302
- }
303
- }
304
- };
305
- export var azAZ = {
306
- components: {
307
- MuiBreadcrumbs: {
308
- defaultProps: {
309
- expandText: 'Yolu göstər'
310
- }
311
- },
312
- MuiTablePagination: {
313
- defaultProps: {
314
- getItemAriaLabel: function getItemAriaLabel(type) {
315
- if (type === 'first') {
316
- return 'Birinci səhifəyə keç';
317
- }
318
- if (type === 'last') {
319
- return 'Sonuncu səhifəyə keç';
320
- }
321
- if (type === 'next') {
322
- return 'Növbəti səhifəyə keç';
323
- }
324
- // if (type === 'previous') {
325
- return 'Əvvəlki səhifəyə keç';
326
- },
327
- labelRowsPerPage: 'Səhifəyə düşən sətrlər:'
328
- // labelDisplayedRows: ({ from, to, count }) =>
329
- // `${from}–${to} dən ${count !== -1 ? count : `more than ${to}`}`,
330
- }
331
- },
332
- MuiRating: {
333
- defaultProps: {
334
- getLabelText: function getLabelText(value) {
335
- var pluralForm = 'Ulduz';
336
- var lastDigit = value % 10;
337
- if (lastDigit > 1 && lastDigit < 5) {
338
- pluralForm = 'Ulduzlar';
339
- }
340
- return "".concat(value, " ").concat(pluralForm);
341
- },
342
- emptyLabelText: 'Boş'
343
- }
344
- },
345
- MuiAutocomplete: {
346
- defaultProps: {
347
- clearText: 'Silmək',
348
- closeText: 'Bağlamaq',
349
- loadingText: 'Yüklənir…',
350
- noOptionsText: 'Seçimlər mövcud deyil',
351
- openText: 'Открыть'
352
- }
353
- },
354
- MuiAlert: {
355
- defaultProps: {
356
- closeText: 'Bağlamaq'
357
- }
358
- },
359
- MuiPagination: {
360
- defaultProps: {
361
- 'aria-label': 'Səhifənin naviqasiyası',
362
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
363
- if (type === 'page') {
364
- return "".concat(page, " ").concat(selected ? 'səhifə' : 'səhifəyə keç');
365
- }
366
- if (type === 'first') {
367
- return 'Birinci səhifəyə keç';
368
- }
369
- if (type === 'last') {
370
- return 'Sonuncu səhifəyə keç';
371
- }
372
- if (type === 'next') {
373
- return 'Növbəti səhifəyə keç';
374
- }
375
- // if (type === 'previous') {
376
- return 'Əvvəlki səhifəyə keç';
377
- }
378
- }
379
- }
380
- }
381
- };
382
- export var bnBD = {
383
- components: {
384
- MuiBreadcrumbs: {
385
- defaultProps: {
386
- expandText: 'পথ দেখান'
387
- }
388
- },
389
- MuiTablePagination: {
390
- defaultProps: {
391
- getItemAriaLabel: function getItemAriaLabel(type) {
392
- if (type === 'first') {
393
- return 'প্রথম পৃষ্ঠায় যান';
394
- }
395
- if (type === 'last') {
396
- return 'শেষ পৃষ্ঠায় যান';
397
- }
398
- if (type === 'next') {
399
- return 'পরবর্তী পৃষ্ঠায় যান';
400
- }
401
- // if (type === 'previous') {
402
- return 'আগের পৃষ্ঠায় যান';
403
- },
404
- labelRowsPerPage: 'প্রতি পৃষ্ঠায় সারি:',
405
- labelDisplayedRows: function labelDisplayedRows(_ref5) {
406
- var from = _ref5.from,
407
- to = _ref5.to,
408
- count = _ref5.count;
409
- return "".concat(from, "\u2013").concat(to, " / ").concat(count !== -1 ? count : "".concat(to, " \u09A5\u09C7\u0995\u09C7 \u09AC\u09C7\u09B6\u09BF"));
410
- }
411
- }
412
- },
413
- MuiRating: {
414
- defaultProps: {
415
- getLabelText: function getLabelText(value) {
416
- return "".concat(value, " \u09B8\u09CD\u099F\u09BE\u09B0");
417
- },
418
- emptyLabelText: 'খালি'
419
- }
420
- },
421
- MuiAutocomplete: {
422
- defaultProps: {
423
- clearText: 'পরিষ্কার করুন',
424
- closeText: 'বন্ধ করুন',
425
- loadingText: 'লোড হচ্ছে…',
426
- noOptionsText: 'কোন অপশন নেই',
427
- openText: 'ওপেন করুন'
428
- }
429
- },
430
- MuiAlert: {
431
- defaultProps: {
432
- closeText: 'বন্ধ করুন'
433
- }
434
- },
435
- MuiPagination: {
436
- defaultProps: {
437
- 'aria-label': 'পেজিনেশন নেভিগেশন',
438
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
439
- if (type === 'page') {
440
- return "".concat(selected ? '' : 'যান ', "\u09AA\u09C3\u09B7\u09CD\u09A0\u09BE ").concat(page, "-\u098F");
441
- }
442
- if (type === 'first') {
443
- return 'প্রথম পৃষ্ঠায় যান';
444
- }
445
- if (type === 'last') {
446
- return 'শেষ পৃষ্ঠায় যান';
447
- }
448
- if (type === 'next') {
449
- return 'পরবর্তী পৃষ্ঠায় যান';
450
- }
451
- // if (type === 'previous') {
452
- return 'আগের পৃষ্ঠায় যান';
453
- }
454
- }
455
- }
456
- }
457
- };
458
- export var beBY = {
459
- components: {
460
- MuiBreadcrumbs: {
461
- defaultProps: {
462
- expandText: 'Паказаць шлях'
463
- }
464
- },
465
- MuiTablePagination: {
466
- defaultProps: {
467
- getItemAriaLabel: function getItemAriaLabel(type) {
468
- if (type === 'first') {
469
- return 'Перайсці на першую старонку';
470
- }
471
- if (type === 'last') {
472
- return 'Перайсці на апошнюю старонку';
473
- }
474
- if (type === 'next') {
475
- return 'Перайсці на наступную старонку';
476
- }
477
- // if (type === 'previous') {
478
- return 'Перайсці на папярэднюю старонку';
479
- },
480
- labelRowsPerPage: 'Радкоў на старонцы:',
481
- labelDisplayedRows: function labelDisplayedRows(_ref6) {
482
- var from = _ref6.from,
483
- to = _ref6.to,
484
- count = _ref6.count;
485
- return "".concat(from, "\u2013").concat(to, " \u0437 ").concat(count !== -1 ? count : "\u0431\u043E\u043B\u044C\u0448 \u0447\u044B\u043C ".concat(to));
486
- }
487
- }
488
- },
489
- MuiRating: {
490
- defaultProps: {
491
- getLabelText: function getLabelText(value) {
492
- var pluralForm = 'Зорак';
493
- var lastDigit = value % 10;
494
- if (lastDigit > 1 && lastDigit < 5 && (value < 10 || value > 20)) {
495
- pluralForm = 'Зоркі';
496
- } else if (lastDigit === 1 && value % 100 !== 11) {
497
- pluralForm = 'Зорка';
498
- }
499
- return "".concat(value, " ").concat(pluralForm);
500
- },
501
- emptyLabelText: 'Рэйтынг адсутнічае'
502
- }
503
- },
504
- MuiAutocomplete: {
505
- defaultProps: {
506
- clearText: 'Ачысціць',
507
- closeText: 'Закрыць',
508
- loadingText: 'Загрузка…',
509
- noOptionsText: 'Няма варыянтаў',
510
- openText: 'Адкрыць'
511
- }
512
- },
513
- MuiAlert: {
514
- defaultProps: {
515
- closeText: 'Закрыць'
516
- }
517
- },
518
- MuiPagination: {
519
- defaultProps: {
520
- 'aria-label': 'Навігацыя па старонкам',
521
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
522
- if (type === 'page') {
523
- if (selected) {
524
- return "".concat(page, " \u0441\u0442\u0430\u0440\u043E\u043D\u043A\u0430");
525
- }
526
- return "\u041F\u0435\u0440\u0430\u0439\u0441\u0446\u0456 \u043D\u0430 ".concat(page, " \u0441\u0442\u0430\u0440\u043E\u043D\u043A\u0443");
527
- }
528
- if (type === 'first') {
529
- return 'Перайсці на першую старонку';
530
- }
531
- if (type === 'last') {
532
- return 'Перайсці на апошнюю старонку';
533
- }
534
- if (type === 'next') {
535
- return 'Перайсці на наступную старонку';
536
- }
537
- // if (type === 'previous') {
538
- return 'Перайсці на папярэднюю старонку';
539
- }
540
- }
541
- }
542
- }
543
- };
544
- export var bgBG = {
545
- components: {
546
- MuiBreadcrumbs: {
547
- defaultProps: {
548
- expandText: 'Показване на пътя'
549
- }
550
- },
551
- MuiTablePagination: {
552
- defaultProps: {
553
- getItemAriaLabel: function getItemAriaLabel(type) {
554
- if (type === 'first') {
555
- return 'Отиди на първата страница';
556
- }
557
- if (type === 'last') {
558
- return 'Отиди на последната страница';
559
- }
560
- if (type === 'next') {
561
- return 'Отиди на следващата страница';
562
- }
563
- // if (type === 'previous') {
564
- return 'Отиди на предишната страница';
565
- },
566
- labelRowsPerPage: 'Редове на страница:'
567
- // labelDisplayedRows: ({ from, to, count }) =>
568
- // `${from}–${to} от ${count !== -1 ? count : `more than ${to}`}`,
569
- }
570
- },
571
- MuiRating: {
572
- defaultProps: {
573
- getLabelText: function getLabelText(value) {
574
- return "".concat(value, " \u0417\u0432\u0435\u0437\u0434").concat(value !== 1 ? 'и' : 'а');
575
- },
576
- emptyLabelText: 'Изчисти'
577
- }
578
- },
579
- MuiAutocomplete: {
580
- defaultProps: {
581
- clearText: 'Изчисти',
582
- closeText: 'Затвори',
583
- loadingText: 'Зареждане…',
584
- noOptionsText: 'Няма налични опции',
585
- openText: 'Отвори'
586
- }
587
- },
588
- MuiAlert: {
589
- defaultProps: {
590
- closeText: 'Затвори'
591
- }
592
- },
593
- MuiPagination: {
594
- defaultProps: {
595
- 'aria-label': 'Пагинация',
596
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
597
- if (type === 'page') {
598
- return "".concat(selected ? '' : 'Към ', "\u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430 ").concat(page);
599
- }
600
- if (type === 'first') {
601
- return 'Отиди на първата страница';
602
- }
603
- if (type === 'last') {
604
- return 'Отиди на последната страница';
605
- }
606
- if (type === 'next') {
607
- return 'Отиди на следващата страница';
608
- }
609
- // if (type === 'previous') {
610
- return 'Отиди на предишната страница';
611
- }
612
- }
613
- }
614
- }
615
- };
616
- export var caES = {
617
- components: {
618
- // MuiBreadcrumbs: {
619
- // defaultProps: {
620
- // expandText: 'Show path',
621
- // },
622
- // },
623
- MuiTablePagination: {
624
- defaultProps: {
625
- // getItemAriaLabel: (type) => {
626
- // if (type === 'first') {
627
- // return 'Go to first page';
628
- // }
629
- // if (type === 'last') {
630
- // return 'Go to last page';
631
- // }
632
- // if (type === 'next') {
633
- // return 'Go to next page';
634
- // }
635
- // // if (type === 'previous') {
636
- // return 'Go to previous page';
637
- // },
638
- labelRowsPerPage: 'Files per pàgina:'
639
- // labelDisplayedRows: ({ from, to, count }) =>
640
- // `${from}–${to} de ${count !== -1 ? count : `more than ${to}`}`,
641
- }
642
- },
643
- MuiRating: {
644
- defaultProps: {
645
- getLabelText: function getLabelText(value) {
646
- return "".concat(value, " ").concat(value !== 1 ? 'Estrelles' : 'Estrella');
647
- },
648
- emptyLabelText: 'Buit'
649
- }
650
- },
651
- MuiAutocomplete: {
652
- defaultProps: {
653
- clearText: 'Netejar',
654
- closeText: 'Tancar',
655
- loadingText: 'Carregant…',
656
- noOptionsText: 'Sense opcions',
657
- openText: 'Obert'
658
- }
659
- },
660
- MuiAlert: {
661
- defaultProps: {
662
- closeText: 'Tancat'
663
- }
664
- }
665
- // MuiPagination: {
666
- // defaultProps: {
667
- // 'aria-label': 'Pagination navigation',
668
- // getItemAriaLabel: (type, page, selected) => {
669
- // if (type === 'page') {
670
- // return `${selected ? '' : 'Go to '}page ${page}`;
671
- // }
672
- // if (type === 'first') {
673
- // return 'Go to first page';
674
- // }
675
- // if (type === 'last') {
676
- // return 'Go to last page';
677
- // }
678
- // if (type === 'next') {
679
- // return 'Go to next page';
680
- // }
681
- // // if (type === 'previous') {
682
- // return 'Go to previous page';
683
- // },
684
- // },
685
- // },
686
- }
687
- };
688
- export var csCZ = {
689
- components: {
690
- MuiBreadcrumbs: {
691
- defaultProps: {
692
- expandText: 'Ukázat cestu'
693
- }
694
- },
695
- MuiTablePagination: {
696
- defaultProps: {
697
- getItemAriaLabel: function getItemAriaLabel(type) {
698
- if (type === 'first') {
699
- return 'Jít na první stránku';
700
- }
701
- if (type === 'last') {
702
- return 'Jít na poslední stránku';
703
- }
704
- if (type === 'next') {
705
- return 'Jít na další stránku';
706
- }
707
- // if (type === 'previous') {
708
- return 'Jít na předchozí stránku';
709
- },
710
- labelRowsPerPage: 'Řádků na stránce:',
711
- labelDisplayedRows: function labelDisplayedRows(_ref7) {
712
- var from = _ref7.from,
713
- to = _ref7.to,
714
- count = _ref7.count;
715
- return "".concat(from, "\u2013").concat(to, " z ").concat(count !== -1 ? count : "v\xEDce ne\u017E ".concat(to));
716
- }
717
- }
718
- },
719
- MuiRating: {
720
- defaultProps: {
721
- getLabelText: function getLabelText(value) {
722
- if (value === 1) {
723
- return "".concat(value, " hv\u011Bzdi\u010Dka");
724
- }
725
- if (value >= 2 && value <= 4) {
726
- return "".concat(value, " hv\u011Bzdi\u010Dky");
727
- }
728
- return "".concat(value, " hv\u011Bzdi\u010Dek");
729
- },
730
- emptyLabelText: 'Prázdné'
731
- }
732
- },
733
- MuiAutocomplete: {
734
- defaultProps: {
735
- clearText: 'Vymazat',
736
- closeText: 'Zavřít',
737
- loadingText: 'Načítání…',
738
- noOptionsText: 'Žádné možnosti',
739
- openText: 'Otevřít'
740
- }
741
- },
742
- MuiAlert: {
743
- defaultProps: {
744
- closeText: 'Zavřít'
745
- }
746
- },
747
- MuiPagination: {
748
- defaultProps: {
749
- 'aria-label': 'Navigace stránkováním',
750
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
751
- if (type === 'page') {
752
- return "".concat(selected ? '' : 'Jít na ').concat(page, ". str\xE1nku");
753
- }
754
- if (type === 'first') {
755
- return 'Jít na první stránku';
756
- }
757
- if (type === 'last') {
758
- return 'Jít na poslední stránku';
759
- }
760
- if (type === 'next') {
761
- return 'Jít na další stránku';
762
- }
763
- // if (type === 'previous') {
764
- return 'Jít na předchozí stránku';
765
- }
766
- }
767
- }
768
- }
769
- };
770
- export var daDK = {
771
- components: {
772
- MuiBreadcrumbs: {
773
- defaultProps: {
774
- expandText: 'Vis sti'
775
- }
776
- },
777
- MuiTablePagination: {
778
- defaultProps: {
779
- getItemAriaLabel: function getItemAriaLabel(type) {
780
- if (type === 'first') {
781
- return 'Gå til den første side';
782
- }
783
- if (type === 'last') {
784
- return 'Gå til den sidste side';
785
- }
786
- if (type === 'next') {
787
- return 'Gå til den næste side';
788
- }
789
- // if (type === 'previous') {
790
- return 'Gå til den forrige side';
791
- },
792
- labelRowsPerPage: 'Rækker pr side:',
793
- labelDisplayedRows: function labelDisplayedRows(_ref8) {
794
- var from = _ref8.from,
795
- to = _ref8.to,
796
- count = _ref8.count;
797
- return "".concat(from, "-").concat(to, " af ").concat(count !== -1 ? count : "mere end ".concat(to));
798
- }
799
- }
800
- },
801
- MuiRating: {
802
- defaultProps: {
803
- getLabelText: function getLabelText(value) {
804
- return "".concat(value, " Stjern").concat(value !== 1 ? 'er' : '');
805
- },
806
- emptyLabelText: 'Tom'
807
- }
808
- },
809
- MuiAutocomplete: {
810
- defaultProps: {
811
- clearText: 'Slet',
812
- closeText: 'Luk',
813
- loadingText: 'Indlæser…',
814
- noOptionsText: 'Ingen muligheder',
815
- openText: 'Åben'
816
- }
817
- },
818
- MuiAlert: {
819
- defaultProps: {
820
- closeText: 'Luk'
821
- }
822
- },
823
- MuiPagination: {
824
- defaultProps: {
825
- 'aria-label': 'Sideinddelings navigation',
826
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
827
- if (type === 'page') {
828
- return "".concat(selected ? '' : 'Go to ', "page ").concat(page);
829
- }
830
- if (type === 'first') {
831
- return 'Gå til den første side';
832
- }
833
- if (type === 'last') {
834
- return 'Gå til den sidste side';
835
- }
836
- if (type === 'next') {
837
- return 'Gå til den næste side';
838
- }
839
- // if (type === 'previous') {
840
- return 'Gå til den forrige side';
841
- }
842
- }
843
- }
844
- }
845
- };
846
- export var deDE = {
847
- components: {
848
- MuiBreadcrumbs: {
849
- defaultProps: {
850
- expandText: 'Pfad anzeigen'
851
- }
852
- },
853
- MuiTablePagination: {
854
- defaultProps: {
855
- getItemAriaLabel: function getItemAriaLabel(type) {
856
- if (type === 'first') {
857
- return 'Zur ersten Seite';
858
- }
859
- if (type === 'last') {
860
- return 'Zur letzten Seite';
861
- }
862
- if (type === 'next') {
863
- return 'Zur nächsten Seite';
864
- }
865
- // if (type === 'previous') {
866
- return 'Zur vorherigen Seite';
867
- },
868
- labelRowsPerPage: 'Zeilen pro Seite:',
869
- labelDisplayedRows: function labelDisplayedRows(_ref9) {
870
- var from = _ref9.from,
871
- to = _ref9.to,
872
- count = _ref9.count;
873
- return "".concat(from, "\u2013").concat(to, " von ").concat(count !== -1 ? count : "mehr als ".concat(to));
874
- }
875
- }
876
- },
877
- MuiRating: {
878
- defaultProps: {
879
- getLabelText: function getLabelText(value) {
880
- return "".concat(value, " ").concat(value !== 1 ? 'Sterne' : 'Stern');
881
- },
882
- emptyLabelText: 'Keine Wertung'
883
- }
884
- },
885
- MuiAutocomplete: {
886
- defaultProps: {
887
- clearText: 'Leeren',
888
- closeText: 'Schließen',
889
- loadingText: 'Wird geladen…',
890
- noOptionsText: 'Keine Optionen',
891
- openText: 'Öffnen'
892
- }
893
- },
894
- MuiAlert: {
895
- defaultProps: {
896
- closeText: 'Schließen'
897
- }
898
- },
899
- MuiPagination: {
900
- defaultProps: {
901
- 'aria-label': 'Navigation via Seitennummerierung',
902
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
903
- if (type === 'page') {
904
- return "".concat(selected ? '' : 'Gehe zu ', "Seite ").concat(page);
905
- }
906
- if (type === 'first') {
907
- return 'Zur ersten Seite';
908
- }
909
- if (type === 'last') {
910
- return 'Zur letzten Seite';
911
- }
912
- if (type === 'next') {
913
- return 'Zur nächsten Seite';
914
- }
915
- // if (type === 'previous') {
916
- return 'Zur vorherigen Seite';
917
- }
918
- }
919
- }
920
- }
921
- };
922
- export var elGR = {
923
- components: {
924
- MuiBreadcrumbs: {
925
- defaultProps: {
926
- expandText: 'Εμφάνιση διαδρομής'
927
- }
928
- },
929
- MuiTablePagination: {
930
- defaultProps: {
931
- getItemAriaLabel: function getItemAriaLabel(type) {
932
- if (type === 'first') {
933
- return 'Πρώτη σελίδα';
934
- }
935
- if (type === 'last') {
936
- return 'Τελευταία σελίδα';
937
- }
938
- if (type === 'next') {
939
- return 'Επόμενη σελίδα';
940
- }
941
-
942
- // if (type === "previous") {
943
- return 'Προηγούμενη σελίδα';
944
- },
945
- labelRowsPerPage: 'Γραμμές ανα σελίδα:',
946
- labelDisplayedRows: function labelDisplayedRows(_ref10) {
947
- var from = _ref10.from,
948
- to = _ref10.to,
949
- count = _ref10.count;
950
- return "".concat(from, "\u2013").concat(to, " \u03B1\u03C0\u03CC ").concat(count !== -1 ? count : "\u03C0\u03AC\u03BD\u03C9 \u03B1\u03C0\u03CC ".concat(to));
951
- }
952
- }
953
- },
954
- MuiRating: {
955
- defaultProps: {
956
- getLabelText: function getLabelText(value) {
957
- return "".concat(value, " \u0391\u03C3\u03C4\u03AD\u03C1\u03B9").concat(value !== 1 ? 'α' : '');
958
- },
959
- emptyLabelText: 'Χωρίς βαθμολόγηση'
960
- }
961
- },
962
- MuiAutocomplete: {
963
- defaultProps: {
964
- clearText: 'Καθαρισμός',
965
- closeText: 'Κλείσιμο',
966
- loadingText: 'Φόρτωση…',
967
- noOptionsText: 'Δεν υπάρχουν επιλογές',
968
- openText: 'Άνοιγμα'
969
- }
970
- },
971
- MuiAlert: {
972
- defaultProps: {
973
- closeText: 'Κλείσιμο'
974
- }
975
- },
976
- MuiPagination: {
977
- defaultProps: {
978
- 'aria-label': 'Πλοήγηση σε σελίδες',
979
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
980
- if (type === 'page') {
981
- return "".concat(selected ? '' : 'Μετάβαση ', "\u03C3\u03B5\u03BB\u03AF\u03B4\u03B1 ").concat(page);
982
- }
983
- if (type === 'first') {
984
- return 'Πρώτη σελίδα';
985
- }
986
- if (type === 'last') {
987
- return 'Τελευταία σελίδα';
988
- }
989
- if (type === 'next') {
990
- return 'Επόμενη σελίδα';
991
- }
992
-
993
- // if (type === "previous") {
994
- return 'Προηγούμενη σελίδα';
995
- }
996
- }
997
- }
998
- }
999
- };
1000
-
1001
- // default
1002
- export var enUS = {
1003
- /*
1004
- components: {
1005
- MuiBreadcrumbs: { defaultProps: {
1006
- expandText: 'Show path',
1007
- }},
1008
- MuiTablePagination: { defaultProps: {
1009
- getItemAriaLabel: (type) => {
1010
- if (type === 'first') {
1011
- return 'Go to first page';
1012
- }
1013
- if (type === 'last') {
1014
- return 'Go to last page';
1015
- }
1016
- if (type === 'next') {
1017
- return 'Go to next page';
1018
- }
1019
- // if (type === 'previous') {
1020
- return 'Go to previous page';
1021
- },
1022
- labelRowsPerPage: 'Rows per page:',
1023
- labelDisplayedRows: ({ from, to, count }) =>
1024
- `${from}–${to} of ${count !== -1 ? count : `more than ${to}`}`,
1025
- }},
1026
- MuiRating: { defaultProps: {
1027
- getLabelText: value => `${value} Star${value !== 1 ? 's' : ''}`,
1028
- emptyLabelText: 'Empty',
1029
- }},
1030
- MuiAutocomplete: { defaultProps: {
1031
- clearText: 'Clear',
1032
- closeText: 'Close',
1033
- loadingText: 'Loading…',
1034
- noOptionsText: 'No options',
1035
- openText: 'Open',
1036
- }},
1037
- MuiAlert: { defaultProps: {
1038
- closeText: 'Close',
1039
- }},
1040
- MuiPagination: { defaultProps: {
1041
- 'aria-label': 'Pagination navigation',
1042
- getItemAriaLabel: (type, page, selected) => {
1043
- if (type === 'page') {
1044
- return `${selected ? '' : 'Go to '}page ${page}`;
1045
- }
1046
- if (type === 'first') {
1047
- return 'Go to first page';
1048
- }
1049
- if (type === 'last') {
1050
- return 'Go to last page';
1051
- }
1052
- if (type === 'next') {
1053
- return 'Go to next page';
1054
- }
1055
- // if (type === 'previous') {
1056
- return 'Go to previous page';
1057
- },
1058
- }},
1059
- },
1060
- */
1061
- };
1062
- export var esES = {
1063
- components: {
1064
- MuiBreadcrumbs: {
1065
- defaultProps: {
1066
- expandText: 'Mostrar ruta'
1067
- }
1068
- },
1069
- MuiTablePagination: {
1070
- defaultProps: {
1071
- getItemAriaLabel: function getItemAriaLabel(type) {
1072
- if (type === 'first') {
1073
- return 'Ir a la primera página';
1074
- }
1075
- if (type === 'last') {
1076
- return 'Ir a la última página';
1077
- }
1078
- if (type === 'next') {
1079
- return 'Ir a la página siguiente';
1080
- }
1081
- // if (type === 'previous') {
1082
- return 'Ir a la página anterior';
1083
- },
1084
- labelRowsPerPage: 'Filas por página:',
1085
- labelDisplayedRows: function labelDisplayedRows(_ref11) {
1086
- var from = _ref11.from,
1087
- to = _ref11.to,
1088
- count = _ref11.count;
1089
- return "".concat(from, "\u2013").concat(to, " de ").concat(count !== -1 ? count : "m\xE1s de ".concat(to));
1090
- }
1091
- }
1092
- },
1093
- MuiRating: {
1094
- defaultProps: {
1095
- getLabelText: function getLabelText(value) {
1096
- return "".concat(value, " Estrella").concat(value !== 1 ? 's' : '');
1097
- },
1098
- emptyLabelText: 'Vacío'
1099
- }
1100
- },
1101
- MuiAutocomplete: {
1102
- defaultProps: {
1103
- clearText: 'Limpiar',
1104
- closeText: 'Cerrar',
1105
- loadingText: 'Cargando…',
1106
- noOptionsText: 'Sin opciones',
1107
- openText: 'Abierto'
1108
- }
1109
- },
1110
- MuiAlert: {
1111
- defaultProps: {
1112
- closeText: 'Cerrar'
1113
- }
1114
- },
1115
- MuiPagination: {
1116
- defaultProps: {
1117
- 'aria-label': 'Paginador',
1118
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
1119
- if (type === 'page') {
1120
- return "".concat(selected ? '' : 'Ir a la ', "p\xE1gina ").concat(page);
1121
- }
1122
- if (type === 'first') {
1123
- return 'Ir a la primera página';
1124
- }
1125
- if (type === 'last') {
1126
- return 'Ir a la última página';
1127
- }
1128
- if (type === 'next') {
1129
- return 'Ir a la página siguiente';
1130
- }
1131
- // if (type === 'previous') {
1132
- return 'Ir a la página anterior';
1133
- }
1134
- }
1135
- }
1136
- }
1137
- };
1138
- export var etEE = {
1139
- components: {
1140
- MuiBreadcrumbs: {
1141
- defaultProps: {
1142
- expandText: 'Näita teed'
1143
- }
1144
- },
1145
- MuiTablePagination: {
1146
- defaultProps: {
1147
- getItemAriaLabel: function getItemAriaLabel(type) {
1148
- if (type === 'first') {
1149
- return 'Vali esimene lehekülg';
1150
- }
1151
- if (type === 'last') {
1152
- return 'Vali viimane lehekülg';
1153
- }
1154
- if (type === 'next') {
1155
- return 'Vali järgmine lehekülg';
1156
- }
1157
- // if (type === 'previous') {
1158
- return 'Vali eelmine lehekülg';
1159
- },
1160
- labelRowsPerPage: 'Ridu leheküljel:',
1161
- labelDisplayedRows: function labelDisplayedRows(_ref12) {
1162
- var from = _ref12.from,
1163
- to = _ref12.to,
1164
- count = _ref12.count;
1165
- return "".concat(from, "\u2013").concat(to, " / ").concat(count !== -1 ? count : "rohkem kui ".concat(to));
1166
- }
1167
- }
1168
- },
1169
- MuiRating: {
1170
- defaultProps: {
1171
- getLabelText: function getLabelText(value) {
1172
- return "".concat(value, " T\xE4rn").concat(value !== 1 ? 'i' : '');
1173
- },
1174
- emptyLabelText: 'Tühi'
1175
- }
1176
- },
1177
- MuiAutocomplete: {
1178
- defaultProps: {
1179
- clearText: 'Tühjenda',
1180
- closeText: 'Sulge',
1181
- loadingText: 'Laen…',
1182
- noOptionsText: 'Valikuid ei ole',
1183
- openText: 'Ava'
1184
- }
1185
- },
1186
- MuiAlert: {
1187
- defaultProps: {
1188
- closeText: 'Sulge'
1189
- }
1190
- },
1191
- MuiPagination: {
1192
- defaultProps: {
1193
- 'aria-label': 'Lehekülgede valik',
1194
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
1195
- if (type === 'page') {
1196
- return "".concat(selected ? '' : 'Vali ', "lehek\xFClg ").concat(page);
1197
- }
1198
- if (type === 'first') {
1199
- return 'Vali esimene lehekülg';
1200
- }
1201
- if (type === 'last') {
1202
- return 'Vali viimane lehekülg';
1203
- }
1204
- if (type === 'next') {
1205
- return 'Vali järgmine lehekülg';
1206
- }
1207
- // if (type === 'previous') {
1208
- return 'Vali eelmine lehekülg';
1209
- }
1210
- }
1211
- }
1212
- }
1213
- };
1214
- export var faIR = {
1215
- components: {
1216
- // MuiBreadcrumbs: {
1217
- // defaultProps: {
1218
- // expandText: 'Show path',
1219
- // },
1220
- // },
1221
- MuiBreadcrumbs: {
1222
- defaultProps: {
1223
- expandText: 'نمایش مسیر'
1224
- }
1225
- },
1226
- MuiTablePagination: {
1227
- defaultProps: {
1228
- getItemAriaLabel: function getItemAriaLabel(type) {
1229
- if (type === 'first') {
1230
- return 'رفتن به اولین صفحه';
1231
- }
1232
- if (type === 'last') {
1233
- return 'رفتن به آخرین صفحه';
1234
- }
1235
- if (type === 'next') {
1236
- return 'رفتن به صفحه‌ی بعدی';
1237
- }
1238
- // if (type === 'previous') {
1239
- return 'رفتن به صفحه‌ی قبلی';
1240
- },
1241
- labelRowsPerPage: 'تعداد سطرهای هر صفحه:',
1242
- labelDisplayedRows: function labelDisplayedRows(_ref13) {
1243
- var from = _ref13.from,
1244
- to = _ref13.to,
1245
- count = _ref13.count;
1246
- return "".concat(from, "\u2013").concat(to, " \u0627\u0632 ").concat(count !== -1 ? count : "\u0628\u06CC\u0634\u062A\u0631 \u0627\u0632 ".concat(to));
1247
- }
1248
- }
1249
- },
1250
- MuiRating: {
1251
- defaultProps: {
1252
- getLabelText: function getLabelText(value) {
1253
- return "".concat(value, " \u0633\u062A\u0627\u0631\u0647");
1254
- },
1255
- emptyLabelText: 'خالی'
1256
- }
1257
- },
1258
- MuiAutocomplete: {
1259
- defaultProps: {
1260
- clearText: 'پاک‌کردن',
1261
- closeText: 'بستن',
1262
- loadingText: 'در حال بارگذاری…',
1263
- noOptionsText: 'بی‌نتیجه',
1264
- openText: 'بازکردن'
1265
- }
1266
- },
1267
- MuiAlert: {
1268
- defaultProps: {
1269
- closeText: 'بستن'
1270
- }
1271
- },
1272
- MuiPagination: {
1273
- defaultProps: {
1274
- 'aria-label': 'ناوبری صفحه',
1275
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
1276
- if (type === 'page') {
1277
- return "".concat(selected ? '' : 'رفتن به ', "\u0635\u0641\u062D\u0647\u0654 ").concat(page);
1278
- }
1279
- if (type === 'first') {
1280
- return 'رفتن به اولین صفحه';
1281
- }
1282
- if (type === 'last') {
1283
- return 'رفتن به آخرین صفحه';
1284
- }
1285
- if (type === 'next') {
1286
- return 'رفتن به صفحه‌ی بعدی';
1287
- }
1288
- // if (type === 'previous') {
1289
- return 'رفتن به صفحه‌ی قبلی';
1290
- }
1291
- }
1292
- }
1293
- }
1294
- };
1295
- export var fiFI = {
1296
- components: {
1297
- MuiBreadcrumbs: {
1298
- defaultProps: {
1299
- expandText: 'Näytä reitti'
1300
- }
1301
- },
1302
- MuiTablePagination: {
1303
- defaultProps: {
1304
- getItemAriaLabel: function getItemAriaLabel(type) {
1305
- if (type === 'first') {
1306
- return 'Mene ensimmäiselle sivulle';
1307
- }
1308
- if (type === 'last') {
1309
- return 'Mene viimeiselle sivulle';
1310
- }
1311
- if (type === 'next') {
1312
- return 'Mene seuraavalle sivulle';
1313
- }
1314
- // if (type === 'previous') {
1315
- return 'Mene edelliselle sivulle';
1316
- },
1317
- labelRowsPerPage: 'Rivejä per sivu:',
1318
- labelDisplayedRows: function labelDisplayedRows(_ref14) {
1319
- var from = _ref14.from,
1320
- to = _ref14.to,
1321
- count = _ref14.count;
1322
- return "".concat(from, "\u2013").concat(to, " / ").concat(count !== -1 ? count : "enemm\xE4n kuin ".concat(to));
1323
- }
1324
- }
1325
- },
1326
- MuiRating: {
1327
- defaultProps: {
1328
- getLabelText: function getLabelText(value) {
1329
- return "".concat(value, " T\xE4ht").concat(value !== 1 ? 'eä' : 'i');
1330
- },
1331
- emptyLabelText: 'Tyhjä'
1332
- }
1333
- },
1334
- MuiAutocomplete: {
1335
- defaultProps: {
1336
- clearText: 'Tyhjennä',
1337
- closeText: 'Sulje',
1338
- loadingText: 'Ladataan…',
1339
- noOptionsText: 'Ei valintoja',
1340
- openText: 'Avaa'
1341
- }
1342
- },
1343
- MuiAlert: {
1344
- defaultProps: {
1345
- closeText: 'Sulje'
1346
- }
1347
- },
1348
- MuiPagination: {
1349
- defaultProps: {
1350
- 'aria-label': 'Sivutus navigaatio',
1351
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
1352
- if (type === 'page') {
1353
- return "".concat(selected ? 'sivu' : 'Mene sivulle', " ").concat(page);
1354
- }
1355
- if (type === 'first') {
1356
- return 'Mene ensimmäiselle sivulle';
1357
- }
1358
- if (type === 'last') {
1359
- return 'Mene viimeiselle sivulle';
1360
- }
1361
- if (type === 'next') {
1362
- return 'Mene seuraavalle sivulle';
1363
- }
1364
- // if (type === 'previous') {
1365
- return 'Mene edelliselle sivulle';
1366
- }
1367
- }
1368
- }
1369
- }
1370
- };
1371
- export var frFR = {
1372
- components: {
1373
- MuiBreadcrumbs: {
1374
- defaultProps: {
1375
- expandText: 'Montrer le chemin'
1376
- }
1377
- },
1378
- MuiTablePagination: {
1379
- defaultProps: {
1380
- getItemAriaLabel: function getItemAriaLabel(type) {
1381
- if (type === 'first') {
1382
- return 'Aller à la première page';
1383
- }
1384
- if (type === 'last') {
1385
- return 'Aller à la dernière page';
1386
- }
1387
- if (type === 'next') {
1388
- return 'Aller à la page suivante';
1389
- }
1390
- // if (type === 'previous') {
1391
- return 'Aller à la page précédente';
1392
- },
1393
- labelRowsPerPage: 'Lignes par page :',
1394
- labelDisplayedRows: function labelDisplayedRows(_ref15) {
1395
- var from = _ref15.from,
1396
- to = _ref15.to,
1397
- count = _ref15.count;
1398
- return "".concat(from, "\u2013").concat(to, " sur ").concat(count !== -1 ? count : "plus que ".concat(to));
1399
- }
1400
- }
1401
- },
1402
- MuiRating: {
1403
- defaultProps: {
1404
- getLabelText: function getLabelText(value) {
1405
- return "".concat(value, " Etoile").concat(value !== 1 ? 's' : '');
1406
- },
1407
- emptyLabelText: 'Vide'
1408
- }
1409
- },
1410
- MuiAutocomplete: {
1411
- defaultProps: {
1412
- clearText: 'Vider',
1413
- closeText: 'Fermer',
1414
- loadingText: 'Chargement…',
1415
- noOptionsText: 'Pas de résultats',
1416
- openText: 'Ouvrir'
1417
- }
1418
- },
1419
- MuiAlert: {
1420
- defaultProps: {
1421
- closeText: 'Fermer'
1422
- }
1423
- },
1424
- MuiPagination: {
1425
- defaultProps: {
1426
- 'aria-label': 'navigation de pagination',
1427
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
1428
- if (type === 'page') {
1429
- return "".concat(selected ? '' : 'Aller à la ', "page ").concat(page);
1430
- }
1431
- if (type === 'first') {
1432
- return 'Aller à la première page';
1433
- }
1434
- if (type === 'last') {
1435
- return 'Aller à la dernière page';
1436
- }
1437
- if (type === 'next') {
1438
- return 'Aller à la page suivante';
1439
- }
1440
- // if (type === 'previous') {
1441
- return 'Aller à la page précédente';
1442
- }
1443
- }
1444
- }
1445
- }
1446
- };
1447
- export var heIL = {
1448
- components: {
1449
- MuiBreadcrumbs: {
1450
- defaultProps: {
1451
- expandText: 'הצג נתיב'
1452
- }
1453
- },
1454
- MuiTablePagination: {
1455
- defaultProps: {
1456
- getItemAriaLabel: function getItemAriaLabel(type) {
1457
- if (type === 'first') {
1458
- return 'לעמוד הראשון';
1459
- }
1460
- if (type === 'last') {
1461
- return 'לעמוד האחרון';
1462
- }
1463
- if (type === 'next') {
1464
- return 'לעמוד הבא';
1465
- }
1466
- // if (type === 'previous') {
1467
- return 'לעמוד הקודם';
1468
- },
1469
- labelRowsPerPage: 'שורות בעמוד:',
1470
- labelDisplayedRows: function labelDisplayedRows(_ref16) {
1471
- var from = _ref16.from,
1472
- to = _ref16.to,
1473
- count = _ref16.count;
1474
- return "".concat(from, "\u2013").concat(to, " \u05DE\u05EA\u05D5\u05DA ").concat(count !== -1 ? count : "\u05D9\u05D5\u05EA\u05E8 \u05DE ".concat(to));
1475
- }
1476
- }
1477
- },
1478
- MuiRating: {
1479
- defaultProps: {
1480
- getLabelText: function getLabelText(value) {
1481
- return "".concat(value, " \u05DB\u05D5\u05DB\u05D1").concat(value !== 1 ? 'ים' : '');
1482
- },
1483
- emptyLabelText: 'ריק'
1484
- }
1485
- },
1486
- MuiAutocomplete: {
1487
- defaultProps: {
1488
- clearText: 'נקה',
1489
- closeText: 'סגור',
1490
- loadingText: 'טוען…',
1491
- noOptionsText: 'אין אופציות',
1492
- openText: 'פתח'
1493
- }
1494
- },
1495
- MuiAlert: {
1496
- defaultProps: {
1497
- closeText: 'סגור'
1498
- }
1499
- },
1500
- MuiPagination: {
1501
- defaultProps: {
1502
- 'aria-label': 'ניווט בעמודים',
1503
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
1504
- if (type === 'page') {
1505
- return "".concat(selected ? '' : 'ל ', "\u05E2\u05DE\u05D5\u05D3 ").concat(page);
1506
- }
1507
- if (type === 'first') {
1508
- return 'לעמוד הראשון';
1509
- }
1510
- if (type === 'last') {
1511
- return 'לעמוד האחרון';
1512
- }
1513
- if (type === 'next') {
1514
- return 'לעמוד הבא';
1515
- }
1516
- // if (type === 'previous') {
1517
- return 'לעמוד הקודם';
1518
- }
1519
- }
1520
- }
1521
- }
1522
- };
1523
- export var hiIN = {
1524
- components: {
1525
- MuiBreadcrumbs: {
1526
- defaultProps: {
1527
- expandText: 'रास्ता दिखायें'
1528
- }
1529
- },
1530
- MuiTablePagination: {
1531
- defaultProps: {
1532
- getItemAriaLabel: function getItemAriaLabel(type) {
1533
- if (type === 'first') {
1534
- return 'पहले पृष्ठ पर जाएँ';
1535
- }
1536
- if (type === 'last') {
1537
- return 'अंतिम पृष्ठ पर जाएँ';
1538
- }
1539
- if (type === 'next') {
1540
- return 'अगले पृष्ठ पर जाएँ';
1541
- }
1542
- // if (type === 'previous') {
1543
- return 'पिछले पृष्ठ पर जाएँ';
1544
- },
1545
- labelRowsPerPage: 'पंक्तियाँ प्रति पृष्ठ:',
1546
- labelDisplayedRows: function labelDisplayedRows(_ref17) {
1547
- var from = _ref17.from,
1548
- to = _ref17.to,
1549
- count = _ref17.count;
1550
- return "".concat(from, "-").concat(to === -1 ? count : to, " \u0915\u0941\u0932 ").concat(count, " \u092E\u0947\u0902");
1551
- }
1552
- }
1553
- },
1554
- MuiRating: {
1555
- defaultProps: {
1556
- getLabelText: function getLabelText(value) {
1557
- return "".concat(value, " \u0924\u093E\u0930").concat(value !== 1 ? 'े' : 'ा');
1558
- },
1559
- emptyLabelText: 'रिक्त'
1560
- }
1561
- },
1562
- MuiAutocomplete: {
1563
- defaultProps: {
1564
- clearText: 'हटायें',
1565
- closeText: 'बंद करें',
1566
- loadingText: 'लोड हो रहा है…',
1567
- noOptionsText: 'कोई विकल्प नहीं',
1568
- openText: 'खोलें'
1569
- }
1570
- },
1571
- MuiAlert: {
1572
- defaultProps: {
1573
- closeText: 'बंद करें'
1574
- }
1575
- },
1576
- MuiPagination: {
1577
- defaultProps: {
1578
- 'aria-label': 'पृस्ठानुसार संचालन',
1579
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
1580
- if (type === 'page') {
1581
- return "\u092A\u0943\u0937\u094D\u0920 ".concat(page, " ").concat(selected ? '' : ' पर जाएँ');
1582
- }
1583
- if (type === 'first') {
1584
- return 'पहले पृष्ठ पर जाएँ';
1585
- }
1586
- if (type === 'last') {
1587
- return 'अंतिम पृष्ठ पर जाएँ';
1588
- }
1589
- if (type === 'next') {
1590
- return 'अगले पृष्ठ पर जाएँ';
1591
- }
1592
- // if (type === 'previous') {
1593
- return 'पिछले पृष्ठ पर जाएँ';
1594
- }
1595
- }
1596
- }
1597
- }
1598
- };
1599
-
1600
- // Croatian - Hrvatski
1601
- export var hrHR = {
1602
- components: {
1603
- MuiBreadcrumbs: {
1604
- defaultProps: {
1605
- expandText: 'Pokaži putanju'
1606
- }
1607
- },
1608
- MuiTablePagination: {
1609
- defaultProps: {
1610
- getItemAriaLabel: function getItemAriaLabel(type) {
1611
- if (type === 'first') {
1612
- return 'Idi na prvu stranicu';
1613
- }
1614
- if (type === 'last') {
1615
- return 'Idi na posljednju stranicu';
1616
- }
1617
- if (type === 'next') {
1618
- return 'Idi na sljedeću stranicu';
1619
- }
1620
- // if (type === 'previous') {
1621
- return 'Idi na prethodnu stranicu';
1622
- },
1623
- labelRowsPerPage: 'Redova po stranici:',
1624
- labelDisplayedRows: function labelDisplayedRows(_ref18) {
1625
- var from = _ref18.from,
1626
- to = _ref18.to,
1627
- count = _ref18.count;
1628
- return "".concat(from, "\u2013").concat(to, " od ").concat(count !== -1 ? count : "vi\u0161e nego ".concat(to));
1629
- }
1630
- }
1631
- },
1632
- MuiRating: {
1633
- defaultProps: {
1634
- getLabelText: function getLabelText(value) {
1635
- var lastDigit = value % 10;
1636
- var lastTwoDigits = value % 100;
1637
- if ([2, 3, 4].includes(lastDigit) && ![12, 13, 14].includes(lastTwoDigits)) {
1638
- return 'Zvijezde';
1639
- }
1640
- return 'Zvijezda';
1641
- },
1642
- emptyLabelText: 'Prazno'
1643
- }
1644
- },
1645
- MuiAutocomplete: {
1646
- defaultProps: {
1647
- clearText: 'Briši',
1648
- closeText: 'Zatvori',
1649
- loadingText: 'Učitavanje…',
1650
- noOptionsText: 'Nema opcija',
1651
- openText: 'Otvori'
1652
- }
1653
- },
1654
- MuiAlert: {
1655
- defaultProps: {
1656
- closeText: 'Zatvori'
1657
- }
1658
- },
1659
- MuiPagination: {
1660
- defaultProps: {
1661
- 'aria-label': 'Navigacija po stranicama',
1662
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
1663
- if (type === 'page') {
1664
- return "".concat(selected ? '' : 'Idi na ', "stranicu ").concat(page);
1665
- }
1666
- if (type === 'first') {
1667
- return 'Idi na prvu stranicu';
1668
- }
1669
- if (type === 'last') {
1670
- return 'Idi na zadnju stranicu';
1671
- }
1672
- if (type === 'next') {
1673
- return 'Idi na sljedeću stranicu';
1674
- }
1675
- // if (type === 'previous') {
1676
- return 'Idi na prethodnu stranicu';
1677
- }
1678
- }
1679
- }
1680
- }
1681
- };
1682
- export var huHU = {
1683
- components: {
1684
- MuiBreadcrumbs: {
1685
- defaultProps: {
1686
- expandText: 'Útvonal'
1687
- }
1688
- },
1689
- MuiTablePagination: {
1690
- defaultProps: {
1691
- getItemAriaLabel: function getItemAriaLabel(type) {
1692
- if (type === 'first') {
1693
- return 'Első oldalra';
1694
- }
1695
- if (type === 'last') {
1696
- return 'Utolsó oldalra';
1697
- }
1698
- if (type === 'next') {
1699
- return 'Következő oldalra';
1700
- }
1701
- // if (type === 'previous') {
1702
- return 'Előző oldalra';
1703
- },
1704
- labelRowsPerPage: 'Sorok száma:'
1705
- // labelDisplayedRows: ({ from, to, count }) =>
1706
- // `${from}–${to} / ${count !== -1 ? count : `more than ${to}`}`,
1707
- }
1708
- },
1709
- MuiRating: {
1710
- defaultProps: {
1711
- getLabelText: function getLabelText(value) {
1712
- return "".concat(value, " Csillag");
1713
- },
1714
- emptyLabelText: 'Üres'
1715
- }
1716
- },
1717
- MuiAutocomplete: {
1718
- defaultProps: {
1719
- clearText: 'Törlés',
1720
- closeText: 'Bezárás',
1721
- loadingText: 'Töltés…',
1722
- noOptionsText: 'Nincs találat',
1723
- openText: 'Megnyitás'
1724
- }
1725
- },
1726
- MuiAlert: {
1727
- defaultProps: {
1728
- closeText: 'Bezárás'
1729
- }
1730
- },
1731
- MuiPagination: {
1732
- defaultProps: {
1733
- 'aria-label': 'Lapozás',
1734
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
1735
- if (type === 'page') {
1736
- return "".concat(page, ". oldal").concat(selected ? '' : 'ra');
1737
- }
1738
- if (type === 'first') {
1739
- return 'Első oldalra';
1740
- }
1741
- if (type === 'last') {
1742
- return 'Utolsó oldalra';
1743
- }
1744
- if (type === 'next') {
1745
- return 'Következő oldalra';
1746
- }
1747
- // if (type === 'previous') {
1748
- return 'Előző oldalra';
1749
- }
1750
- }
1751
- }
1752
- }
1753
- };
1754
- export var hyAM = {
1755
- components: {
1756
- // MuiBreadcrumbs: {
1757
- // defaultProps: {
1758
- // expandText: 'Show path',
1759
- // },
1760
- // },
1761
- MuiTablePagination: {
1762
- defaultProps: {
1763
- // getItemAriaLabel: (type) => {
1764
- // if (type === 'first') {
1765
- // return 'Go to first page';
1766
- // }
1767
- // if (type === 'last') {
1768
- // return 'Go to last page';
1769
- // }
1770
- // if (type === 'next') {
1771
- // return 'Go to next page';
1772
- // }
1773
- // // if (type === 'previous') {
1774
- // return 'Go to previous page';
1775
- // },
1776
- labelRowsPerPage: 'Տողեր մեկ էջում`'
1777
- // labelDisplayedRows: ({ from, to, count }) =>
1778
- // `${from}–${to} / ${count !== -1 ? count : `more than ${to}`}`,
1779
- }
1780
- },
1781
- MuiRating: {
1782
- defaultProps: {
1783
- getLabelText: function getLabelText(value) {
1784
- return "".concat(value, " \u0531\u057D\u057F\u0572");
1785
- },
1786
- emptyLabelText: 'Դատարկ'
1787
- }
1788
- },
1789
- MuiAutocomplete: {
1790
- defaultProps: {
1791
- clearText: 'Մաքրել',
1792
- closeText: 'Փակել',
1793
- loadingText: 'Բեռնում…',
1794
- noOptionsText: 'Տարբերակներ չկան',
1795
- openText: 'Բացել'
1796
- }
1797
- },
1798
- MuiAlert: {
1799
- defaultProps: {
1800
- closeText: 'Փակել'
1801
- }
1802
- }
1803
- // MuiPagination: {
1804
- // defaultProps: {
1805
- // 'aria-label': 'Pagination navigation',
1806
- // getItemAriaLabel: (type, page, selected) => {
1807
- // if (type === 'page') {
1808
- // return `${selected ? '' : 'Go to '}page ${page}`;
1809
- // }
1810
- // if (type === 'first') {
1811
- // return 'Go to first page';
1812
- // }
1813
- // if (type === 'last') {
1814
- // return 'Go to last page';
1815
- // }
1816
- // if (type === 'next') {
1817
- // return 'Go to next page';
1818
- // }
1819
- // // if (type === 'previous') {
1820
- // return 'Go to previous page';
1821
- // },
1822
- // },
1823
- // },
1824
- }
1825
- };
1826
- export var idID = {
1827
- components: {
1828
- // MuiBreadcrumbs: {
1829
- // defaultProps: {
1830
- // expandText: 'Show path',
1831
- // },
1832
- // },
1833
- MuiTablePagination: {
1834
- defaultProps: {
1835
- // getItemAriaLabel: (type) => {
1836
- // if (type === 'first') {
1837
- // return 'Go to first page';
1838
- // }
1839
- // if (type === 'last') {
1840
- // return 'Go to last page';
1841
- // }
1842
- // if (type === 'next') {
1843
- // return 'Go to next page';
1844
- // }
1845
- // // if (type === 'previous') {
1846
- // return 'Go to previous page';
1847
- // },
1848
- labelRowsPerPage: 'Baris per halaman:'
1849
- // labelDisplayedRows: ({ from, to, count }) =>
1850
- // `${from}–${to} dari ${count !== -1 ? count : `more than ${to}`}`,
1851
- }
1852
- },
1853
- MuiRating: {
1854
- defaultProps: {
1855
- getLabelText: function getLabelText(value) {
1856
- return "".concat(value, " Bintang");
1857
- }
1858
- // emptyLabelText: 'Empty',
1859
- }
1860
- },
1861
- MuiAutocomplete: {
1862
- defaultProps: {
1863
- clearText: 'Hapus',
1864
- closeText: 'Tutup',
1865
- loadingText: 'Memuat…',
1866
- noOptionsText: 'Tidak ada opsi',
1867
- openText: 'Buka'
1868
- }
1869
- },
1870
- MuiAlert: {
1871
- defaultProps: {
1872
- closeText: 'Tutup'
1873
- }
1874
- }
1875
- // MuiPagination: {
1876
- // defaultProps: {
1877
- // 'aria-label': 'Pagination navigation',
1878
- // getItemAriaLabel: (type, page, selected) => {
1879
- // if (type === 'page') {
1880
- // return `${selected ? '' : 'Go to '}page ${page}`;
1881
- // }
1882
- // if (type === 'first') {
1883
- // return 'Go to first page';
1884
- // }
1885
- // if (type === 'last') {
1886
- // return 'Go to last page';
1887
- // }
1888
- // if (type === 'next') {
1889
- // return 'Go to next page';
1890
- // }
1891
- // // if (type === 'previous') {
1892
- // return 'Go to previous page';
1893
- // },
1894
- // },
1895
- // },
1896
- }
1897
- };
1898
- export var isIS = {
1899
- components: {
1900
- MuiBreadcrumbs: {
1901
- defaultProps: {
1902
- expandText: 'Sýna slóð'
1903
- }
1904
- },
1905
- MuiTablePagination: {
1906
- defaultProps: {
1907
- getItemAriaLabel: function getItemAriaLabel(type) {
1908
- if (type === 'first') {
1909
- return 'Fara á fyrstu síðu';
1910
- }
1911
- if (type === 'last') {
1912
- return 'Fara á síðustu síðu';
1913
- }
1914
- if (type === 'next') {
1915
- return 'Fara á næstu síðu';
1916
- }
1917
- // if (type === 'previous') {
1918
- return 'Fara á fyrri síðu';
1919
- },
1920
- labelRowsPerPage: 'Raðir á síðu:',
1921
- labelDisplayedRows: function labelDisplayedRows(_ref19) {
1922
- var from = _ref19.from,
1923
- to = _ref19.to,
1924
- count = _ref19.count;
1925
- return "".concat(from, "\u2013").concat(to, " af ").concat(count !== -1 ? count : "fleiri en ".concat(to));
1926
- }
1927
- }
1928
- },
1929
- MuiRating: {
1930
- defaultProps: {
1931
- getLabelText: function getLabelText(value) {
1932
- return "".concat(value, " ").concat(value === 1 ? 'stjarna' : 'stjörnur');
1933
- },
1934
- emptyLabelText: 'Tómt'
1935
- }
1936
- },
1937
- MuiAutocomplete: {
1938
- defaultProps: {
1939
- clearText: 'Hreinsa',
1940
- closeText: 'Loka',
1941
- loadingText: 'Hlaða…',
1942
- noOptionsText: 'Engar niðurstöður',
1943
- openText: 'Opna'
1944
- }
1945
- },
1946
- MuiAlert: {
1947
- defaultProps: {
1948
- closeText: 'Loka'
1949
- }
1950
- },
1951
- MuiPagination: {
1952
- defaultProps: {
1953
- 'aria-label': 'Síðuflakk',
1954
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
1955
- if (type === 'page') {
1956
- return "".concat(selected ? 'Síða' : 'Fara á síðu', " ").concat(page);
1957
- }
1958
- if (type === 'first') {
1959
- return 'Fara á fyrstu síðu';
1960
- }
1961
- if (type === 'last') {
1962
- return 'Fara á síðustu síðu';
1963
- }
1964
- if (type === 'next') {
1965
- return 'Fara á næstu síðu';
1966
- }
1967
- // if (type === 'previous') {
1968
- return 'Fara á fyrri síðu';
1969
- }
1970
- }
1971
- }
1972
- }
1973
- };
1974
- export var itIT = {
1975
- components: {
1976
- MuiBreadcrumbs: {
1977
- defaultProps: {
1978
- expandText: 'Visualizza percorso'
1979
- }
1980
- },
1981
- MuiTablePagination: {
1982
- defaultProps: {
1983
- getItemAriaLabel: function getItemAriaLabel(type) {
1984
- if (type === 'first') {
1985
- return 'Vai alla prima pagina';
1986
- }
1987
- if (type === 'last') {
1988
- return "Vai all'ultima pagina";
1989
- }
1990
- if (type === 'next') {
1991
- return 'Vai alla pagina successiva';
1992
- }
1993
- // if (type === 'previous') {
1994
- return 'Vai alla pagina precedente';
1995
- },
1996
- labelRowsPerPage: 'Righe per pagina:',
1997
- labelDisplayedRows: function labelDisplayedRows(_ref20) {
1998
- var from = _ref20.from,
1999
- to = _ref20.to,
2000
- count = _ref20.count;
2001
- return "".concat(from, "\u2013").concat(to, " di ").concat(count !== -1 ? count : "pi\xF9 di ".concat(to));
2002
- }
2003
- }
2004
- },
2005
- MuiRating: {
2006
- defaultProps: {
2007
- getLabelText: function getLabelText(value) {
2008
- return "".concat(value, " Stell").concat(value !== 1 ? 'e' : 'a');
2009
- },
2010
- emptyLabelText: 'Vuoto'
2011
- }
2012
- },
2013
- MuiAutocomplete: {
2014
- defaultProps: {
2015
- clearText: 'Svuota',
2016
- closeText: 'Chiudi',
2017
- loadingText: 'Caricamento in corso…',
2018
- noOptionsText: 'Nessuna opzione',
2019
- openText: 'Apri'
2020
- }
2021
- },
2022
- MuiAlert: {
2023
- defaultProps: {
2024
- closeText: 'Chiudi'
2025
- }
2026
- },
2027
- MuiPagination: {
2028
- defaultProps: {
2029
- 'aria-label': 'Navigazione impaginata',
2030
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
2031
- if (type === 'page') {
2032
- return "".concat(selected ? '' : 'Vai alla ', "pagina ").concat(page);
2033
- }
2034
- if (type === 'first') {
2035
- return 'Vai alla prima pagina';
2036
- }
2037
- if (type === 'last') {
2038
- return "Vai all'ultima pagina";
2039
- }
2040
- if (type === 'next') {
2041
- return 'Vai alla pagina successiva';
2042
- }
2043
- // if (type === 'previous') {
2044
- return 'Vai alla pagina precedente';
2045
- }
2046
- }
2047
- }
2048
- }
2049
- };
2050
- export var jaJP = {
2051
- components: {
2052
- MuiBreadcrumbs: {
2053
- defaultProps: {
2054
- expandText: 'すべて表示'
2055
- }
2056
- },
2057
- MuiTablePagination: {
2058
- defaultProps: {
2059
- getItemAriaLabel: function getItemAriaLabel(type) {
2060
- if (type === 'first') {
2061
- return '最初のページへ';
2062
- }
2063
- if (type === 'last') {
2064
- return '最後のページへ';
2065
- }
2066
- if (type === 'next') {
2067
- return '次のページへ';
2068
- }
2069
- // if (type === 'previous') {
2070
- return '前のページへ';
2071
- },
2072
- labelRowsPerPage: 'ページあたりの行数:',
2073
- labelDisplayedRows: function labelDisplayedRows(_ref21) {
2074
- var from = _ref21.from,
2075
- to = _ref21.to,
2076
- count = _ref21.count;
2077
- return "".concat(from, "\uFF5E").concat(to, " / ").concat(count !== -1 ? count : "".concat(to, "\u4EE5\u4E0A"));
2078
- }
2079
- }
2080
- },
2081
- MuiRating: {
2082
- defaultProps: {
2083
- getLabelText: function getLabelText(value) {
2084
- return "\u661F".concat(value);
2085
- },
2086
- emptyLabelText: '星なし'
2087
- }
2088
- },
2089
- MuiAutocomplete: {
2090
- defaultProps: {
2091
- clearText: 'クリア',
2092
- closeText: '閉じる',
2093
- loadingText: '読み込み中…',
2094
- noOptionsText: 'データがありません',
2095
- openText: '開く'
2096
- }
2097
- },
2098
- MuiAlert: {
2099
- defaultProps: {
2100
- closeText: '閉じる'
2101
- }
2102
- },
2103
- MuiPagination: {
2104
- defaultProps: {
2105
- 'aria-label': 'ページ選択',
2106
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
2107
- if (type === 'page') {
2108
- return "\u30DA\u30FC\u30B8".concat(page).concat(selected ? '' : 'へ');
2109
- }
2110
- if (type === 'first') {
2111
- return '最初のページへ';
2112
- }
2113
- if (type === 'last') {
2114
- return '最後のページへ';
2115
- }
2116
- if (type === 'next') {
2117
- return '次のページへ';
2118
- }
2119
- // if (type === 'previous') {
2120
- return '前のページへ';
2121
- }
2122
- }
2123
- }
2124
- }
2125
- };
2126
- export var khKH = {
2127
- components: {
2128
- MuiBreadcrumbs: {
2129
- defaultProps: {
2130
- expandText: 'បង្ហាញផ្លូវ'
2131
- }
2132
- },
2133
- MuiTablePagination: {
2134
- defaultProps: {
2135
- getItemAriaLabel: function getItemAriaLabel(type) {
2136
- if (type === 'first') {
2137
- return 'ទៅទំព័រដំបូង';
2138
- }
2139
- if (type === 'last') {
2140
- return 'ទៅទំព័រចុងក្រោយ';
2141
- }
2142
- if (type === 'next') {
2143
- return 'ទៅទំព័របន្ទាប់';
2144
- }
2145
- // if (type === 'previous') {
2146
- return 'ទៅទំព័រមុន';
2147
- },
2148
- labelRowsPerPage: 'ចំនួនជួរដេកក្នុងមួយទំព័រ:',
2149
- labelDisplayedRows: function labelDisplayedRows(_ref22) {
2150
- var from = _ref22.from,
2151
- to = _ref22.to,
2152
- count = _ref22.count;
2153
- return "".concat(from, " - ").concat(to, " \u1793\u17C3 ").concat(count !== -1 ? count : "\u1785\u17D2\u179A\u17BE\u1793\u1787\u17B6\u1784 ".concat(to));
2154
- }
2155
- }
2156
- },
2157
- MuiRating: {
2158
- defaultProps: {
2159
- getLabelText: function getLabelText(value) {
2160
- return "".concat(value, " \u1795\u17D2\u1780\u17B6\u1799").concat(value !== 1 ? '' : '');
2161
- },
2162
- emptyLabelText: 'ទទេ'
2163
- }
2164
- },
2165
- MuiAutocomplete: {
2166
- defaultProps: {
2167
- clearText: 'លុបចោល',
2168
- closeText: 'បិទ',
2169
- loadingText: 'កំពុងលោត…',
2170
- noOptionsText: 'គ្មានជម្រើស',
2171
- openText: 'បើក'
2172
- }
2173
- },
2174
- MuiAlert: {
2175
- defaultProps: {
2176
- closeText: 'បិទ'
2177
- }
2178
- },
2179
- MuiPagination: {
2180
- defaultProps: {
2181
- 'aria-label': 'រុករកទំព័រ',
2182
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
2183
- if (type === 'page') {
2184
- return "".concat(selected ? '' : 'ទៅ ', "\u1791\u17C6\u1796\u17D0\u179A ").concat(page);
2185
- }
2186
- if (type === 'first') {
2187
- return 'ទៅទំព័រដំបូង';
2188
- }
2189
- if (type === 'last') {
2190
- return 'ទៅទំព័រចុងក្រោយ';
2191
- }
2192
- if (type === 'next') {
2193
- return 'ទៅទំព័របន្ទាប់';
2194
- }
2195
- // if (type === 'previous') {
2196
- return 'ទៅទំព័រមុន';
2197
- }
2198
- }
2199
- }
2200
- }
2201
- };
2202
- export var koKR = {
2203
- components: {
2204
- MuiBreadcrumbs: {
2205
- defaultProps: {
2206
- expandText: '경로 보기'
2207
- }
2208
- },
2209
- MuiTablePagination: {
2210
- defaultProps: {
2211
- getItemAriaLabel: function getItemAriaLabel(type) {
2212
- if (type === 'first') {
2213
- return '첫 번째 페이지로 이동';
2214
- }
2215
- if (type === 'last') {
2216
- return '마지막 페이지로 이동';
2217
- }
2218
- if (type === 'next') {
2219
- return '다음 페이지로 이동';
2220
- }
2221
- // if (type === 'previous') {
2222
- return '이전 페이지로 이동';
2223
- },
2224
- labelRowsPerPage: '페이지 당 행:',
2225
- labelDisplayedRows: function labelDisplayedRows(_ref23) {
2226
- var from = _ref23.from,
2227
- to = _ref23.to,
2228
- count = _ref23.count;
2229
- return "".concat(from, "\u2013").concat(to, " / ").concat(count !== -1 ? count : "".concat(to, "\uAC1C \uC774\uC0C1"));
2230
- }
2231
- }
2232
- },
2233
- MuiRating: {
2234
- defaultProps: {
2235
- getLabelText: function getLabelText(value) {
2236
- return "".concat(value, " \uC810");
2237
- },
2238
- emptyLabelText: '빈 텍스트'
2239
- }
2240
- },
2241
- MuiAutocomplete: {
2242
- defaultProps: {
2243
- clearText: '지우기',
2244
- closeText: '닫기',
2245
- loadingText: '불러오는 중…',
2246
- noOptionsText: '옵션 없음',
2247
- openText: '열기'
2248
- }
2249
- },
2250
- MuiAlert: {
2251
- defaultProps: {
2252
- closeText: '닫기'
2253
- }
2254
- },
2255
- MuiPagination: {
2256
- defaultProps: {
2257
- 'aria-label': '페이지네이션 네비게이션',
2258
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
2259
- if (type === 'page') {
2260
- return "".concat(page, " \uBC88\uC9F8 \uD398\uC774\uC9C0").concat(selected ? '' : '로 이동');
2261
- }
2262
- if (type === 'first') {
2263
- return '첫 번째 페이지로 이동';
2264
- }
2265
- if (type === 'last') {
2266
- return '마지막 페이지로 이동';
2267
- }
2268
- if (type === 'next') {
2269
- return '다음 페이지로 이동';
2270
- }
2271
- // if (type === 'previous') {
2272
- return '이전 페이지로 이동';
2273
- }
2274
- }
2275
- }
2276
- }
2277
- };
2278
- export var kuCKB = {
2279
- components: {
2280
- MuiBreadcrumbs: {
2281
- defaultProps: {
2282
- expandText: 'ڕێچکە پیشان بدە'
2283
- }
2284
- },
2285
- MuiTablePagination: {
2286
- defaultProps: {
2287
- getItemAriaLabel: function getItemAriaLabel(type) {
2288
- if (type === 'first') {
2289
- return 'چوونە یەکەم پەڕە';
2290
- }
2291
- if (type === 'last') {
2292
- return 'چوونە کۆتا پەڕە';
2293
- }
2294
- if (type === 'next') {
2295
- return 'چوونە پەڕەی دواتر';
2296
- }
2297
- // if (type === 'previous') {
2298
- return 'گەڕانەوە بۆ پەڕەی پێشوو';
2299
- },
2300
- labelRowsPerPage: 'ژمارەی ڕیزەکان لە هەر پەڕەیەک:',
2301
- labelDisplayedRows: function labelDisplayedRows(_ref24) {
2302
- var from = _ref24.from,
2303
- to = _ref24.to,
2304
- count = _ref24.count;
2305
- return "".concat(from, "\u2013").concat(to, " \u0644\u06D5 ").concat(count !== -1 ? count : " \u0632\u06CC\u0627\u062A\u0631\u06D5 \u0644\u06D5".concat(to));
2306
- }
2307
- }
2308
- },
2309
- MuiRating: {
2310
- defaultProps: {
2311
- getLabelText: function getLabelText(value) {
2312
- return "".concat(value, " ").concat(value !== 1 ? 'ئەستێرەکان' : 'ئەستێرە');
2313
- },
2314
- emptyLabelText: 'خاڵیە'
2315
- }
2316
- },
2317
- MuiAutocomplete: {
2318
- defaultProps: {
2319
- clearText: 'سڕینەوە',
2320
- closeText: 'داخستن',
2321
- loadingText: 'لە بارکردندایە...',
2322
- noOptionsText: 'هیچ بژاردەیەک نیە',
2323
- openText: 'کردنەوە'
2324
- }
2325
- },
2326
- MuiAlert: {
2327
- defaultProps: {
2328
- closeText: 'داخستن'
2329
- }
2330
- },
2331
- MuiPagination: {
2332
- defaultProps: {
2333
- 'aria-label': 'گەڕان لە پەڕەکان',
2334
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
2335
- if (type === 'page') {
2336
- return "".concat(selected ? '' : 'چوون بۆ ', " \u067E\u06D5\u0695\u06D5\u06CC ").concat(page);
2337
- }
2338
- if (type === 'first') {
2339
- return 'چوونە یەکەم پەڕە';
2340
- }
2341
- if (type === 'last') {
2342
- return 'چوونە کۆتا پەڕە';
2343
- }
2344
- if (type === 'next') {
2345
- return 'چوونە پەڕەی دواتر';
2346
- }
2347
- // if (type === 'previous') {
2348
- return 'گەڕانەوە بۆ پەڕەی پێشوو';
2349
- }
2350
- }
2351
- }
2352
- }
2353
- };
2354
- export var kuLatn = {
2355
- components: {
2356
- MuiBreadcrumbs: {
2357
- defaultProps: {
2358
- expandText: 'Rê nîşan bide'
2359
- }
2360
- },
2361
- MuiTablePagination: {
2362
- defaultProps: {
2363
- getItemAriaLabel: function getItemAriaLabel(type) {
2364
- if (type === 'first') {
2365
- return 'Biçe rûpela yekem';
2366
- }
2367
- if (type === 'last') {
2368
- return 'Biçe rûpela dawî';
2369
- }
2370
- if (type === 'next') {
2371
- return 'Biçe rûpela din';
2372
- }
2373
- // if (type === 'previous') {
2374
- return 'Biçe rûpela berê';
2375
- },
2376
- labelRowsPerPage: 'Rêz li ser rûpelê:',
2377
- labelDisplayedRows: function labelDisplayedRows(_ref25) {
2378
- var from = _ref25.from,
2379
- to = _ref25.to,
2380
- count = _ref25.count;
2381
- return "".concat(from, "\u2013").concat(to, " of ").concat(count !== -1 ? count : "z\xEAdetir ji ".concat(to));
2382
- }
2383
- }
2384
- },
2385
- MuiRating: {
2386
- defaultProps: {
2387
- getLabelText: function getLabelText(value) {
2388
- return "".concat(value, " St\xEArk");
2389
- },
2390
- emptyLabelText: 'Vala'
2391
- }
2392
- },
2393
- MuiAutocomplete: {
2394
- defaultProps: {
2395
- clearText: 'Paqij bike',
2396
- closeText: 'Bigre',
2397
- loadingText: 'Tê barkirin…',
2398
- noOptionsText: 'Vebijêrk tune',
2399
- openText: 'Veke'
2400
- }
2401
- },
2402
- MuiAlert: {
2403
- defaultProps: {
2404
- closeText: 'Bigre'
2405
- }
2406
- },
2407
- MuiPagination: {
2408
- defaultProps: {
2409
- 'aria-label': 'Navîgasyona rûpelan',
2410
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
2411
- if (type === 'page') {
2412
- return "".concat(selected ? '' : 'Biçe ', "r\xFBpel ").concat(page);
2413
- }
2414
- if (type === 'first') {
2415
- return 'Biçe rûpela yekem';
2416
- }
2417
- if (type === 'last') {
2418
- return 'Biçe rûpela dawî';
2419
- }
2420
- if (type === 'next') {
2421
- return 'Biçe rûpela din';
2422
- }
2423
- // if (type === 'previous') {
2424
- return 'Biçe rûpela berê';
2425
- }
2426
- }
2427
- }
2428
- }
2429
- };
2430
- export var kkKZ = {
2431
- components: {
2432
- MuiBreadcrumbs: {
2433
- defaultProps: {
2434
- expandText: 'Толық жолды көрсету'
2435
- }
2436
- },
2437
- MuiTablePagination: {
2438
- defaultProps: {
2439
- getItemAriaLabel: function getItemAriaLabel(type) {
2440
- if (type === 'first') {
2441
- return 'Бірінші бетке өту';
2442
- }
2443
- if (type === 'last') {
2444
- return 'Соңғы бетке өту';
2445
- }
2446
- if (type === 'next') {
2447
- return 'Келесі бетке өту';
2448
- }
2449
- // if (type === 'previous') {
2450
- return 'Алдыңғы бетке өту';
2451
- },
2452
- labelRowsPerPage: 'Беттегі қатарлар:',
2453
- labelDisplayedRows: function labelDisplayedRows(_ref26) {
2454
- var from = _ref26.from,
2455
- to = _ref26.to,
2456
- count = _ref26.count;
2457
- return "".concat(count !== -1 ? count : "+".concat(to), " \u049B\u0430\u0442\u0430\u0440\u0434\u044B\u04A3 \u0456\u0448\u0456\u043D\u0435\u043D ").concat(from, "\u2013").concat(to);
2458
- }
2459
- }
2460
- },
2461
- MuiRating: {
2462
- defaultProps: {
2463
- getLabelText: function getLabelText(value) {
2464
- return "".concat(value, " \u0436\u04B1\u043B\u0434\u044B\u0437");
2465
- },
2466
- emptyLabelText: 'Рейтинг жоқ'
2467
- }
2468
- },
2469
- MuiAutocomplete: {
2470
- defaultProps: {
2471
- clearText: 'Тазарту',
2472
- closeText: 'Жабу',
2473
- loadingText: 'Жүктелуде…',
2474
- noOptionsText: 'Қол жетімді нұсқалар жоқ',
2475
- openText: 'Ашу'
2476
- }
2477
- },
2478
- MuiAlert: {
2479
- defaultProps: {
2480
- closeText: 'Жабу'
2481
- }
2482
- },
2483
- MuiPagination: {
2484
- defaultProps: {
2485
- 'aria-label': 'Беттерді шарлау',
2486
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
2487
- if (type === 'page') {
2488
- if (selected) {
2489
- return "".concat(page, " \u2014 \u0431\u0435\u0442");
2490
- }
2491
- return "".concat(page, " \u2014 \u0431\u0435\u0442\u043A\u0435 \u04E9\u0442\u0443");
2492
- }
2493
- if (type === 'first') {
2494
- return 'Бірінші бетке өту';
2495
- }
2496
- if (type === 'last') {
2497
- return 'Соңғы бетке өту';
2498
- }
2499
- if (type === 'next') {
2500
- return 'Келесі бетке өту';
2501
- }
2502
- // if (type === 'previous') {
2503
- return 'Алдыңғы бетке өту';
2504
- }
2505
- }
2506
- }
2507
- }
2508
- };
2509
-
2510
- // Macedonian - Македонски
2511
- export var mkMK = {
2512
- components: {
2513
- MuiBreadcrumbs: {
2514
- defaultProps: {
2515
- expandText: 'Прикажи патека'
2516
- }
2517
- },
2518
- MuiTablePagination: {
2519
- defaultProps: {
2520
- getItemAriaLabel: function getItemAriaLabel(type) {
2521
- if (type === 'first') {
2522
- return 'Оди на прва страница';
2523
- }
2524
- if (type === 'last') {
2525
- return 'Оди на последна страница';
2526
- }
2527
- if (type === 'next') {
2528
- return 'Оди на следна страница';
2529
- }
2530
- // if (type === 'previous') {
2531
- return 'Оди на предходна страница';
2532
- },
2533
- labelRowsPerPage: 'Редови по страница:',
2534
- labelDisplayedRows: function labelDisplayedRows(_ref27) {
2535
- var from = _ref27.from,
2536
- to = _ref27.to,
2537
- count = _ref27.count;
2538
- return "".concat(from, "\u2013").concat(to, " \u043E\u0434 ").concat(count !== -1 ? count : "\u043F\u043E\u0432\u0435\u045C\u0435 \u043E\u0434 ".concat(to));
2539
- }
2540
- }
2541
- },
2542
- MuiRating: {
2543
- defaultProps: {
2544
- getLabelText: function getLabelText(value) {
2545
- var lastDigit = value % 10;
2546
- return "".concat(value, " \u0405\u0432\u0435\u0437\u0434").concat(lastDigit === 1 ? 'а' : 'и');
2547
- },
2548
- emptyLabelText: 'Празно'
2549
- }
2550
- },
2551
- MuiAutocomplete: {
2552
- defaultProps: {
2553
- clearText: 'Избриши',
2554
- closeText: 'Затвори',
2555
- loadingText: 'Се презема',
2556
- noOptionsText: 'Нема опција',
2557
- openText: 'Отвори'
2558
- }
2559
- },
2560
- MuiAlert: {
2561
- defaultProps: {
2562
- closeText: 'Затвори'
2563
- }
2564
- },
2565
- MuiPagination: {
2566
- defaultProps: {
2567
- 'aria-label': 'Навигација низ страници',
2568
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
2569
- if (type === 'page') {
2570
- return "".concat(selected ? '' : 'Оди на ', "\u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430 ").concat(page);
2571
- }
2572
- if (type === 'first') {
2573
- return 'Оди на прва страница';
2574
- }
2575
- if (type === 'last') {
2576
- return 'Оди на последна страница';
2577
- }
2578
- if (type === 'next') {
2579
- return 'Оди на следна страница';
2580
- }
2581
- // if (type === 'previous') {
2582
- return 'Оди на предходна страница';
2583
- }
2584
- }
2585
- }
2586
- }
2587
- };
2588
-
2589
- // Myanmar - မြန်မာ
2590
- export var myMY = {
2591
- components: {
2592
- MuiBreadcrumbs: {
2593
- defaultProps: {
2594
- expandText: 'လမ်းကြောင်းပြပါ။'
2595
- }
2596
- },
2597
- MuiTablePagination: {
2598
- defaultProps: {
2599
- getItemAriaLabel: function getItemAriaLabel(type) {
2600
- if (type === 'first') {
2601
- return 'ပထမစာမျက်နှာသို့သွားပါ။';
2602
- }
2603
- if (type === 'last') {
2604
- return 'နောက်ဆုံးစာမျက်နှာသို့သွားပါ။';
2605
- }
2606
- if (type === 'next') {
2607
- return 'နောက်စာမျက်နှာသို့သွားပါ။';
2608
- }
2609
- // if (type === 'previous') {
2610
- return 'ယခင်စာမျက်နှာသို့သွားပါ။';
2611
- },
2612
- labelRowsPerPage: 'စာမျက်နှာအလိုက် အတန်းများ:',
2613
- labelDisplayedRows: function labelDisplayedRows(_ref28) {
2614
- var from = _ref28.from,
2615
- to = _ref28.to,
2616
- count = _ref28.count;
2617
- return "".concat(from, "\u2013").concat(to, " \u104F ").concat(count !== -1 ? count : "\u1011\u1000\u103A\u1015\u102D\u102F\u1015\u103C\u102E\u1038 ".concat(to));
2618
- }
2619
- }
2620
- },
2621
- MuiRating: {
2622
- defaultProps: {
2623
- getLabelText: function getLabelText(value) {
2624
- var lastDigit = value % 10;
2625
- return "".concat(value, " \u1000\u103C\u101A\u103A\u1015\u103D\u1004\u1037\u103A").concat(lastDigit === 1 ? '၎' : '');
2626
- },
2627
- emptyLabelText: 'ဗလာ'
2628
- }
2629
- },
2630
- MuiAutocomplete: {
2631
- defaultProps: {
2632
- clearText: 'ရှင်းလင်းသော',
2633
- closeText: 'ပိတ်လိုက်',
2634
- loadingText: 'ဖွင့်နေသည်…',
2635
- noOptionsText: 'ရွေးချယ်ခွင့်မရှိပါ။',
2636
- openText: 'ဖွင့်သည်။'
2637
- }
2638
- },
2639
- MuiAlert: {
2640
- defaultProps: {
2641
- closeText: 'ပိတ်လိုက်'
2642
- }
2643
- },
2644
- MuiPagination: {
2645
- defaultProps: {
2646
- 'aria-label': 'Pagination အညွှန်း',
2647
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
2648
- if (type === 'page') {
2649
- return "".concat(selected ? '' : 'သွားပါ။ ', "\u1005\u102C\u1019\u103B\u1000\u103A\u1014\u103E\u102C ").concat(page);
2650
- }
2651
- if (type === 'first') {
2652
- return 'ပထမစာမျက်နှာသို့သွားပါ။';
2653
- }
2654
- if (type === 'last') {
2655
- return 'နောက်ဆုံးစာမျက်နှာသို့သွားပါ။';
2656
- }
2657
- if (type === 'next') {
2658
- return 'နောက်စာမျက်နှာသို့သွားပါ။';
2659
- }
2660
- // if (type === 'previous') {
2661
- return 'ယခင်စာမျက်နှာသို့သွားပါ။';
2662
- }
2663
- }
2664
- }
2665
- }
2666
- };
2667
-
2668
- // Malay-Melayu
2669
- export var msMS = {
2670
- components: {
2671
- MuiBreadcrumbs: {
2672
- defaultProps: {
2673
- expandText: 'Tunjukkan laluan'
2674
- }
2675
- },
2676
- MuiTablePagination: {
2677
- defaultProps: {
2678
- getItemAriaLabel: function getItemAriaLabel(type) {
2679
- if (type === 'first') {
2680
- return 'Pergi ke halaman pertama';
2681
- }
2682
- if (type === 'last') {
2683
- return 'Pergi ke halaman terakhir';
2684
- }
2685
- if (type === 'next') {
2686
- return 'Pergi ke halaman seterusnya';
2687
- }
2688
- // if (type === 'previous') {
2689
- return 'Pergi ke halaman sebelumnya';
2690
- },
2691
- labelRowsPerPage: 'Baris setiap halaman:',
2692
- labelDisplayedRows: function labelDisplayedRows(_ref29) {
2693
- var from = _ref29.from,
2694
- to = _ref29.to,
2695
- count = _ref29.count;
2696
- return "".concat(from, "\u2013").concat(to, " daripada ").concat(count !== -1 ? count : "lebih daripada ".concat(to));
2697
- }
2698
- }
2699
- },
2700
- MuiRating: {
2701
- defaultProps: {
2702
- getLabelText: function getLabelText(value) {
2703
- var lastDigit = value % 10;
2704
- return "".concat(value, " Bintang").concat(lastDigit === 1 ? 's' : '');
2705
- },
2706
- emptyLabelText: 'kosong'
2707
- }
2708
- },
2709
- MuiAutocomplete: {
2710
- defaultProps: {
2711
- clearText: 'Jelas',
2712
- closeText: 'tutup',
2713
- loadingText: 'Memuatkan…',
2714
- noOptionsText: 'Tiada pilihan',
2715
- openText: 'Buka'
2716
- }
2717
- },
2718
- MuiAlert: {
2719
- defaultProps: {
2720
- closeText: 'tutup'
2721
- }
2722
- },
2723
- MuiPagination: {
2724
- defaultProps: {
2725
- 'aria-label': 'Navigasi penomboran',
2726
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
2727
- if (type === 'page') {
2728
- return "".concat(selected ? '' : 'Pergi ke ', "muka surat ").concat(page);
2729
- }
2730
- if (type === 'first') {
2731
- return 'Pergi ke halaman pertama';
2732
- }
2733
- if (type === 'last') {
2734
- return 'Pergi ke halaman terakhir';
2735
- }
2736
- if (type === 'next') {
2737
- return 'Pergi ke halaman seterusnya';
2738
- }
2739
- // if (type === 'previous') {
2740
- return 'Pergi ke halaman sebelumnya';
2741
- }
2742
- }
2743
- }
2744
- }
2745
- };
2746
-
2747
- // Nepali-नेपाली
2748
- export var neNP = {
2749
- components: {
2750
- MuiBreadcrumbs: {
2751
- defaultProps: {
2752
- expandText: 'बाटो देखाउनुहोस्'
2753
- }
2754
- },
2755
- MuiTablePagination: {
2756
- defaultProps: {
2757
- getItemAriaLabel: function getItemAriaLabel(type) {
2758
- if (type === 'first') {
2759
- return 'पहिलो पृष्ठमा जानुहोस्';
2760
- }
2761
- if (type === 'last') {
2762
- return 'अन्तिम पृष्ठमा जानुहोस्';
2763
- }
2764
- if (type === 'next') {
2765
- return 'अर्को पृष्ठमा जानुहोस्';
2766
- }
2767
- // if (type === 'previous') {
2768
- return 'अघिल्लो पृष्ठमा जानुहोस्';
2769
- },
2770
- labelRowsPerPage: 'प्रति पृष्ठ पङ्क्तिहरू:',
2771
- labelDisplayedRows: function labelDisplayedRows(_ref30) {
2772
- var from = _ref30.from,
2773
- to = _ref30.to,
2774
- count = _ref30.count;
2775
- return "".concat(from, "\u2013").concat(to, " \u0915\u094B ").concat(count !== -1 ? count : "\u0927\u0947\u0930\u0948 ".concat(to));
2776
- }
2777
- }
2778
- },
2779
- MuiRating: {
2780
- defaultProps: {
2781
- getLabelText: function getLabelText(value) {
2782
- var lastDigit = value % 10;
2783
- return "".concat(value, " \u0924\u093E\u0930\u093E").concat(lastDigit === 1 ? 'स' : '');
2784
- },
2785
- emptyLabelText: 'खाली'
2786
- }
2787
- },
2788
- MuiAutocomplete: {
2789
- defaultProps: {
2790
- clearText: 'खाली गर्नुहोस्',
2791
- closeText: 'बन्द गर्नुहोस्',
2792
- loadingText: 'लोड हुँदै...',
2793
- noOptionsText: 'कुनै विकल्प छैन',
2794
- openText: 'खोल्नुहोस्'
2795
- }
2796
- },
2797
- MuiAlert: {
2798
- defaultProps: {
2799
- closeText: 'बन्द गर्नुहोस्'
2800
- }
2801
- },
2802
- MuiPagination: {
2803
- defaultProps: {
2804
- 'aria-label': 'पृष्ठांकन नेभिगेसन',
2805
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
2806
- if (type === 'page') {
2807
- return "".concat(selected ? '' : 'जाऊ त्यहाँ ', "\u092A\u0943\u0937\u094D\u0920 ").concat(page);
2808
- }
2809
- if (type === 'first') {
2810
- return 'पहिलो पृष्ठमा जानुहोस्';
2811
- }
2812
- if (type === 'last') {
2813
- return 'अन्तिम पृष्ठमा जानुहोस्';
2814
- }
2815
- if (type === 'next') {
2816
- return 'अर्को पृष्ठमा जानुहोस्';
2817
- }
2818
- // if (type === 'previous') {
2819
- return 'अघिल्लो पृष्ठमा जानुहोस्';
2820
- }
2821
- }
2822
- }
2823
- }
2824
- };
2825
- export var nbNO = {
2826
- components: {
2827
- MuiBreadcrumbs: {
2828
- defaultProps: {
2829
- expandText: 'Vis sti'
2830
- }
2831
- },
2832
- MuiTablePagination: {
2833
- defaultProps: {
2834
- getItemAriaLabel: function getItemAriaLabel(type) {
2835
- if (type === 'first') {
2836
- return 'Gå til første side';
2837
- }
2838
- if (type === 'last') {
2839
- return 'Gå til siste side';
2840
- }
2841
- if (type === 'next') {
2842
- return 'Gå til neste side';
2843
- }
2844
- // if (type === 'previous') {
2845
- return 'Gå til forrige side';
2846
- },
2847
- labelRowsPerPage: 'Rader per side:',
2848
- labelDisplayedRows: function labelDisplayedRows(_ref31) {
2849
- var from = _ref31.from,
2850
- to = _ref31.to,
2851
- count = _ref31.count;
2852
- return "".concat(from, "\u2013").concat(to, " av ").concat(count !== -1 ? count : "mer enn ".concat(to));
2853
- }
2854
- }
2855
- },
2856
- MuiRating: {
2857
- defaultProps: {
2858
- getLabelText: function getLabelText(value) {
2859
- return "".concat(value, " Stjerne").concat(value !== 1 ? 'r' : '');
2860
- },
2861
- emptyLabelText: 'Tom'
2862
- }
2863
- },
2864
- MuiAutocomplete: {
2865
- defaultProps: {
2866
- clearText: 'Tøm',
2867
- closeText: 'Lukk',
2868
- loadingText: 'Laster inn…',
2869
- noOptionsText: 'Ingen alternativer',
2870
- openText: 'Åpne'
2871
- }
2872
- },
2873
- MuiAlert: {
2874
- defaultProps: {
2875
- closeText: 'Lukk'
2876
- }
2877
- },
2878
- MuiPagination: {
2879
- defaultProps: {
2880
- 'aria-label': 'Paginering navigasjon',
2881
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
2882
- if (type === 'page') {
2883
- return "".concat(selected ? '' : 'Gå til ', "side ").concat(page);
2884
- }
2885
- if (type === 'first') {
2886
- return 'Gå til første side';
2887
- }
2888
- if (type === 'last') {
2889
- return 'Gå til siste side';
2890
- }
2891
- if (type === 'next') {
2892
- return 'Gå til neste side';
2893
- }
2894
- // if (type === 'previous') {
2895
- return 'Gå til forrige side';
2896
- }
2897
- }
2898
- }
2899
- }
2900
- };
2901
- export var nnNO = {
2902
- components: {
2903
- MuiBreadcrumbs: {
2904
- defaultProps: {
2905
- expandText: 'Vis sti'
2906
- }
2907
- },
2908
- MuiTablePagination: {
2909
- defaultProps: {
2910
- getItemAriaLabel: function getItemAriaLabel(type) {
2911
- if (type === 'first') {
2912
- return 'Gå til første side';
2913
- }
2914
- if (type === 'last') {
2915
- return 'Gå til siste side';
2916
- }
2917
- if (type === 'next') {
2918
- return 'Gå til neste side';
2919
- }
2920
- // if (type === 'previous') {
2921
- return 'Gå til førre side';
2922
- },
2923
- labelRowsPerPage: 'Rader per side:',
2924
- labelDisplayedRows: function labelDisplayedRows(_ref32) {
2925
- var from = _ref32.from,
2926
- to = _ref32.to,
2927
- count = _ref32.count;
2928
- return "".concat(from, "\u2013").concat(to, " av ").concat(count !== -1 ? count : "fleire enn ".concat(to));
2929
- }
2930
- }
2931
- },
2932
- MuiRating: {
2933
- defaultProps: {
2934
- getLabelText: function getLabelText(value) {
2935
- return "".concat(value, " stjerne").concat(value !== 1 ? 'r' : '');
2936
- },
2937
- emptyLabelText: 'Tom'
2938
- }
2939
- },
2940
- MuiAutocomplete: {
2941
- defaultProps: {
2942
- clearText: 'Tøm',
2943
- closeText: 'Lukk',
2944
- loadingText: 'Lastar inn…',
2945
- noOptionsText: 'Ingen alternativ',
2946
- openText: 'Opna'
2947
- }
2948
- },
2949
- MuiAlert: {
2950
- defaultProps: {
2951
- closeText: 'Lukk'
2952
- }
2953
- },
2954
- MuiPagination: {
2955
- defaultProps: {
2956
- 'aria-label': 'Navigasjon for paginering',
2957
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
2958
- if (type === 'page') {
2959
- return "".concat(selected ? '' : 'Gå til ', "side ").concat(page);
2960
- }
2961
- if (type === 'first') {
2962
- return 'Gå til første side';
2963
- }
2964
- if (type === 'last') {
2965
- return 'Gå til siste side';
2966
- }
2967
- if (type === 'next') {
2968
- return 'Gå til neste side';
2969
- }
2970
- // if (type === 'previous') {
2971
- return 'Gå til førre side';
2972
- }
2973
- }
2974
- }
2975
- }
2976
- };
2977
- export var nlNL = {
2978
- components: {
2979
- MuiBreadcrumbs: {
2980
- defaultProps: {
2981
- expandText: 'Pad tonen'
2982
- }
2983
- },
2984
- MuiTablePagination: {
2985
- defaultProps: {
2986
- getItemAriaLabel: function getItemAriaLabel(type) {
2987
- if (type === 'first') {
2988
- return 'Ga naar eerste pagina';
2989
- }
2990
- if (type === 'last') {
2991
- return 'Ga naar laatste pagina';
2992
- }
2993
- if (type === 'next') {
2994
- return 'Ga naar volgende pagina';
2995
- }
2996
- // if (type === 'previous') {
2997
- return 'Ga naar vorige pagina';
2998
- },
2999
- labelRowsPerPage: 'Regels per pagina:',
3000
- labelDisplayedRows: function labelDisplayedRows(_ref33) {
3001
- var from = _ref33.from,
3002
- to = _ref33.to,
3003
- count = _ref33.count;
3004
- return "".concat(from, "\u2013").concat(to, " van ").concat(count !== -1 ? count : "meer dan ".concat(to));
3005
- }
3006
- }
3007
- },
3008
- MuiRating: {
3009
- defaultProps: {
3010
- getLabelText: function getLabelText(value) {
3011
- return "".concat(value, " Ster").concat(value !== 1 ? 'ren' : '');
3012
- },
3013
- emptyLabelText: 'Leeg'
3014
- }
3015
- },
3016
- MuiAutocomplete: {
3017
- defaultProps: {
3018
- clearText: 'Wissen',
3019
- closeText: 'Sluiten',
3020
- loadingText: 'Laden…',
3021
- noOptionsText: 'Geen opties',
3022
- openText: 'Openen'
3023
- }
3024
- },
3025
- MuiAlert: {
3026
- defaultProps: {
3027
- closeText: 'Sluiten'
3028
- }
3029
- },
3030
- MuiPagination: {
3031
- defaultProps: {
3032
- 'aria-label': 'Navigatie via paginering',
3033
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
3034
- if (type === 'page') {
3035
- return "".concat(selected ? '' : 'Ga naar ', "pagina ").concat(page);
3036
- }
3037
- if (type === 'first') {
3038
- return 'Ga naar eerste pagina';
3039
- }
3040
- if (type === 'last') {
3041
- return 'Ga naar laatste pagina';
3042
- }
3043
- if (type === 'next') {
3044
- return 'Ga naar volgende pagina';
3045
- }
3046
- // if (type === 'previous') {
3047
- return 'Ga naar vorige pagina';
3048
- }
3049
- }
3050
- }
3051
- }
3052
- };
3053
- export var plPL = {
3054
- components: {
3055
- MuiBreadcrumbs: {
3056
- defaultProps: {
3057
- expandText: 'Pokaż ścieżkę'
3058
- }
3059
- },
3060
- MuiTablePagination: {
3061
- defaultProps: {
3062
- getItemAriaLabel: function getItemAriaLabel(type) {
3063
- if (type === 'first') {
3064
- return 'Przejdź do pierwszej strony';
3065
- }
3066
- if (type === 'last') {
3067
- return 'Przejdź do ostatniej strony';
3068
- }
3069
- if (type === 'next') {
3070
- return 'Przejdź do następnej strony';
3071
- }
3072
- // if (type === 'previous') {
3073
- return 'Przejdź do poprzedniej strony';
3074
- },
3075
- labelRowsPerPage: 'Wierszy na stronę:',
3076
- labelDisplayedRows: function labelDisplayedRows(_ref34) {
3077
- var from = _ref34.from,
3078
- to = _ref34.to,
3079
- count = _ref34.count;
3080
- return "".concat(from, "\u2013").concat(to, " z ").concat(count !== -1 ? count : "ponad ".concat(to));
3081
- }
3082
- }
3083
- },
3084
- MuiRating: {
3085
- defaultProps: {
3086
- getLabelText: function getLabelText(value) {
3087
- var pluralForm = 'gwiazdek';
3088
- var lastDigit = value % 10;
3089
- if ((value < 10 || value > 20) && lastDigit > 1 && lastDigit < 5) {
3090
- pluralForm = 'gwiazdki';
3091
- } else if (value === 1) {
3092
- pluralForm = 'gwiazdka';
3093
- }
3094
- return "".concat(value, " ").concat(pluralForm);
3095
- },
3096
- emptyLabelText: 'Brak gwiazdek'
3097
- }
3098
- },
3099
- MuiAutocomplete: {
3100
- defaultProps: {
3101
- clearText: 'Wyczyść',
3102
- closeText: 'Zamknij',
3103
- loadingText: 'Ładowanie…',
3104
- noOptionsText: 'Brak opcji',
3105
- openText: 'Otwórz'
3106
- }
3107
- },
3108
- MuiAlert: {
3109
- defaultProps: {
3110
- closeText: 'Zamknij'
3111
- }
3112
- },
3113
- MuiPagination: {
3114
- defaultProps: {
3115
- 'aria-label': 'Nawigacja podziału na strony',
3116
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
3117
- if (type === 'page') {
3118
- return selected ? "".concat(page, ". strona") : "Przejd\u017A do ".concat(page, ". strony");
3119
- }
3120
- if (type === 'first') {
3121
- return 'Przejdź do pierwszej strony';
3122
- }
3123
- if (type === 'last') {
3124
- return 'Przejdź do ostatniej strony';
3125
- }
3126
- if (type === 'next') {
3127
- return 'Przejdź do następnej strony';
3128
- }
3129
- // if (type === 'previous') {
3130
- return 'Przejdź do poprzedniej strony';
3131
- }
3132
- }
3133
- }
3134
- }
3135
- };
3136
- export var ptBR = {
3137
- components: {
3138
- MuiBreadcrumbs: {
3139
- defaultProps: {
3140
- expandText: 'Mostrar caminho'
3141
- }
3142
- },
3143
- MuiTablePagination: {
3144
- defaultProps: {
3145
- getItemAriaLabel: function getItemAriaLabel(type) {
3146
- if (type === 'first') {
3147
- return 'Ir para a primeira página';
3148
- }
3149
- if (type === 'last') {
3150
- return 'Ir para a última página';
3151
- }
3152
- if (type === 'next') {
3153
- return 'Ir para a próxima página';
3154
- }
3155
- // if (type === 'previous') {
3156
- return 'Ir para a página anterior';
3157
- },
3158
- labelRowsPerPage: 'Linhas por página:',
3159
- labelDisplayedRows: function labelDisplayedRows(_ref35) {
3160
- var from = _ref35.from,
3161
- to = _ref35.to,
3162
- count = _ref35.count;
3163
- return "".concat(from, "\u2013").concat(to, " de ").concat(count !== -1 ? count : "mais de ".concat(to));
3164
- }
3165
- }
3166
- },
3167
- MuiRating: {
3168
- defaultProps: {
3169
- getLabelText: function getLabelText(value) {
3170
- return "".concat(value, " Estrela").concat(value !== 1 ? 's' : '');
3171
- },
3172
- emptyLabelText: 'Vazio'
3173
- }
3174
- },
3175
- MuiAutocomplete: {
3176
- defaultProps: {
3177
- clearText: 'Limpar',
3178
- closeText: 'Fechar',
3179
- loadingText: 'Carregando…',
3180
- noOptionsText: 'Sem opções',
3181
- openText: 'Abrir'
3182
- }
3183
- },
3184
- MuiAlert: {
3185
- defaultProps: {
3186
- closeText: 'Fechar'
3187
- }
3188
- },
3189
- MuiPagination: {
3190
- defaultProps: {
3191
- 'aria-label': 'Navegar pela paginação',
3192
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
3193
- if (type === 'page') {
3194
- return "".concat(selected ? '' : 'Ir para a ', "p\xE1gina ").concat(page);
3195
- }
3196
- if (type === 'first') {
3197
- return 'Ir para a primeira página';
3198
- }
3199
- if (type === 'last') {
3200
- return 'Ir para a última página';
3201
- }
3202
- if (type === 'next') {
3203
- return 'Ir para a próxima página';
3204
- }
3205
- // if (type === 'previous') {
3206
- return 'Ir para a página anterior';
3207
- }
3208
- }
3209
- }
3210
- }
3211
- };
3212
- export var ptPT = {
3213
- components: {
3214
- MuiBreadcrumbs: {
3215
- defaultProps: {
3216
- expandText: 'Mostrar caminho'
3217
- }
3218
- },
3219
- MuiTablePagination: {
3220
- defaultProps: {
3221
- getItemAriaLabel: function getItemAriaLabel(type) {
3222
- if (type === 'first') {
3223
- return 'Primeira página';
3224
- }
3225
- if (type === 'last') {
3226
- return 'Última página';
3227
- }
3228
- if (type === 'next') {
3229
- return 'Próxima página';
3230
- }
3231
- // if (type === 'previous') {
3232
- return 'Página anterior';
3233
- },
3234
- labelRowsPerPage: 'Linhas por página:',
3235
- labelDisplayedRows: function labelDisplayedRows(_ref36) {
3236
- var from = _ref36.from,
3237
- to = _ref36.to,
3238
- count = _ref36.count;
3239
- return "".concat(from, "\u2013").concat(to, " de ").concat(count !== -1 ? count : "mais de ".concat(to));
3240
- }
3241
- }
3242
- },
3243
- MuiRating: {
3244
- defaultProps: {
3245
- getLabelText: function getLabelText(value) {
3246
- return "".concat(value, " Estrela").concat(value !== 1 ? 's' : '');
3247
- },
3248
- emptyLabelText: 'Vazio'
3249
- }
3250
- },
3251
- MuiAutocomplete: {
3252
- defaultProps: {
3253
- clearText: 'Limpar',
3254
- closeText: 'Fechar',
3255
- loadingText: 'A carregar…',
3256
- noOptionsText: 'Sem opções',
3257
- openText: 'Abrir'
3258
- }
3259
- },
3260
- MuiAlert: {
3261
- defaultProps: {
3262
- closeText: 'Fechar'
3263
- }
3264
- },
3265
- MuiPagination: {
3266
- defaultProps: {
3267
- 'aria-label': 'Navegar por páginas',
3268
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
3269
- if (type === 'page') {
3270
- return "".concat(selected ? '' : 'Ir para a ', "p\xE1gina ").concat(page);
3271
- }
3272
- if (type === 'first') {
3273
- return 'Primeira página';
3274
- }
3275
- if (type === 'last') {
3276
- return 'Última página';
3277
- }
3278
- if (type === 'next') {
3279
- return 'Próxima página';
3280
- }
3281
- // if (type === 'previous') {
3282
- return 'Página anterior';
3283
- }
3284
- }
3285
- }
3286
- }
3287
- };
3288
- export var roRO = {
3289
- components: {
3290
- MuiBreadcrumbs: {
3291
- defaultProps: {
3292
- expandText: 'Arată calea'
3293
- }
3294
- },
3295
- MuiTablePagination: {
3296
- defaultProps: {
3297
- getItemAriaLabel: function getItemAriaLabel(type) {
3298
- if (type === 'first') {
3299
- return 'Mergi la prima pagină';
3300
- }
3301
- if (type === 'last') {
3302
- return 'Mergi la ultima pagină';
3303
- }
3304
- if (type === 'next') {
3305
- return 'Mergi la pagina următoare';
3306
- }
3307
- // if (type === 'previous') {
3308
- return 'Mergi la pagina precedentă';
3309
- },
3310
- labelRowsPerPage: 'Rânduri pe pagină:'
3311
- // labelDisplayedRows: ({ from, to, count }) =>
3312
- // `${from}–${to} din ${count !== -1 ? count : `more than ${to}`}`,
3313
- }
3314
- },
3315
- MuiRating: {
3316
- defaultProps: {
3317
- getLabelText: function getLabelText(value) {
3318
- return "".concat(value, " St").concat(value !== 1 ? 'ele' : 'ea');
3319
- },
3320
- emptyLabelText: 'Gol'
3321
- }
3322
- },
3323
- MuiAutocomplete: {
3324
- defaultProps: {
3325
- clearText: 'Șterge',
3326
- closeText: 'Închide',
3327
- loadingText: 'Se încarcă…',
3328
- noOptionsText: 'Nicio opțiune',
3329
- openText: 'Deschide'
3330
- }
3331
- },
3332
- MuiAlert: {
3333
- defaultProps: {
3334
- closeText: 'Închide'
3335
- }
3336
- },
3337
- MuiPagination: {
3338
- defaultProps: {
3339
- 'aria-label': 'Navigare prin paginare',
3340
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
3341
- if (type === 'page') {
3342
- return "".concat(selected ? '' : 'Mergi la ', "pagina ").concat(page);
3343
- }
3344
- if (type === 'first') {
3345
- return 'Mergi la prima pagină';
3346
- }
3347
- if (type === 'last') {
3348
- return 'Mergi la ultima pagină';
3349
- }
3350
- if (type === 'next') {
3351
- return 'Mergi la pagina următoare';
3352
- }
3353
- // if (type === 'previous') {
3354
- return 'Mergi la pagina precedentă';
3355
- }
3356
- }
3357
- }
3358
- }
3359
- };
3360
-
3361
- // Serbian - Srpski
3362
- export var srRS = {
3363
- components: {
3364
- MuiBreadcrumbs: {
3365
- defaultProps: {
3366
- expandText: 'Pokaži putanju'
3367
- }
3368
- },
3369
- MuiTablePagination: {
3370
- defaultProps: {
3371
- getItemAriaLabel: function getItemAriaLabel(type) {
3372
- if (type === 'first') {
3373
- return 'Idi na prvu stranicu';
3374
- }
3375
- if (type === 'last') {
3376
- return 'Idi na poslednju stranicu';
3377
- }
3378
- if (type === 'next') {
3379
- return 'Idi na sledeću stranicu';
3380
- }
3381
- // if (type === 'previous') {
3382
- return 'Idi na prethodnu stranicu';
3383
- },
3384
- labelRowsPerPage: 'Redova po stranici:',
3385
- labelDisplayedRows: function labelDisplayedRows(_ref37) {
3386
- var from = _ref37.from,
3387
- to = _ref37.to,
3388
- count = _ref37.count;
3389
- return "".concat(from, "\u2013").concat(to, " od ").concat(count !== -1 ? count : "vi\u0161e nego ".concat(to));
3390
- }
3391
- }
3392
- },
3393
- MuiRating: {
3394
- defaultProps: {
3395
- getLabelText: function getLabelText(value) {
3396
- var lastDigit = value % 10;
3397
- var lastTwoDigits = value % 100;
3398
- if ([2, 3, 4].includes(lastDigit) && ![12, 13, 14].includes(lastTwoDigits)) {
3399
- return 'Zvezde';
3400
- }
3401
- return 'Zvezda';
3402
- },
3403
- emptyLabelText: 'Prazno'
3404
- }
3405
- },
3406
- MuiAutocomplete: {
3407
- defaultProps: {
3408
- clearText: 'Briši',
3409
- closeText: 'Zatvori',
3410
- loadingText: 'Učitavanje…',
3411
- noOptionsText: 'Nema opcija',
3412
- openText: 'Otvori'
3413
- }
3414
- },
3415
- MuiAlert: {
3416
- defaultProps: {
3417
- closeText: 'Zatvori'
3418
- }
3419
- },
3420
- MuiPagination: {
3421
- defaultProps: {
3422
- 'aria-label': 'Navigacija po stranicama',
3423
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
3424
- if (type === 'page') {
3425
- return "".concat(selected ? '' : 'Idi na ', "stranicu ").concat(page);
3426
- }
3427
- if (type === 'first') {
3428
- return 'Idi na prvu stranicu';
3429
- }
3430
- if (type === 'last') {
3431
- return 'Idi na zadnju stranicu';
3432
- }
3433
- if (type === 'next') {
3434
- return 'Idi na sledeću stranicu';
3435
- }
3436
- // if (type === 'previous') {
3437
- return 'Idi na prethodnu stranicu';
3438
- }
3439
- }
3440
- }
3441
- }
3442
- };
3443
- export var ruRU = {
3444
- components: {
3445
- MuiBreadcrumbs: {
3446
- defaultProps: {
3447
- expandText: 'Показать полный путь'
3448
- }
3449
- },
3450
- MuiTablePagination: {
3451
- defaultProps: {
3452
- getItemAriaLabel: function getItemAriaLabel(type) {
3453
- if (type === 'first') {
3454
- return 'Перейти на первую страницу';
3455
- }
3456
- if (type === 'last') {
3457
- return 'Перейти на последнюю страницу';
3458
- }
3459
- if (type === 'next') {
3460
- return 'Перейти на следующую страницу';
3461
- }
3462
- // if (type === 'previous') {
3463
- return 'Перейти на предыдущую страницу';
3464
- },
3465
- labelRowsPerPage: 'Строк на странице:',
3466
- labelDisplayedRows: function labelDisplayedRows(_ref38) {
3467
- var from = _ref38.from,
3468
- to = _ref38.to,
3469
- count = _ref38.count;
3470
- return "".concat(from, "\u2013").concat(to, " \u0438\u0437 ").concat(count !== -1 ? count : "\u0431\u043E\u043B\u0435\u0435 \u0447\u0435\u043C ".concat(to));
3471
- }
3472
- }
3473
- },
3474
- MuiRating: {
3475
- defaultProps: {
3476
- getLabelText: function getLabelText(value) {
3477
- var pluralForm = 'Звёзд';
3478
- var lastDigit = value % 10;
3479
- if (lastDigit > 1 && lastDigit < 5) {
3480
- pluralForm = 'Звезды';
3481
- } else if (lastDigit === 1) {
3482
- pluralForm = 'Звезда';
3483
- }
3484
- return "".concat(value, " ").concat(pluralForm);
3485
- },
3486
- emptyLabelText: 'Рейтинг отсутствует'
3487
- }
3488
- },
3489
- MuiAutocomplete: {
3490
- defaultProps: {
3491
- clearText: 'Очистить',
3492
- closeText: 'Закрыть',
3493
- loadingText: 'Загрузка…',
3494
- noOptionsText: 'Нет доступных вариантов',
3495
- openText: 'Открыть'
3496
- }
3497
- },
3498
- MuiAlert: {
3499
- defaultProps: {
3500
- closeText: 'Закрыть'
3501
- }
3502
- },
3503
- MuiPagination: {
3504
- defaultProps: {
3505
- 'aria-label': 'Навигация по страницам',
3506
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
3507
- if (type === 'page') {
3508
- if (selected) {
3509
- return "".concat(page, " \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430");
3510
- }
3511
- return "\u041F\u0435\u0440\u0435\u0439\u0442\u0438 \u043D\u0430 ".concat(page, " \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0443");
3512
- }
3513
- if (type === 'first') {
3514
- return 'Перейти на первую страницу';
3515
- }
3516
- if (type === 'last') {
3517
- return 'Перейти на последнюю страницу';
3518
- }
3519
- if (type === 'next') {
3520
- return 'Перейти на следующую страницу';
3521
- }
3522
- // if (type === 'previous') {
3523
- return 'Перейти на предыдущую страницу';
3524
- }
3525
- }
3526
- }
3527
- }
3528
- };
3529
- export var siLK = {
3530
- components: {
3531
- MuiBreadcrumbs: {
3532
- defaultProps: {
3533
- expandText: 'ගමන් මඟ පෙන්වන්න'
3534
- }
3535
- },
3536
- MuiTablePagination: {
3537
- defaultProps: {
3538
- getItemAriaLabel: function getItemAriaLabel(type) {
3539
- if (type === 'first') {
3540
- return 'පළමු පිටුවට යන්න';
3541
- }
3542
- if (type === 'last') {
3543
- return 'අවසාන පිටුවට යන්න';
3544
- }
3545
- if (type === 'next') {
3546
- return 'මීළඟ පිටුවට යන්න';
3547
- }
3548
- // if (type === 'previous') {
3549
- return 'පෙර පිටුවට යන්න';
3550
- },
3551
- labelRowsPerPage: 'පිටුවක පේළි:',
3552
- labelDisplayedRows: function labelDisplayedRows(_ref39) {
3553
- var from = _ref39.from,
3554
- to = _ref39.to,
3555
- count = _ref39.count;
3556
- return "".concat(from, "\u2013").concat(to, " \u0DAF\u0D9A\u0DCA\u0DC0\u0DCF ").concat(count !== -1 ? count : "".concat(to, " \u0DA7 \u0DC0\u0DD0\u0DA9\u0DD2 \u0DB4\u0DCA\u200D\u0DBB\u0DB8\u0DCF\u0DAB\u0DBA\u0D9A\u0DD2\u0DB1\u0DCA"));
3557
- }
3558
- }
3559
- },
3560
- MuiRating: {
3561
- defaultProps: {
3562
- getLabelText: function getLabelText(value) {
3563
- return "\u0DAD\u0DBB\u0DD4 ".concat(value);
3564
- },
3565
- emptyLabelText: 'හිස්'
3566
- }
3567
- },
3568
- MuiAutocomplete: {
3569
- defaultProps: {
3570
- clearText: 'මකන්න',
3571
- closeText: 'වසන්න',
3572
- loadingText: 'නැංවෙමින්…',
3573
- noOptionsText: 'විකල්ප නැත',
3574
- openText: 'විවෘත කරන්න'
3575
- }
3576
- },
3577
- MuiAlert: {
3578
- defaultProps: {
3579
- closeText: 'වසන්න'
3580
- }
3581
- },
3582
- MuiPagination: {
3583
- defaultProps: {
3584
- 'aria-label': 'පිටු අතර සංචරණය',
3585
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
3586
- if (type === 'page') {
3587
- return "\u0DB4\u0DD2\u0DA7\u0DD4\u0DC0 ".concat(page, " ").concat(selected ? '' : 'ට යන්න');
3588
- }
3589
- if (type === 'first') {
3590
- return 'පළමු පිටුවට යන්න';
3591
- }
3592
- if (type === 'last') {
3593
- return 'අවසාන පිටුවට යන්න';
3594
- }
3595
- if (type === 'next') {
3596
- return 'මීළඟ පිටුවට යන්න';
3597
- }
3598
- // if (type === 'previous') {
3599
- return 'පෙර පිටුවට යන්න';
3600
- }
3601
- }
3602
- }
3603
- }
3604
- };
3605
- export var skSK = {
3606
- components: {
3607
- MuiBreadcrumbs: {
3608
- defaultProps: {
3609
- expandText: 'Ukázať cestu '
3610
- }
3611
- },
3612
- MuiTablePagination: {
3613
- defaultProps: {
3614
- getItemAriaLabel: function getItemAriaLabel(type) {
3615
- if (type === 'first') {
3616
- return 'Ísť na prvú stránku';
3617
- }
3618
- if (type === 'last') {
3619
- return 'Ísť na poslednú stránku';
3620
- }
3621
- if (type === 'next') {
3622
- return 'Ísť na ďaľšiu stránku';
3623
- }
3624
- // if (type === 'previous') {
3625
- return 'Ísť na predchádzajúcu stránku';
3626
- },
3627
- labelRowsPerPage: 'Riadkov na stránke:',
3628
- labelDisplayedRows: function labelDisplayedRows(_ref40) {
3629
- var from = _ref40.from,
3630
- to = _ref40.to,
3631
- count = _ref40.count;
3632
- return "".concat(from, "\u2013").concat(to, " z ").concat(count !== -1 ? count : "viac ako ".concat(to));
3633
- }
3634
- }
3635
- },
3636
- MuiRating: {
3637
- defaultProps: {
3638
- getLabelText: function getLabelText(value) {
3639
- if (value === 1) {
3640
- return "".concat(value, " hviezdi\u010Dka");
3641
- }
3642
- if (value >= 2 && value <= 4) {
3643
- return "".concat(value, " hviezdi\u010Dky");
3644
- }
3645
- return "".concat(value, " hviezdi\u010Diek");
3646
- },
3647
- emptyLabelText: 'Prázdne'
3648
- }
3649
- },
3650
- MuiAutocomplete: {
3651
- defaultProps: {
3652
- clearText: 'Vymazať',
3653
- closeText: 'Zavrieť',
3654
- loadingText: 'Načítanie…',
3655
- noOptionsText: 'Žiadne možnosti',
3656
- openText: 'Otvoriť'
3657
- }
3658
- },
3659
- MuiAlert: {
3660
- defaultProps: {
3661
- closeText: 'Zavrieť'
3662
- }
3663
- },
3664
- MuiPagination: {
3665
- defaultProps: {
3666
- 'aria-label': 'Navigácia stránkovanim',
3667
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
3668
- if (type === 'page') {
3669
- return "".concat(selected ? '' : 'Ísť na ', "str\xE1nku ").concat(page);
3670
- }
3671
- if (type === 'first') {
3672
- return 'Ísť na prvú stránku';
3673
- }
3674
- if (type === 'last') {
3675
- return 'Ísť na poslednú stránku';
3676
- }
3677
- if (type === 'next') {
3678
- return 'Ísť na ďaľšiu stránku';
3679
- }
3680
- // if (type === 'previous') {
3681
- return 'Ísť na predchádzajúcu stránku';
3682
- }
3683
- }
3684
- }
3685
- }
3686
- };
3687
- export var svSE = {
3688
- components: {
3689
- MuiBreadcrumbs: {
3690
- defaultProps: {
3691
- expandText: 'Visa sökväg'
3692
- }
3693
- },
3694
- MuiTablePagination: {
3695
- defaultProps: {
3696
- getItemAriaLabel: function getItemAriaLabel(type) {
3697
- if (type === 'first') {
3698
- return 'Gå till första sidan';
3699
- }
3700
- if (type === 'last') {
3701
- return 'Gå till sista sidan';
3702
- }
3703
- if (type === 'next') {
3704
- return 'Gå till nästa sida';
3705
- }
3706
- // if (type === 'previous') {
3707
- return 'Gå till föregående sida';
3708
- },
3709
- labelRowsPerPage: 'Rader per sida:',
3710
- labelDisplayedRows: function labelDisplayedRows(_ref41) {
3711
- var from = _ref41.from,
3712
- to = _ref41.to,
3713
- count = _ref41.count;
3714
- return "".concat(from, "\u2013").concat(to, " av ").concat(count !== -1 ? count : "fler \xE4n ".concat(to));
3715
- }
3716
- }
3717
- },
3718
- MuiRating: {
3719
- defaultProps: {
3720
- getLabelText: function getLabelText(value) {
3721
- return "".concat(value, " ").concat(value !== 1 ? 'Stjärnor' : 'Stjärna');
3722
- },
3723
- emptyLabelText: 'Tom'
3724
- }
3725
- },
3726
- MuiAutocomplete: {
3727
- defaultProps: {
3728
- clearText: 'Rensa',
3729
- closeText: 'Stäng',
3730
- loadingText: 'Laddar…',
3731
- noOptionsText: 'Inga alternativ',
3732
- openText: 'Öppna'
3733
- }
3734
- },
3735
- MuiAlert: {
3736
- defaultProps: {
3737
- closeText: 'Stäng'
3738
- }
3739
- },
3740
- MuiPagination: {
3741
- defaultProps: {
3742
- 'aria-label': 'Sidnavigering',
3743
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
3744
- if (type === 'page') {
3745
- return "".concat(selected ? '' : 'Gå till ', "sida ").concat(page);
3746
- }
3747
- if (type === 'first') {
3748
- return 'Gå till första sidan';
3749
- }
3750
- if (type === 'last') {
3751
- return 'Gå till sista sidan';
3752
- }
3753
- if (type === 'next') {
3754
- return 'Gå till nästa sida';
3755
- }
3756
- // if (type === 'previous') {
3757
- return 'Gå till föregående sida';
3758
- }
3759
- }
3760
- }
3761
- }
3762
- };
3763
- export var thTH = {
3764
- components: {
3765
- MuiBreadcrumbs: {
3766
- defaultProps: {
3767
- expandText: 'แสดงเส้นทาง'
3768
- }
3769
- },
3770
- MuiTablePagination: {
3771
- defaultProps: {
3772
- getItemAriaLabel: function getItemAriaLabel(type) {
3773
- if (type === 'first') {
3774
- return 'ไปที่หน้าแรก';
3775
- }
3776
- if (type === 'last') {
3777
- return 'ไปที่หน้าสุดท้าย';
3778
- }
3779
- if (type === 'next') {
3780
- return 'ไปที่หน้าถัดไป';
3781
- }
3782
- // if (type === 'previous') {
3783
- return 'ไปที่หน้าก่อน';
3784
- },
3785
- labelRowsPerPage: 'จำนวนแถวต่อหน้า:',
3786
- labelDisplayedRows: function labelDisplayedRows(_ref42) {
3787
- var from = _ref42.from,
3788
- to = _ref42.to,
3789
- count = _ref42.count;
3790
- return "".concat(from, "\u2013").concat(to, " \u0E08\u0E32\u0E01 ").concat(count !== -1 ? count : "\u0E21\u0E32\u0E01\u0E01\u0E27\u0E48\u0E32 ".concat(to));
3791
- }
3792
- }
3793
- },
3794
- MuiRating: {
3795
- defaultProps: {
3796
- getLabelText: function getLabelText(value) {
3797
- return "".concat(value, " \u0E14\u0E32\u0E27");
3798
- },
3799
- emptyLabelText: 'ว่างเปล่า'
3800
- }
3801
- },
3802
- MuiAutocomplete: {
3803
- defaultProps: {
3804
- clearText: 'เคลียร์',
3805
- closeText: 'ปิด',
3806
- loadingText: 'กำลังโหลด…',
3807
- noOptionsText: 'ไม่มีตัวเลือก',
3808
- openText: 'เปิด'
3809
- }
3810
- },
3811
- MuiAlert: {
3812
- defaultProps: {
3813
- closeText: 'ปิด'
3814
- }
3815
- },
3816
- MuiPagination: {
3817
- defaultProps: {
3818
- 'aria-label': '',
3819
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
3820
- if (type === 'page') {
3821
- return "".concat(selected ? '' : 'ไปที่', "\u0E2B\u0E19\u0E49\u0E32 ").concat(page);
3822
- }
3823
- if (type === 'first') {
3824
- return 'ไปที่หน้าแรก';
3825
- }
3826
- if (type === 'last') {
3827
- return 'ไปที่หน้าสุดท้าย';
3828
- }
3829
- if (type === 'next') {
3830
- return 'ไปที่หน้าถัดไป';
3831
- }
3832
- // if (type === 'previous') {
3833
- return 'ไปที่หน้าก่อน';
3834
- }
3835
- }
3836
- }
3837
- }
3838
- };
3839
- export var trTR = {
3840
- components: {
3841
- MuiBreadcrumbs: {
3842
- defaultProps: {
3843
- expandText: 'Yolu göster'
3844
- }
3845
- },
3846
- MuiTablePagination: {
3847
- defaultProps: {
3848
- getItemAriaLabel: function getItemAriaLabel(type) {
3849
- if (type === 'first') {
3850
- return 'İlk sayfaya git';
3851
- }
3852
- if (type === 'last') {
3853
- return 'Son sayfaya git';
3854
- }
3855
- if (type === 'next') {
3856
- return 'Sonraki sayfaya git';
3857
- }
3858
- // if (type === 'previous') {
3859
- return 'Önceki sayfaya git';
3860
- },
3861
- labelRowsPerPage: 'Sayfa başına satır:',
3862
- labelDisplayedRows: function labelDisplayedRows(_ref43) {
3863
- var from = _ref43.from,
3864
- to = _ref43.to,
3865
- count = _ref43.count;
3866
- return "".concat(from, "-").concat(to, " / ").concat(count !== -1 ? count : "".concat(to, "'den fazla"));
3867
- }
3868
- }
3869
- },
3870
- MuiRating: {
3871
- defaultProps: {
3872
- getLabelText: function getLabelText(value) {
3873
- return "".concat(value, " Y\u0131ld\u0131z");
3874
- },
3875
- emptyLabelText: 'Boş'
3876
- }
3877
- },
3878
- MuiAutocomplete: {
3879
- defaultProps: {
3880
- clearText: 'Temizle',
3881
- closeText: 'Kapat',
3882
- loadingText: 'Yükleniyor…',
3883
- noOptionsText: 'Seçenek yok',
3884
- openText: 'Aç'
3885
- }
3886
- },
3887
- MuiAlert: {
3888
- defaultProps: {
3889
- closeText: 'Kapat'
3890
- }
3891
- },
3892
- MuiPagination: {
3893
- defaultProps: {
3894
- 'aria-label': 'Sayfa navigasyonu',
3895
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
3896
- if (type === 'page') {
3897
- return "".concat(page, ". ").concat(selected ? 'sayfa' : 'sayfaya git');
3898
- }
3899
- if (type === 'first') {
3900
- return 'İlk sayfaya git';
3901
- }
3902
- if (type === 'last') {
3903
- return 'Son sayfaya git';
3904
- }
3905
- if (type === 'next') {
3906
- return 'Sonraki sayfaya git';
3907
- }
3908
- // if (type === 'previous') {
3909
- return 'Önceki sayfaya git';
3910
- }
3911
- }
3912
- }
3913
- }
3914
- };
3915
-
3916
- // Tagalog-Tagalog
3917
- export var tlTL = {
3918
- components: {
3919
- MuiBreadcrumbs: {
3920
- defaultProps: {
3921
- expandText: 'Ipakita ang landas'
3922
- }
3923
- },
3924
- MuiTablePagination: {
3925
- defaultProps: {
3926
- getItemAriaLabel: function getItemAriaLabel(type) {
3927
- if (type === 'first') {
3928
- return 'Pumunta sa unang pahina';
3929
- }
3930
- if (type === 'last') {
3931
- return 'Pumunta sa huling pahina';
3932
- }
3933
- if (type === 'next') {
3934
- return 'Pumunta sa susunod na pahina';
3935
- }
3936
- // if (type === 'previous') {
3937
- return 'Pumunta sa nakaraang pahina';
3938
- },
3939
- labelRowsPerPage: 'Mga hilera bawat pahina:',
3940
- labelDisplayedRows: function labelDisplayedRows(_ref44) {
3941
- var from = _ref44.from,
3942
- to = _ref44.to,
3943
- count = _ref44.count;
3944
- return "".concat(from, "\u2013").concat(to, " ng ").concat(count !== -1 ? count : "higit sa ".concat(to));
3945
- }
3946
- }
3947
- },
3948
- MuiRating: {
3949
- defaultProps: {
3950
- getLabelText: function getLabelText(value) {
3951
- return "".concat(value, " Bituin").concat(value !== 1 ? 's' : '');
3952
- },
3953
- emptyLabelText: 'Walang laman'
3954
- }
3955
- },
3956
- MuiAutocomplete: {
3957
- defaultProps: {
3958
- clearText: 'Maaliwalas',
3959
- closeText: 'Isara',
3960
- loadingText: 'Naglo-load…',
3961
- noOptionsText: 'Walang mga pagpipilian',
3962
- openText: 'Bukas'
3963
- }
3964
- },
3965
- MuiAlert: {
3966
- defaultProps: {
3967
- closeText: 'Isara'
3968
- }
3969
- },
3970
- MuiPagination: {
3971
- defaultProps: {
3972
- 'aria-label': 'Sayfa navigasyonu',
3973
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
3974
- if (type === 'page') {
3975
- return "".concat(selected ? '' : 'Pumunta sa', "pahina ").concat(page);
3976
- }
3977
- if (type === 'first') {
3978
- return 'Pumunta sa unang pahina';
3979
- }
3980
- if (type === 'last') {
3981
- return 'Pumunta sa huling pahina';
3982
- }
3983
- if (type === 'next') {
3984
- return 'Pumunta sa susunod na pahina';
3985
- }
3986
- // if (type === 'previous') {
3987
- return 'Pumunta sa nakaraang pahina';
3988
- }
3989
- }
3990
- }
3991
- }
3992
- };
3993
- export var ukUA = {
3994
- components: {
3995
- MuiBreadcrumbs: {
3996
- defaultProps: {
3997
- expandText: 'Показати шлях сторінок'
3998
- }
3999
- },
4000
- MuiTablePagination: {
4001
- defaultProps: {
4002
- getItemAriaLabel: function getItemAriaLabel(type) {
4003
- if (type === 'first') {
4004
- return 'Перейти на першу сторінку';
4005
- }
4006
- if (type === 'last') {
4007
- return 'Перейти на останню сторінку';
4008
- }
4009
- if (type === 'next') {
4010
- return 'Перейти на наступну сторінку';
4011
- }
4012
- // if (type === 'previous') {
4013
- return 'Перейти на попередню сторінку';
4014
- },
4015
- labelRowsPerPage: 'Рядків на сторінці:',
4016
- labelDisplayedRows: function labelDisplayedRows(_ref45) {
4017
- var from = _ref45.from,
4018
- to = _ref45.to,
4019
- count = _ref45.count;
4020
- return "".concat(from, "\u2013").concat(to, " \u0437 ").concat(count !== -1 ? count : "\u043F\u043E\u043D\u0430\u0434 ".concat(to));
4021
- }
4022
- }
4023
- },
4024
- MuiRating: {
4025
- defaultProps: {
4026
- getLabelText: function getLabelText(value) {
4027
- var pluralForm = 'Зірок';
4028
- var lastDigit = value % 10;
4029
- if (lastDigit > 1 && lastDigit < 5) {
4030
- pluralForm = 'Зірки';
4031
- } else if (lastDigit === 1) {
4032
- pluralForm = 'Зірка';
4033
- }
4034
- return "".concat(value, " ").concat(pluralForm);
4035
- },
4036
- emptyLabelText: 'Рейтинг відсутній'
4037
- }
4038
- },
4039
- MuiAutocomplete: {
4040
- defaultProps: {
4041
- clearText: 'Очистити',
4042
- closeText: 'Згорнути',
4043
- loadingText: 'Завантаження…',
4044
- noOptionsText: 'Немає варіантів',
4045
- openText: 'Розгорнути'
4046
- }
4047
- },
4048
- MuiAlert: {
4049
- defaultProps: {
4050
- closeText: 'Згорнути'
4051
- }
4052
- },
4053
- MuiPagination: {
4054
- defaultProps: {
4055
- 'aria-label': 'Навігація сторінками',
4056
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
4057
- if (type === 'page') {
4058
- return "".concat(selected ? '' : 'Перейти на ', "\u0441\u0442\u043E\u0440\u0456\u043D\u043A\u0443 ").concat(page);
4059
- }
4060
- if (type === 'first') {
4061
- return 'Перейти на першу сторінку';
4062
- }
4063
- if (type === 'last') {
4064
- return 'Перейти на останню сторінку';
4065
- }
4066
- if (type === 'next') {
4067
- return 'Перейти на наступну сторінку';
4068
- }
4069
- // if (type === 'previous') {
4070
- return 'Перейти на попередню сторінку';
4071
- }
4072
- }
4073
- }
4074
- }
4075
- };
4076
- export var urPK = {
4077
- components: {
4078
- MuiBreadcrumbs: {
4079
- defaultProps: {
4080
- expandText: 'راستہ دکھائیں'
4081
- }
4082
- },
4083
- MuiTablePagination: {
4084
- defaultProps: {
4085
- getItemAriaLabel: function getItemAriaLabel(type) {
4086
- if (type === 'first') {
4087
- return 'پہلے صفحے پر جائیں';
4088
- }
4089
- if (type === 'last') {
4090
- return 'آخری صفحے پر جائیں';
4091
- }
4092
- if (type === 'next') {
4093
- return 'اگلے صفحے پر جائیں';
4094
- }
4095
- // if (type === 'previous') {
4096
- return 'پچھلے صفحے پر جائیں';
4097
- },
4098
- labelRowsPerPage: 'ایک صفحے پر قطاریں:',
4099
- labelDisplayedRows: function labelDisplayedRows(_ref46) {
4100
- var from = _ref46.from,
4101
- to = _ref46.to,
4102
- count = _ref46.count;
4103
- return "".concat(count !== -1 ? "".concat(count, " \u0645\u06CC\u06BA \u0633\u06D2") : "".concat(to, " \u0633\u06D2 \u0630\u06CC\u0627\u062F\u06C1 \u0645\u06CC\u06BA \u0633\u06D2"), " ").concat(from, " \u0633\u06D2 ").concat(to, " \u0642\u0637\u0627\u0631\u06CC\u06BA");
4104
- }
4105
- }
4106
- },
4107
- MuiRating: {
4108
- defaultProps: {
4109
- getLabelText: function getLabelText(value) {
4110
- return "".concat(value, " \u0633\u062A\u0627\u0631").concat(value !== 1 ? 'ے' : 'ہ');
4111
- },
4112
- emptyLabelText: 'خالی'
4113
- }
4114
- },
4115
- MuiAutocomplete: {
4116
- defaultProps: {
4117
- clearText: 'کلئیر',
4118
- closeText: 'بند کریں',
4119
- loadingText: 'لوڈ ہو رہا ہے۔۔۔',
4120
- noOptionsText: 'کوئی آپشن نہیں',
4121
- openText: 'کھولیں'
4122
- }
4123
- },
4124
- MuiAlert: {
4125
- defaultProps: {
4126
- closeText: 'بند کریں'
4127
- }
4128
- },
4129
- MuiPagination: {
4130
- defaultProps: {
4131
- 'aria-label': 'صفحات کی ترتیب',
4132
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
4133
- if (type === 'page') {
4134
- return "\u0635\u0641\u062D\u06C1 \u0646\u0645\u0628\u0631 ".concat(page).concat(selected ? '' : ' پر جائیں');
4135
- }
4136
- if (type === 'first') {
4137
- return 'پہلے صفحے پر جائیں';
4138
- }
4139
- if (type === 'last') {
4140
- return 'آخری صفحے پر جائیں';
4141
- }
4142
- if (type === 'next') {
4143
- return 'اگلے صفحے پر جائیں';
4144
- }
4145
- // if (type === 'previous') {
4146
- return 'پچھلے صفحے پر جائیں';
4147
- }
4148
- }
4149
- }
4150
- }
4151
- };
4152
- export var viVN = {
4153
- components: {
4154
- MuiBreadcrumbs: {
4155
- defaultProps: {
4156
- expandText: 'Mở ra'
4157
- }
4158
- },
4159
- MuiTablePagination: {
4160
- defaultProps: {
4161
- getItemAriaLabel: function getItemAriaLabel(type) {
4162
- if (type === 'first') {
4163
- return 'Tới trang đầu tiên';
4164
- }
4165
- if (type === 'last') {
4166
- return 'Tới trang cuối cùng';
4167
- }
4168
- if (type === 'next') {
4169
- return 'Tới trang tiếp theo';
4170
- }
4171
- // if (type === 'previous') {
4172
- return 'Về trang trước đó';
4173
- },
4174
- labelRowsPerPage: 'Số hàng mỗi trang:',
4175
- labelDisplayedRows: function labelDisplayedRows(_ref47) {
4176
- var from = _ref47.from,
4177
- to = _ref47.to,
4178
- count = _ref47.count;
4179
- return "".concat(from, "\u2013").concat(to, " trong ").concat(count !== -1 ? count : "nhi\u1EC1u h\u01A1n ".concat(to));
4180
- }
4181
- }
4182
- },
4183
- MuiRating: {
4184
- defaultProps: {
4185
- getLabelText: function getLabelText(value) {
4186
- return "".concat(value, " sao");
4187
- },
4188
- emptyLabelText: 'Không có dữ liệu'
4189
- }
4190
- },
4191
- MuiAutocomplete: {
4192
- defaultProps: {
4193
- clearText: 'Xóa',
4194
- closeText: 'Đóng',
4195
- loadingText: 'Đang tải…',
4196
- noOptionsText: 'Không có lựa chọn nào',
4197
- openText: 'Mở'
4198
- }
4199
- },
4200
- MuiAlert: {
4201
- defaultProps: {
4202
- closeText: 'Đóng'
4203
- }
4204
- },
4205
- MuiPagination: {
4206
- defaultProps: {
4207
- 'aria-label': 'Thanh điều khiển trang',
4208
- getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
4209
- if (type === 'page') {
4210
- return "".concat(selected ? '' : 'Tới ', "trang ").concat(page);
4211
- }
4212
- if (type === 'first') {
4213
- return 'Tới trang đầu tiên';
4214
- }
4215
- if (type === 'last') {
4216
- return 'Tới trang cuối cùng';
4217
- }
4218
- if (type === 'next') {
4219
- return 'Tới trang tiếp theo';
4220
- }
4221
- // if (type === 'previous') {
4222
- return 'Về trang trước đó';
4223
- }
4224
- }
4225
- }
4226
- }
4227
- };
4228
- export var zhCN = {
4229
- components: {
4230
- MuiBreadcrumbs: {
4231
- defaultProps: {
4232
- expandText: '展开'
4233
- }
4234
- },
4235
- MuiTablePagination: {
4236
- defaultProps: {
4237
- getItemAriaLabel: function getItemAriaLabel(type) {
4238
- if (type === 'first') {
4239
- return '第一页';
4240
- }
4241
- if (type === 'last') {
4242
- return '最后一页';
4243
- }
4244
- if (type === 'next') {
4245
- return '下一页';
4246
- }
4247
- return '上一页';
4248
- },
4249
- labelRowsPerPage: '每页行数:',
4250
- labelDisplayedRows: function labelDisplayedRows(_ref48) {
4251
- var from = _ref48.from,
4252
- to = _ref48.to,
4253
- count = _ref48.count;
4254
- return "\u7B2C ".concat(from, " \u6761\u5230\u7B2C ").concat(to, " \u6761\uFF0C").concat(count !== -1 ? "\u5171 ".concat(count, " \u6761") : "\u81F3\u5C11 ".concat(to, " \u6761"));
4255
- }
4256
- }
4257
- },
4258
- MuiRating: {
4259
- defaultProps: {
4260
- getLabelText: function getLabelText(value) {
4261
- return "".concat(value, " \u9897\u661F");
4262
- },
4263
- emptyLabelText: '无标签'
4264
- }
4265
- },
4266
- MuiAutocomplete: {
4267
- defaultProps: {
4268
- clearText: '清空',
4269
- closeText: '关闭',
4270
- loadingText: '加载中……',
4271
- noOptionsText: '没有可用选项',
4272
- openText: '打开'
4273
- }
4274
- },
4275
- MuiAlert: {
4276
- defaultProps: {
4277
- closeText: '关闭'
4278
- }
4279
- }
4280
- }
4281
- };
4282
- export var zhHK = {
4283
- components: {
4284
- MuiBreadcrumbs: {
4285
- defaultProps: {
4286
- expandText: '展開'
4287
- }
4288
- },
4289
- MuiTablePagination: {
4290
- defaultProps: {
4291
- getItemAriaLabel: function getItemAriaLabel(type) {
4292
- if (type === 'first') {
4293
- return '第一頁';
4294
- }
4295
- if (type === 'last') {
4296
- return '最後一頁';
4297
- }
4298
- if (type === 'next') {
4299
- return '下一頁';
4300
- }
4301
- return '上一頁';
4302
- },
4303
- labelRowsPerPage: '每頁行數:',
4304
- labelDisplayedRows: function labelDisplayedRows(_ref49) {
4305
- var from = _ref49.from,
4306
- to = _ref49.to,
4307
- count = _ref49.count;
4308
- return "\u7B2C ".concat(from, " \u9805\u81F3\u7B2C ").concat(to, " \u9805\uFF0C").concat(count !== -1 ? "\u5171 ".concat(count, " \u9805") : "\u8D85\u904E ".concat(to, " \u9805"));
4309
- }
4310
- }
4311
- },
4312
- MuiRating: {
4313
- defaultProps: {
4314
- getLabelText: function getLabelText(value) {
4315
- return "".concat(value, " \u7C92\u661F");
4316
- },
4317
- emptyLabelText: '無標籤'
4318
- }
4319
- },
4320
- MuiAutocomplete: {
4321
- defaultProps: {
4322
- clearText: '清除',
4323
- closeText: '關閉',
4324
- loadingText: '載入中……',
4325
- noOptionsText: '沒有可用選項',
4326
- openText: '開啟'
4327
- }
4328
- },
4329
- MuiAlert: {
4330
- defaultProps: {
4331
- closeText: '關閉'
4332
- }
4333
- }
4334
- }
4335
- };
4336
- export var zhTW = {
4337
- components: {
4338
- MuiBreadcrumbs: {
4339
- defaultProps: {
4340
- expandText: '展開'
4341
- }
4342
- },
4343
- MuiTablePagination: {
4344
- defaultProps: {
4345
- getItemAriaLabel: function getItemAriaLabel(type) {
4346
- if (type === 'first') {
4347
- return '第一頁';
4348
- }
4349
- if (type === 'last') {
4350
- return '最後一頁';
4351
- }
4352
- if (type === 'next') {
4353
- return '下一頁';
4354
- }
4355
- return '上一頁';
4356
- },
4357
- labelRowsPerPage: '每頁數量:',
4358
- labelDisplayedRows: function labelDisplayedRows(_ref50) {
4359
- var from = _ref50.from,
4360
- to = _ref50.to,
4361
- count = _ref50.count;
4362
- return "".concat(from, " ~ ").concat(to, " / ").concat(count !== -1 ? count : "".concat(to, " \u4EE5\u4E0A"));
4363
- }
4364
- }
4365
- },
4366
- MuiRating: {
4367
- defaultProps: {
4368
- getLabelText: function getLabelText(value) {
4369
- return "".concat(value, " \u9846\u661F");
4370
- },
4371
- emptyLabelText: '無標籤'
4372
- }
4373
- },
4374
- MuiAutocomplete: {
4375
- defaultProps: {
4376
- clearText: '清空',
4377
- closeText: '關閉',
4378
- loadingText: '載入中…',
4379
- noOptionsText: '沒有可用選項',
4380
- openText: '打開'
4381
- }
4382
- },
4383
- MuiAlert: {
4384
- defaultProps: {
4385
- closeText: '關閉'
4386
- }
4387
- }
4388
- }
4389
- };