@zohodesk/react-cli 1.1.14-kubernetes → 1.1.15-exp.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (510) hide show
  1. package/.eslintignore +7 -7
  2. package/.eslintrc.js +180 -180
  3. package/.prettierrc +6 -6
  4. package/.vscode/settings.json +25 -0
  5. package/Changelog.md +1019 -1019
  6. package/README.md +1421 -1137
  7. package/bin/cli.js +458 -483
  8. package/docs/AutoPrefixer.md +27 -0
  9. package/docs/ComposeMinification.md +13 -0
  10. package/docs/CustomChunks.md +29 -26
  11. package/docs/DevServerPort.md +39 -39
  12. package/docs/DevStart.md +18 -18
  13. package/docs/HoverActive.md +12 -12
  14. package/docs/InstallNode.md +28 -28
  15. package/docs/MarkdownParser.md +18 -0
  16. package/docs/ReactLive.md +14 -0
  17. package/docs/SelectorWeight.md +9 -6
  18. package/docs/TODOS.md +10 -10
  19. package/docs/ValueReplacer.md +87 -60
  20. package/docs/VariableConversion.md +729 -724
  21. package/docs/patternFiltering.md +57 -0
  22. package/docs/warnings_while_install.txt +35 -35
  23. package/files/eslintrc.js +62 -62
  24. package/files/prettierrc.js +3 -3
  25. package/lib/common/buildEs.js +12 -0
  26. package/lib/common/runPreProcess.js +71 -0
  27. package/lib/common/splitChunks.js +65 -45
  28. package/lib/common/testPattern.js +9 -11
  29. package/lib/common/valueReplacer.js +1 -3
  30. package/lib/configs/resolvers.js +16 -5
  31. package/lib/configs/webpack.css.umd.config.js +7 -6
  32. package/lib/configs/webpack.dev.config.js +18 -5
  33. package/lib/configs/webpack.docs.config.js +19 -5
  34. package/lib/configs/webpack.impact.config.js +13 -4
  35. package/lib/configs/webpack.prod.config.js +18 -5
  36. package/lib/constants.js +3 -3
  37. package/lib/deprecationLogger.js +40 -0
  38. package/lib/loaderUtils/configsAssetsLoaders.js +33 -33
  39. package/lib/loaderUtils/getCSSLoaders.js +102 -49
  40. package/lib/loaderUtils/tests/windowsModification.test.js +10 -0
  41. package/lib/loaderUtils/windowsModification.js +6 -1
  42. package/lib/loaders/__test__/markdownLoader.spec.js +145 -0
  43. package/lib/loaders/composeLoader.js +298 -0
  44. package/lib/loaders/docsLoader.js +18 -7
  45. package/lib/loaders/markdownLoader.js +71 -0
  46. package/lib/loaders/reactLiveConvertor.js +105 -0
  47. package/lib/loaders/selectorMappingLoader.js +9 -9
  48. package/lib/loaders/workerLoader.js +9 -9
  49. package/lib/logger.js +27 -0
  50. package/lib/pluginUtils/getDevPlugins.js +30 -11
  51. package/lib/pluginUtils/getProdPlugins.js +37 -10
  52. package/lib/pluginUtils/getUMDCSSPlugins.js +1 -1
  53. package/lib/pluginUtils/getUMDComponentPlugins.js +1 -1
  54. package/lib/plugins/CustomAttributePlugin.js +82 -0
  55. package/lib/plugins/CustomAttributePlugin.md +35 -0
  56. package/lib/plugins/EFCPlugin.js +9 -9
  57. package/lib/plugins/EFCPlugin.md +6 -6
  58. package/lib/plugins/EFCTemplatePlugin.js +10 -12
  59. package/lib/plugins/EfcResourceCleanupPlugin.js +43 -0
  60. package/lib/plugins/I18NInjectIntoIndexPlugin.js +12 -13
  61. package/lib/plugins/I18nSplitPlugin/I18nDebugPlugin.js +2 -3
  62. package/lib/plugins/I18nSplitPlugin/I18nDownlodLogic.js +38 -38
  63. package/lib/plugins/I18nSplitPlugin/I18nFilesEmitter.js +30 -30
  64. package/lib/plugins/I18nSplitPlugin/I18nKeysIdentifer.js +10 -15
  65. package/lib/plugins/I18nSplitPlugin/I18nSplit.md +95 -95
  66. package/lib/plugins/I18nSplitPlugin/README.md +25 -25
  67. package/lib/plugins/I18nSplitPlugin/index.js +57 -57
  68. package/lib/plugins/I18nSplitPlugin/utils/propertiesUtils.js +8 -8
  69. package/lib/plugins/{UglifyCSSPlugin.js → MinifyPlugin.js} +3 -3
  70. package/lib/plugins/ReportGeneratePlugin.js +8 -6
  71. package/lib/plugins/ResourceHintsPlugin.js +30 -20
  72. package/lib/plugins/RtlSplitPlugin/RtlCssPlugin.js +6 -6
  73. package/lib/plugins/RtlSplitPlugin/RtrSplit.md +30 -30
  74. package/lib/plugins/SelectorPlugin.js +77 -37
  75. package/lib/plugins/ServiceWorkerPlugin.js +9 -9
  76. package/lib/plugins/StatsPlugin.js +82 -0
  77. package/lib/plugins/TPHashMappingPlugin.js +4 -4
  78. package/lib/plugins/UnusedFilesFindPlugin.js +7 -5
  79. package/lib/plugins/VariableConversionCollector.js +86 -147
  80. package/lib/plugins/index.js +7 -7
  81. package/lib/plugins/utils/classHandling.js +35 -0
  82. package/lib/plugins/utils/fileHandling.js +93 -0
  83. package/lib/plugins/utils/tests/fileHandling.test.js +30 -0
  84. package/lib/plugins/variableConvertorUtils.js +133 -0
  85. package/lib/postcss-plugins/AutoPrefixer.js +150 -0
  86. package/lib/postcss-plugins/EmptyPlugin.js +8 -0
  87. package/lib/postcss-plugins/ExcludePlugin.js +1 -1
  88. package/lib/postcss-plugins/IncludePlugin.js +23 -0
  89. package/lib/postcss-plugins/RTLSplitPlugin.js +14 -20
  90. package/lib/postcss-plugins/SelectorReplace.js +80 -0
  91. package/lib/postcss-plugins/ValueReplacer.js +8 -29
  92. package/lib/postcss-plugins/__test__/selectorReplace.test.js +28 -0
  93. package/lib/postcss-plugins/__test__/test1Input.css +38 -38
  94. package/lib/postcss-plugins/__test__/test1Output.css +38 -38
  95. package/lib/postcss-plugins/__test__/valueReplacer.spec.js +43 -0
  96. package/lib/postcss-plugins/hoverActivePlugin.js +3 -9
  97. package/lib/postcss-plugins/variableModificationPlugin/ErrorHandler.js +0 -1
  98. package/lib/postcss-plugins/variableModificationPlugin/index.js +94 -38
  99. package/lib/schemas/index.js +109 -18
  100. package/lib/servers/devBuild.js +13 -11
  101. package/lib/servers/getCliPath.js +3 -5
  102. package/lib/servers/httpsOptions.js +12 -13
  103. package/lib/servers/nowatchserver.js +62 -55
  104. package/lib/servers/requireLocalOrGlobal.js +61 -0
  105. package/lib/servers/server.js +53 -52
  106. package/lib/sh/pre-commit.sh +34 -34
  107. package/lib/sh/reportPublish.sh +45 -45
  108. package/lib/utils/buildstats.html +148 -148
  109. package/lib/utils/cssClassNameGenerate.js +70 -13
  110. package/lib/utils/deprecationSupport.js +134 -0
  111. package/lib/utils/getOptions.js +35 -28
  112. package/lib/utils/getServerURL.js +1 -9
  113. package/lib/utils/index.js +14 -12
  114. package/lib/utils/initPreCommitHook.js +5 -5
  115. package/lib/utils/log.js +11 -0
  116. package/lib/utils/object-manipulation.js +88 -0
  117. package/lib/utils/pullOrigin.js +3 -3
  118. package/lib/utils/reinstallDependencies.js +3 -3
  119. package/lib/utils/resultSchema.json +73 -73
  120. package/lib/utils/selectorReplacer.js +47 -0
  121. package/lib/utils/switchBranch.js +4 -2
  122. package/lib/utils/variableConverter.js +104 -0
  123. package/npm-shrinkwrap.json +14485 -0
  124. package/npm8.md +9 -9
  125. package/package.json +124 -121
  126. package/packages/client_build_tool/lib/allCommandsConfigs.js +25 -0
  127. package/packages/client_build_tool/lib/commands/build/commandExecutor.js +17 -0
  128. package/packages/client_build_tool/lib/commands/build/config.js +12 -0
  129. package/packages/client_build_tool/lib/commands/build/errorHander.js +10 -0
  130. package/packages/client_build_tool/lib/commands/build/optionsProcessor.js +45 -0
  131. package/packages/client_build_tool/lib/commands/buildEs/commandExecutor.js +33 -0
  132. package/packages/client_build_tool/lib/commands/buildEs/config.js +12 -0
  133. package/packages/client_build_tool/lib/commands/buildLib/commandExecutor.js +33 -0
  134. package/packages/client_build_tool/lib/commands/buildLib/config.js +12 -0
  135. package/packages/client_build_tool/lib/commands/mockserver/commandExecutor.js +43 -0
  136. package/packages/client_build_tool/lib/commands/mockserver/config.js +12 -0
  137. package/packages/client_build_tool/lib/commands/start/commandExecutor.js +12 -0
  138. package/packages/client_build_tool/lib/commands/start/config.js +12 -0
  139. package/packages/client_build_tool/lib/commands/start/deprecationHandler.js +10 -0
  140. package/packages/client_build_tool/lib/commands/start/errorHander.js +10 -0
  141. package/packages/client_build_tool/lib/commands/start/optionsProcessor.js +40 -0
  142. package/packages/client_build_tool/lib/commands/start/postProcessor.js +10 -0
  143. package/packages/client_build_tool/lib/commands/start/preProcessor.js +10 -0
  144. package/packages/client_build_tool/lib/commands/template/commandExecutor.js +32 -0
  145. package/packages/client_build_tool/lib/commands/template/config.js +12 -0
  146. package/packages/client_build_tool/lib/commands/version/commandExecutor.js +14 -0
  147. package/packages/client_build_tool/lib/commands/version/config.js +12 -0
  148. package/packages/client_build_tool/lib/commands/version/errorHander.js +10 -0
  149. package/packages/client_build_tool/lib/commandsRouter.js +76 -0
  150. package/packages/client_build_tool/lib/index.js +12 -0
  151. package/packages/client_build_tool/lib/logger.js +34 -0
  152. package/packages/client_build_tool/lib/schemas/applyValuesToSchema/__test__/otherTestCases.test.js +234 -0
  153. package/packages/client_build_tool/lib/schemas/applyValuesToSchema/__test__/passingDifferentDataTypesToSchema.test.js +103 -0
  154. package/packages/client_build_tool/lib/schemas/applyValuesToSchema/__test__/passingEmptyObjects.test.js +41 -0
  155. package/packages/client_build_tool/lib/schemas/applyValuesToSchema/__test__/replacingSchemaValueByCustomOptions/convertArray.test.js +68 -0
  156. package/packages/client_build_tool/lib/schemas/applyValuesToSchema/__test__/replacingSchemaValueByCustomOptions/convertNumber.test.js +68 -0
  157. package/packages/client_build_tool/lib/schemas/applyValuesToSchema/__test__/replacingSchemaValueByCustomOptions/convertObject.test.js +141 -0
  158. package/packages/client_build_tool/lib/schemas/applyValuesToSchema/__test__/replacingSchemaValueByCustomOptions/convertString.test.js +68 -0
  159. package/packages/client_build_tool/lib/schemas/applyValuesToSchema/__test__/replacingSchemaValueByCustomOptions/convertUndefinedAndNull.test.js +132 -0
  160. package/packages/client_build_tool/lib/schemas/applyValuesToSchema/__test__/replacingSchemaValueByProcessEnv/convertArray.test.js +71 -0
  161. package/packages/client_build_tool/lib/schemas/applyValuesToSchema/__test__/replacingSchemaValueByProcessEnv/convertNumber.test.js +71 -0
  162. package/packages/client_build_tool/lib/schemas/applyValuesToSchema/__test__/replacingSchemaValueByProcessEnv/convertObject.test.js +73 -0
  163. package/packages/client_build_tool/lib/schemas/applyValuesToSchema/__test__/replacingSchemaValueByProcessEnv/convertString.test.js +71 -0
  164. package/packages/client_build_tool/lib/schemas/applyValuesToSchema/__test__/replacingSchemaValueByProcessEnv/convertUndefinedAndNull.test.js +138 -0
  165. package/packages/client_build_tool/lib/schemas/applyValuesToSchema/index.js +34 -0
  166. package/packages/client_build_tool/lib/schemas/applyValuesToSchema/isObject.js +10 -0
  167. package/packages/client_build_tool/lib/schemas/applyValuesToSchema/isValid.js +14 -0
  168. package/packages/client_build_tool/lib/schemas/cliArgsToObject.js +39 -0
  169. package/packages/client_build_tool/lib/schemas/defaultConfigValues.js +244 -0
  170. package/packages/client_build_tool/lib/schemas/defaultConfigValuesOnly.js +161 -0
  171. package/packages/client_build_tool/lib/schemas/deprecatedOptionsHandler.js +67 -0
  172. package/packages/client_build_tool/lib/schemas/getNpmVersion.js +22 -0
  173. package/packages/client_build_tool/lib/schemas/giveDefaultValue.js +18 -0
  174. package/packages/client_build_tool/lib/schemas/npmConfigToObject.js +35 -0
  175. package/packages/client_build_tool/lib/schemas/readOptions.js +54 -0
  176. package/packages/client_build_tool/lib/schemas/readOptionsForConfigFile.js +42 -0
  177. package/packages/client_build_tool/lib/shared/babel/__test__/es2015/Map.test.js +15 -0
  178. package/packages/client_build_tool/lib/shared/babel/__test__/es2015/MathAndNumberMethod.test.js +30 -0
  179. package/packages/client_build_tool/lib/shared/babel/__test__/es2015/ObjectAndModules.test.js +47 -0
  180. package/packages/client_build_tool/lib/shared/babel/__test__/es2015/Sets.test.js +18 -0
  181. package/packages/client_build_tool/lib/shared/babel/__test__/es2015/Symbol.test.js +25 -0
  182. package/packages/client_build_tool/lib/shared/babel/__test__/es2015/arrowFunction.test.js +34 -0
  183. package/packages/client_build_tool/lib/shared/babel/__test__/es2015/block-scoping.test.js +18 -0
  184. package/packages/client_build_tool/lib/shared/babel/__test__/es2015/classes.test.js +55 -0
  185. package/packages/client_build_tool/lib/shared/babel/__test__/es2015/defaultParameterValues.test.js +18 -0
  186. package/packages/client_build_tool/lib/shared/babel/__test__/es2015/extraFeatures.test.js +82 -0
  187. package/packages/client_build_tool/lib/shared/babel/__test__/es2015/forOf.test.js +20 -0
  188. package/packages/client_build_tool/lib/shared/babel/__test__/es2015/promise.test.js +22 -0
  189. package/packages/client_build_tool/lib/shared/babel/__test__/es2015/spreadOperator.test.js +20 -0
  190. package/packages/client_build_tool/lib/shared/babel/__test__/es2015/spreadParams.test.js +24 -0
  191. package/packages/client_build_tool/lib/shared/babel/__test__/es2015/stringAndArrayMethods.test.js +67 -0
  192. package/packages/client_build_tool/lib/shared/babel/__test__/es2015/variables.test.js +21 -0
  193. package/packages/client_build_tool/lib/shared/babel/__test__/es2016/array-includes.test.js +13 -0
  194. package/packages/client_build_tool/lib/shared/babel/__test__/es2016/exponentationOperator.test.js +20 -0
  195. package/packages/client_build_tool/lib/shared/babel/__test__/es2017/asyncAndawait.test.js +23 -0
  196. package/packages/client_build_tool/lib/shared/babel/__test__/es2017/object-entries.test.js +24 -0
  197. package/packages/client_build_tool/lib/shared/babel/__test__/es2017/object-getOwnproperties.test.js +24 -0
  198. package/packages/client_build_tool/lib/shared/babel/__test__/es2017/object-values.test.js +24 -0
  199. package/packages/client_build_tool/lib/shared/babel/__test__/es2017/stringMethods.test.js +20 -0
  200. package/packages/client_build_tool/lib/shared/babel/__test__/es2018/asynchronous-iterator.test.js +19 -0
  201. package/packages/client_build_tool/lib/shared/babel/__test__/es2018/object-rest-spread.test.js +24 -0
  202. package/packages/client_build_tool/lib/shared/babel/__test__/es2018/promise-finally.test.js +26 -0
  203. package/packages/client_build_tool/lib/shared/babel/__test__/es2018/regularExpressions.test.js +35 -0
  204. package/packages/client_build_tool/lib/shared/babel/__test__/es2019/Json.stringify.test.js +21 -0
  205. package/packages/client_build_tool/lib/shared/babel/__test__/es2019/arrayMethods.test.js +31 -0
  206. package/packages/client_build_tool/lib/shared/babel/__test__/es2019/object-fromEntriesMethod.test.js +13 -0
  207. package/packages/client_build_tool/lib/shared/babel/__test__/es2019/optionalCatchBinding.test.js +23 -0
  208. package/packages/client_build_tool/lib/shared/babel/__test__/es2019/revisedFunctionToString.test.js +17 -0
  209. package/packages/client_build_tool/lib/shared/babel/__test__/es2019/trim-startAndend-method.test.js +20 -0
  210. package/packages/client_build_tool/lib/shared/babel/__test__/es2020/AssignmentOperator.test.js +27 -0
  211. package/packages/client_build_tool/lib/shared/babel/__test__/es2020/Dynamic-Import.test.js +19 -0
  212. package/packages/client_build_tool/lib/shared/babel/__test__/es2020/NullishOperator.test.js +15 -0
  213. package/packages/client_build_tool/lib/shared/babel/__test__/es2020/bigInt.test.js +13 -0
  214. package/packages/client_build_tool/lib/shared/babel/__test__/es2020/chainOperator.test.js +17 -0
  215. package/packages/client_build_tool/lib/shared/babel/__test__/es2020/export-namespace-from.test.js +12 -0
  216. package/packages/client_build_tool/lib/shared/babel/__test__/es2020/promiseAllSettledMathod.test.js +17 -0
  217. package/packages/client_build_tool/lib/shared/babel/__test__/es2020/stringMatchMethod.test.js +13 -0
  218. package/packages/client_build_tool/lib/shared/babel/__test__/es2021/NumericSeparator.test.js +23 -0
  219. package/packages/client_build_tool/lib/shared/babel/__test__/es2021/logicalOperatorAssignments.test.js +25 -0
  220. package/packages/client_build_tool/lib/shared/babel/__test__/es2021/promiseAny.test.js +16 -0
  221. package/packages/client_build_tool/lib/shared/babel/__test__/es2021/stringReplaceMethod.test.js +16 -0
  222. package/packages/client_build_tool/lib/shared/babel/__test__/es2022/Array-atMethod.test.js +13 -0
  223. package/packages/client_build_tool/lib/shared/babel/__test__/es2022/ObjectKeyCheck.test.js +27 -0
  224. package/packages/client_build_tool/lib/shared/babel/__test__/es2022/ObjecthasOwnMethod.test.js +19 -0
  225. package/packages/client_build_tool/lib/shared/babel/__test__/es2022/RegexMatchIndices.test.js +20 -0
  226. package/packages/client_build_tool/lib/shared/babel/__test__/es2022/String-atMethod.test.js +15 -0
  227. package/packages/client_build_tool/lib/shared/babel/__test__/es2022/error.Cause.test.js +23 -0
  228. package/packages/client_build_tool/lib/shared/babel/__test__/es2022/keysCheckinPrivateFields.test.js +27 -0
  229. package/packages/client_build_tool/lib/shared/babel/__test__/es2022/privateMethodsAndFields.test.js +23 -0
  230. package/packages/client_build_tool/lib/shared/babel/__test__/es2022/staticFieldsAndMethod.test.js +54 -0
  231. package/packages/client_build_tool/lib/shared/babel/__test__/es2022/topLevelAwait.test.js +11 -0
  232. package/packages/client_build_tool/lib/shared/babel/__test__/es2022/weakRef.test.js +17 -0
  233. package/packages/client_build_tool/lib/shared/babel/__test__/utilities.js +28 -0
  234. package/packages/client_build_tool/lib/shared/babel/babelWebConfig.js +49 -0
  235. package/packages/client_build_tool/lib/shared/babel/runBabelForJSFile.js +24 -0
  236. package/packages/client_build_tool/lib/shared/bundler/webpack/common/decidePublicPath.js +42 -0
  237. package/packages/client_build_tool/lib/shared/bundler/webpack/common/libAlias.js +31 -0
  238. package/packages/client_build_tool/lib/shared/bundler/webpack/common/modeUtils.js +31 -0
  239. package/packages/client_build_tool/lib/shared/bundler/webpack/common/nameTemplates.js +70 -0
  240. package/packages/client_build_tool/lib/shared/bundler/webpack/common/resourceBasedPublicPath.js +21 -0
  241. package/packages/client_build_tool/lib/shared/bundler/webpack/cssLoaders.js +16 -0
  242. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/AddManifestJson/addFilesToManifestJson.js +19 -0
  243. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/AddManifestJson/utilities.js +18 -0
  244. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/CdnChangePlugin.js +102 -0
  245. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/EFCTemplatePlugin.js +112 -0
  246. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/ContributionGuide.md +11 -0
  247. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/I18nFilesEmitPlugin.js +172 -0
  248. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/I18nKeysIdentifer.js +76 -0
  249. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/I18nRuntimeDealerPlugin.js +203 -0
  250. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/I18nSplit.md +95 -0
  251. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/LocaleChunkAssetsStore.js +73 -0
  252. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/ModulesI18nKeysStore.js +88 -0
  253. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/README.md +25 -0
  254. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/constants.js +29 -0
  255. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/createHash.js +24 -0
  256. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/getI18nLoadingRuntimeModule.js +76 -0
  257. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/index.js +39 -0
  258. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/iterateModulesInChunk.js +50 -0
  259. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/optionsHandler.js +68 -0
  260. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/pathCreator.js +23 -0
  261. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/readI18nValues.js +29 -0
  262. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/templateFileName.js +43 -0
  263. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/templateHashHelpers.js +77 -0
  264. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/terser/__test__/classesAndObject.test.js +56 -0
  265. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/terser/__test__/conditionalOperation.test.js +154 -0
  266. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/terser/__test__/function.test.js +89 -0
  267. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/terser/__test__/function2.test.js +71 -0
  268. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/terser/__test__/loop.test.js +112 -0
  269. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/terser/__test__/minifyBooleanValues.test.js +43 -0
  270. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/terser/__test__/minimizeVariableNames.test.js +45 -0
  271. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/terser/__test__/promise.test.js +53 -0
  272. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/terser/__test__/removeCommentsAndEmptySpace.test.js +13 -0
  273. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/terser/__test__/removeUnusedStrings.test.js +14 -0
  274. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/terser/__test__/variableDeclaration.test.js +30 -0
  275. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/utils/collectI18nKeys.js +66 -0
  276. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/utils/getChunkModules.js +13 -0
  277. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/utils/hashUtils.js +19 -0
  278. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/utils/index.js +31 -0
  279. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/utils/propertiesUtils.js +129 -0
  280. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/InitialHtmlPlugin.js +54 -0
  281. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/ManifestJsonPlugin/__test__/addFilesNamesToManifestJson.test.js +51 -0
  282. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/ManifestJsonPlugin/__test__/createInitialEntries.test.js +95 -0
  283. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/ManifestJsonPlugin/__test__/removeHashFromFileName.test.js +91 -0
  284. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/ManifestJsonPlugin/addFilesNamesToManifestJson.js +24 -0
  285. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/ManifestJsonPlugin/createInitialEntries.js +17 -0
  286. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/ManifestJsonPlugin/createManifestJson.js +35 -0
  287. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/ManifestJsonPlugin/findInitialFileNames.js +18 -0
  288. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/ManifestJsonPlugin/index.js +44 -0
  289. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/ManifestJsonPlugin/removeHashFromFileName.js +18 -0
  290. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/RTLSplitPlugin.js +1 -0
  291. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/ResourceHintsPlugin.js +165 -0
  292. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/RtlSplitPlugin/OverwriteCssPathForRTL.js +62 -0
  293. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/RtlSplitPlugin/RtlCssPlugin.js +84 -0
  294. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/RtlSplitPlugin/RtrSplit.md +34 -0
  295. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/RtlSplitPlugin/replaceCssDirTemplate.js +27 -0
  296. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/SelectorWeightPlugin/classHandling.js +20 -0
  297. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/SelectorWeightPlugin/index.js +78 -0
  298. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/SelectorWeightPlugin/selectorWeightPrefixAdder.js +51 -0
  299. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/SelectorWeightPlugin/windowsModification.js +16 -0
  300. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/ServiceWorkerPlugin.js +110 -0
  301. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/SourceMapPlugin/index.js +38 -0
  302. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/UglifyCSSPlugin/__test__/uglifyCss1.test.js +74 -0
  303. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/UglifyCSSPlugin/__test__/uglifycss.test.js +64 -0
  304. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/UglifyCSSPlugin/__test__/utilities.js +28 -0
  305. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/UglifyCSSPlugin/index.js.js +49 -0
  306. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/VariableConversionCollector/ErrorHandler.js +62 -0
  307. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/VariableConversionCollector/index.js +361 -0
  308. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/emitAsset.js +14 -0
  309. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/getInitialAssetsFuncTemplate.js +57 -0
  310. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/getInitialI18nAssetsArrayStr.js +87 -0
  311. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/terser/__test__/classesAndObject.test.js +56 -0
  312. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/terser/__test__/conditionalOperation.test.js +154 -0
  313. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/terser/__test__/function.test.js +89 -0
  314. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/terser/__test__/function2.test.js +71 -0
  315. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/terser/__test__/loop.test.js +112 -0
  316. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/terser/__test__/minifyBooleanValues.test.js +43 -0
  317. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/terser/__test__/minimizeVariableNames.test.js +45 -0
  318. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/terser/__test__/promise.test.js +53 -0
  319. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/terser/__test__/removeCommentsAndEmptySpace.test.js +13 -0
  320. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/terser/__test__/removeUnusedStrings.test.js +14 -0
  321. package/packages/client_build_tool/lib/shared/bundler/webpack/custom_plugins/terser/__test__/variableDeclaration.test.js +30 -0
  322. package/packages/client_build_tool/lib/shared/bundler/webpack/entryConfig.js +28 -0
  323. package/packages/client_build_tool/lib/shared/bundler/webpack/externals.js +13 -0
  324. package/packages/client_build_tool/lib/shared/bundler/webpack/getCSSLoaders.js +27 -0
  325. package/packages/client_build_tool/lib/shared/bundler/webpack/getSourceMapType.js +10 -0
  326. package/packages/client_build_tool/lib/shared/bundler/webpack/jsLoaders.js +17 -0
  327. package/packages/client_build_tool/lib/shared/bundler/webpack/loaderConfigs/assetLoaders.js +12 -0
  328. package/packages/client_build_tool/lib/shared/bundler/webpack/loaderConfigs/babelLoaderConfig.js +18 -0
  329. package/packages/client_build_tool/lib/shared/bundler/webpack/loaderConfigs/checkIsPatternsMatchFilename.js +52 -0
  330. package/packages/client_build_tool/lib/shared/bundler/webpack/loaderConfigs/configHtmlTemplateLoader.js +18 -0
  331. package/packages/client_build_tool/lib/shared/bundler/webpack/loaderConfigs/configPostCssLoader.js +37 -0
  332. package/packages/client_build_tool/lib/shared/bundler/webpack/loaderConfigs/configWebWorkerLoader.js +21 -0
  333. package/packages/client_build_tool/lib/shared/bundler/webpack/loaderConfigs/configsAssetsLoaders.js +138 -0
  334. package/packages/client_build_tool/lib/shared/bundler/webpack/loaderConfigs/cssClassNameGenerate.js +59 -0
  335. package/packages/client_build_tool/lib/shared/bundler/webpack/loaderConfigs/getCssLoaderOptions.js +21 -0
  336. package/packages/client_build_tool/lib/shared/bundler/webpack/loaders/workerLoader.js +133 -0
  337. package/packages/client_build_tool/lib/shared/bundler/webpack/optimizationConfig.js +43 -0
  338. package/packages/client_build_tool/lib/shared/bundler/webpack/outputConfig.js +28 -0
  339. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configBundleAnalyzer.js +40 -0
  340. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configCSSMinifierPlugin.js +24 -0
  341. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configCdnChangePlugin.js +27 -0
  342. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configCopyPublicFolders.js +80 -0
  343. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configEFCTemplatePlugin.js +46 -0
  344. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configEnvVariables.js +27 -0
  345. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configHtmlWebpackPlugin.js +56 -0
  346. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configI18nSplitPlugin.js +41 -0
  347. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configIgnorePlugin.js +16 -0
  348. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configManifestJsonPlugin.js +32 -0
  349. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configMiniCSSExtractPlugin.js +23 -0
  350. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configProgressPlugin.js +24 -0
  351. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configResourceHintsPlugin.js +19 -0
  352. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configRtlCssPlugin.js +27 -0
  353. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configSelectorWeightPlugin.js +28 -0
  354. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configServiceWorkerPlugin.js +40 -0
  355. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configSourceMapPlugin.js +20 -0
  356. package/packages/client_build_tool/lib/shared/bundler/webpack/pluginConfigs/configVariableConversionPlugin.js +25 -0
  357. package/packages/client_build_tool/lib/shared/bundler/webpack/plugins.js +48 -0
  358. package/packages/client_build_tool/lib/shared/bundler/webpack/resolvers.js +49 -0
  359. package/packages/client_build_tool/lib/shared/bundler/webpack/splitChunksConfig.js +128 -0
  360. package/packages/client_build_tool/lib/shared/bundler/webpack/statsConfig.js +21 -0
  361. package/packages/client_build_tool/lib/shared/bundler/webpack/utils/index.js +26 -0
  362. package/packages/client_build_tool/lib/shared/bundler/webpack/utils/updateArrayWithDefault.js +18 -0
  363. package/packages/client_build_tool/lib/shared/bundler/webpack/webpackBuild.js +27 -0
  364. package/packages/client_build_tool/lib/shared/bundler/webpack/webpackConfig.js +52 -0
  365. package/packages/client_build_tool/lib/shared/commands-utils/doBasicRequirementCheck.js +17 -0
  366. package/packages/client_build_tool/lib/shared/commands-utils/getCliPath.js +39 -0
  367. package/packages/client_build_tool/lib/shared/commands-utils/index.js +29 -0
  368. package/packages/client_build_tool/lib/shared/commands-utils/log.js +13 -0
  369. package/packages/client_build_tool/lib/shared/commands-utils/readArgsFormCommandLine.js +11 -0
  370. package/packages/client_build_tool/lib/shared/commands-utils/readOptionFormCommandLine.js +11 -0
  371. package/packages/client_build_tool/lib/shared/commands-utils/spawnSyncIO.js +38 -0
  372. package/packages/client_build_tool/lib/shared/constants.js +45 -0
  373. package/packages/client_build_tool/lib/shared/fileUtils/copyFile.js +38 -0
  374. package/packages/client_build_tool/lib/shared/fileUtils/directoryIterator.js +21 -0
  375. package/packages/client_build_tool/lib/shared/fileUtils/watchRun.js +100 -0
  376. package/packages/client_build_tool/lib/shared/postcss/__test__/ignoreTestCases.test.js +80 -0
  377. package/packages/client_build_tool/lib/shared/postcss/__test__/postcss-rtl-all-cases.test.js +119 -0
  378. package/packages/client_build_tool/lib/shared/postcss/__test__/postcssRtl.spec.js +34 -0
  379. package/packages/client_build_tool/lib/shared/postcss/custom_postcss_plugins/EmptyPlugin.js +21 -0
  380. package/packages/client_build_tool/lib/shared/postcss/custom_postcss_plugins/HoverActivePlugin/constants.js +10 -0
  381. package/packages/client_build_tool/lib/shared/postcss/custom_postcss_plugins/HoverActivePlugin/handleIgnores.js +66 -0
  382. package/packages/client_build_tool/lib/shared/postcss/custom_postcss_plugins/HoverActivePlugin/index.js +136 -0
  383. package/packages/client_build_tool/lib/shared/postcss/custom_postcss_plugins/HoverActivePlugin/insertBefore.js +32 -0
  384. package/packages/client_build_tool/lib/shared/postcss/custom_postcss_plugins/HoverActivePlugin/isPreviouslyProcessed.js +20 -0
  385. package/packages/client_build_tool/lib/shared/postcss/custom_postcss_plugins/HoverActivePlugin/replaceUtils.js +20 -0
  386. package/packages/client_build_tool/lib/shared/postcss/custom_postcss_plugins/HoverActivePlugin/separateHoveredSelectorAndNormalSelector.js +24 -0
  387. package/packages/client_build_tool/lib/shared/postcss/custom_postcss_plugins/HoverActivePlugin/specialCases.js +43 -0
  388. package/packages/client_build_tool/lib/shared/postcss/custom_postcss_plugins/HoverActivePlugin/typeCheckUtils.js +52 -0
  389. package/packages/client_build_tool/lib/shared/postcss/custom_postcss_plugins/RTLSplitPlugin.js +139 -0
  390. package/packages/client_build_tool/lib/shared/postcss/custom_postcss_plugins/SelectorReplace.js +90 -0
  391. package/packages/client_build_tool/lib/shared/postcss/custom_postcss_plugins/ValueReplacer.js +57 -0
  392. package/packages/client_build_tool/lib/shared/postcss/custom_postcss_plugins/VariableModificationPlugin/index.js +343 -0
  393. package/packages/client_build_tool/lib/shared/postcss/filterPluginsAllowedForSpecficFile.js +55 -0
  394. package/packages/client_build_tool/lib/shared/postcss/getAllowedPostCssPlugins.js +30 -0
  395. package/packages/client_build_tool/lib/shared/postcss/getSpecificPostCssPlugin.js +58 -0
  396. package/packages/client_build_tool/lib/shared/postcss/runPostCssForCssFile.js +37 -0
  397. package/packages/client_build_tool/lib/shared/server/configWebpackDevMiddleware.js +41 -0
  398. package/packages/client_build_tool/lib/shared/server/corsHandling.js +21 -0
  399. package/packages/client_build_tool/lib/shared/server/getIp.js +30 -0
  400. package/packages/client_build_tool/lib/shared/server/getServerURL.js +29 -0
  401. package/packages/client_build_tool/lib/shared/server/httpsOptions.js +46 -0
  402. package/packages/client_build_tool/lib/shared/server/initExpressApp.js +19 -0
  403. package/packages/client_build_tool/lib/shared/server/initialHTMLHandling.js +99 -0
  404. package/packages/client_build_tool/lib/shared/server/mockApiHandler.js +60 -0
  405. package/packages/client_build_tool/lib/shared/server/mockServer.js +41 -0
  406. package/packages/client_build_tool/lib/shared/server/serveContextFiles.js +25 -0
  407. package/packages/client_build_tool/lib/shared/server/serverBywebpackDevMiddleware.js +36 -0
  408. package/packages/client_build_tool/lib/shared/server/startHttpServer.js +26 -0
  409. package/packages/client_build_tool/lib/shared/server/startHttpsServer.js +38 -0
  410. package/packages/client_build_tool/lib/shared/server/unwanted/addHttp2Server.js +41 -0
  411. package/packages/client_build_tool/lib/shared/server/unwanted/configWebpackDevMiddleware.js +44 -0
  412. package/packages/client_build_tool/lib/shared/server/unwanted/mockApiSupport.js +19 -0
  413. package/packages/client_build_tool/lib/shared/server/unwanted/websocketMockSetup.js +48 -0
  414. package/packages/client_build_tool/lib/shared/server/urlConcat.js +32 -0
  415. package/packages/client_build_tool/lib/shared/utils/requireLocalOrGlobal.js +81 -0
  416. package/packages/client_build_tool/lib/shared/utils/utils.js +1 -0
  417. package/packages/client_build_tool/lib/shared/utils/versionPrint.js +20 -0
  418. package/packages/client_build_tool/node_modules/history/CHANGES.md +395 -0
  419. package/packages/client_build_tool/node_modules/history/DOMUtils.js +3 -0
  420. package/packages/client_build_tool/node_modules/history/ExecutionEnvironment.js +3 -0
  421. package/packages/client_build_tool/node_modules/history/LICENSE +21 -0
  422. package/packages/client_build_tool/node_modules/history/LocationUtils.js +3 -0
  423. package/packages/client_build_tool/node_modules/history/PathUtils.js +3 -0
  424. package/packages/client_build_tool/node_modules/history/README.md +282 -0
  425. package/packages/client_build_tool/node_modules/history/cjs/history.js +933 -0
  426. package/packages/client_build_tool/node_modules/history/cjs/history.min.js +1 -0
  427. package/packages/client_build_tool/node_modules/history/createBrowserHistory.js +3 -0
  428. package/packages/client_build_tool/node_modules/history/createHashHistory.js +3 -0
  429. package/packages/client_build_tool/node_modules/history/createMemoryHistory.js +3 -0
  430. package/packages/client_build_tool/node_modules/history/createTransitionManager.js +3 -0
  431. package/packages/client_build_tool/node_modules/history/es/DOMUtils.js +7 -0
  432. package/packages/client_build_tool/node_modules/history/es/ExecutionEnvironment.js +7 -0
  433. package/packages/client_build_tool/node_modules/history/es/LocationUtils.js +7 -0
  434. package/packages/client_build_tool/node_modules/history/es/PathUtils.js +7 -0
  435. package/packages/client_build_tool/node_modules/history/es/createBrowserHistory.js +7 -0
  436. package/packages/client_build_tool/node_modules/history/es/createHashHistory.js +7 -0
  437. package/packages/client_build_tool/node_modules/history/es/createMemoryHistory.js +7 -0
  438. package/packages/client_build_tool/node_modules/history/es/createTransitionManager.js +7 -0
  439. package/packages/client_build_tool/node_modules/history/es/warnAboutDeprecatedESMImport.js +35 -0
  440. package/packages/client_build_tool/node_modules/history/esm/history.js +904 -0
  441. package/packages/client_build_tool/node_modules/history/index.js +7 -0
  442. package/packages/client_build_tool/node_modules/history/package.json +120 -0
  443. package/packages/client_build_tool/node_modules/history/umd/history.js +1059 -0
  444. package/packages/client_build_tool/node_modules/history/umd/history.min.js +1 -0
  445. package/packages/client_build_tool/node_modules/history/warnAboutDeprecatedCJSRequire.js +35 -0
  446. package/postpublish.js +8 -8
  447. package/result.json +1 -0
  448. package/templates/app/.eslintrc.js +140 -140
  449. package/templates/app/README.md +12 -12
  450. package/templates/app/app/index.html +24 -24
  451. package/templates/app/app/properties/ApplicationResources_en_US.properties +1 -1
  452. package/templates/app/app/properties/i18nkeys.json +3 -3
  453. package/templates/app/docs/all.html +69 -69
  454. package/templates/app/mockapi/index.js +18 -18
  455. package/templates/app/package.json +37 -37
  456. package/templates/app/src/actions/SampleActions/index.js +37 -37
  457. package/templates/app/src/actions/index.js +65 -65
  458. package/templates/app/src/appUrls.js +19 -19
  459. package/templates/app/src/components/Alert/Alert.js +134 -134
  460. package/templates/app/src/components/Alert/Alert.module.css +79 -79
  461. package/templates/app/src/components/FreezeLayer/FreezeLayer.css +37 -37
  462. package/templates/app/src/components/FreezeLayer/FreezeLayer.js +84 -84
  463. package/templates/app/src/components/Sample/Sample.module.css +11 -11
  464. package/templates/app/src/components/Sample/SampleList.js +61 -61
  465. package/templates/app/src/components/Slider/Slider.css +41 -41
  466. package/templates/app/src/components/Slider/Slider.js +55 -55
  467. package/templates/app/src/containers/AlertContainer/index.js +15 -15
  468. package/templates/app/src/containers/AppContainer/index.js +96 -96
  469. package/templates/app/src/containers/AppContainer/index.module.css +27 -27
  470. package/templates/app/src/containers/CustomMatch/index.js +65 -65
  471. package/templates/app/src/containers/DevTools/index.js +10 -10
  472. package/templates/app/src/containers/Header/index.js +67 -67
  473. package/templates/app/src/containers/Header/index.module.css +43 -43
  474. package/templates/app/src/containers/Redirect/index.js +63 -63
  475. package/templates/app/src/containers/Redirector/index.js +47 -47
  476. package/templates/app/src/containers/SampleListContainer/ListContainer.js +42 -42
  477. package/templates/app/src/containers/SampleListContainer/ListContainer.module.css +3 -3
  478. package/templates/app/src/historyChange.js +5 -5
  479. package/templates/app/src/index.html +10 -10
  480. package/templates/app/src/index.js +24 -24
  481. package/templates/app/src/middleware/PromiseMiddleware.js +59 -59
  482. package/templates/app/src/reducers/alertData.js +11 -11
  483. package/templates/app/src/reducers/index.js +6 -6
  484. package/templates/app/src/reducers/samples.js +19 -19
  485. package/templates/app/src/store/configureStore.dev.js +51 -51
  486. package/templates/app/src/store/configureStore.js +5 -5
  487. package/templates/app/src/store/configureStore.prod.js +26 -26
  488. package/templates/app/src/util/Common.js +5 -5
  489. package/templates/app/src/util/RequestAPI.js +132 -132
  490. package/templates/docs/all.html +250 -249
  491. package/templates/docs/component.html +179 -178
  492. package/templates/docs/components.html +222 -221
  493. package/templates/docs/css/b.min.css +6 -6
  494. package/templates/docs/css/component.css +42 -42
  495. package/templates/docs/css/componentTest.css +6 -6
  496. package/templates/docs/css/hopscotch.css +585 -585
  497. package/templates/docs/css/markdown.css +202 -0
  498. package/templates/docs/css/style.css +989 -1022
  499. package/templates/docs/impactReportTemplate.html +154 -154
  500. package/templates/docs/index.html +1665 -1501
  501. package/templates/docs/js/active-line.js +72 -72
  502. package/templates/docs/js/b.min.js +7 -7
  503. package/templates/docs/js/codemirror.js +9680 -9680
  504. package/templates/docs/js/designTokens.js +334 -334
  505. package/templates/docs/js/j.min.js +4 -4
  506. package/templates/docs/js/javascript.js +874 -874
  507. package/templates/docs/js/matchbrackets.js +145 -145
  508. package/unittest/index.html +37 -0
  509. package/lib/plugins/composeCommonPlugin.js +0 -30
  510. package/lib/postcss-plugins/variableModifier.js +0 -244
@@ -1,1022 +1,989 @@
1
- /* cyrillic-ext */
2
- @font-face {
3
- font-family: 'Regular';
4
- font-style: normal;
5
- font-weight: 400;
6
- src: local('Open Sans Regular'), local('OpenSans-Regular'),
7
- url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFWJ0bf8pkAp6a.woff2)
8
- format('woff2');
9
- unicode-range: U + 0460-052f, U + 1c80-1c88, U + 20b4, U + 2de0-2dff,
10
- U + A640-A69F, U + FE2E-FE2F;
11
- }
12
- /* cyrillic */
13
- @font-face {
14
- font-family: 'Regular';
15
- font-style: normal;
16
- font-weight: 400;
17
- src: local('Open Sans Regular'), local('OpenSans-Regular'),
18
- url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFUZ0bf8pkAp6a.woff2)
19
- format('woff2');
20
- unicode-range: U + 0400-045f, U + 0490-0491, U + 04b0-04b1, U + 2116;
21
- }
22
- /* greek-ext */
23
- @font-face {
24
- font-family: 'Regular';
25
- font-style: normal;
26
- font-weight: 400;
27
- src: local('Open Sans Regular'), local('OpenSans-Regular'),
28
- url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFWZ0bf8pkAp6a.woff2)
29
- format('woff2');
30
- unicode-range: U + 1f00-1fff;
31
- }
32
- /* greek */
33
- @font-face {
34
- font-family: 'Regular';
35
- font-style: normal;
36
- font-weight: 400;
37
- src: local('Open Sans Regular'), local('OpenSans-Regular'),
38
- url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFVp0bf8pkAp6a.woff2)
39
- format('woff2');
40
- unicode-range: U + 0370-03ff;
41
- }
42
- /* vietnamese */
43
- @font-face {
44
- font-family: 'Regular';
45
- font-style: normal;
46
- font-weight: 400;
47
- src: local('Open Sans Regular'), local('OpenSans-Regular'),
48
- url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFWp0bf8pkAp6a.woff2)
49
- format('woff2');
50
- unicode-range: U + 0102-0103, U + 0110-0111, U + 1ea0-1ef9, U + 20ab;
51
- }
52
- /* latin-ext */
53
- @font-face {
54
- font-family: 'Regular';
55
- font-style: normal;
56
- font-weight: 400;
57
- src: local('Open Sans Regular'), local('OpenSans-Regular'),
58
- url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFW50bf8pkAp6a.woff2)
59
- format('woff2');
60
- unicode-range: U + 0100-024f, U + 0259, U + 1-1eff, U + 2020, U + 20a0-20ab,
61
- U + 20ad-20cf, U + 2113, U + 2c60-2c7f, U + A720-A7FF;
62
- }
63
- /* latin */
64
- @font-face {
65
- font-family: 'Regular';
66
- font-style: normal;
67
- font-weight: 400;
68
- src: local('Open Sans Regular'), local('OpenSans-Regular'),
69
- url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFVZ0bf8pkAg.woff2)
70
- format('woff2');
71
- unicode-range: U + 0000-00ff, U + 0131, U + 0152-0153, U + 02bb-02bc, U + 02c6,
72
- U + 02da, U + 02dc, U + 2000-206f, U + 2074, U + 20ac, U + 2122, U + 2191,
73
- U + 2193, U + 2212, U + 2215, U + FEFF, U + FFFD;
74
- }
75
- /* cyrillic-ext */
76
- @font-face {
77
- font-family: 'Semibold';
78
- font-style: normal;
79
- font-weight: 700;
80
- src: local('Open Sans Bold'), local('OpenSans-Bold'),
81
- url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOX-hpKKSTj5PW.woff2)
82
- format('woff2');
83
- unicode-range: U + 0460-052f, U + 1c80-1c88, U + 20b4, U + 2de0-2dff,
84
- U + A640-A69F, U + FE2E-FE2F;
85
- }
86
- /* cyrillic */
87
- @font-face {
88
- font-family: 'Semibold';
89
- font-style: normal;
90
- font-weight: 700;
91
- src: local('Open Sans Bold'), local('OpenSans-Bold'),
92
- url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOVuhpKKSTj5PW.woff2)
93
- format('woff2');
94
- unicode-range: U + 0400-045f, U + 0490-0491, U + 04b0-04b1, U + 2116;
95
- }
96
- /* greek-ext */
97
- @font-face {
98
- font-family: 'Semibold';
99
- font-style: normal;
100
- font-weight: 700;
101
- src: local('Open Sans Bold'), local('OpenSans-Bold'),
102
- url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOXuhpKKSTj5PW.woff2)
103
- format('woff2');
104
- unicode-range: U + 1f00-1fff;
105
- }
106
- /* greek */
107
- @font-face {
108
- font-family: 'Semibold';
109
- font-style: normal;
110
- font-weight: 700;
111
- src: local('Open Sans Bold'), local('OpenSans-Bold'),
112
- url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOUehpKKSTj5PW.woff2)
113
- format('woff2');
114
- unicode-range: U + 0370-03ff;
115
- }
116
- /* vietnamese */
117
- @font-face {
118
- font-family: 'Semibold';
119
- font-style: normal;
120
- font-weight: 700;
121
- src: local('Open Sans Bold'), local('OpenSans-Bold'),
122
- url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOXehpKKSTj5PW.woff2)
123
- format('woff2');
124
- unicode-range: U + 0102-0103, U + 0110-0111, U + 1ea0-1ef9, U + 20ab;
125
- }
126
- /* latin-ext */
127
- @font-face {
128
- font-family: 'Semibold';
129
- font-style: normal;
130
- font-weight: 700;
131
- src: local('Open Sans Bold'), local('OpenSans-Bold'),
132
- url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOXOhpKKSTj5PW.woff2)
133
- format('woff2');
134
- unicode-range: U + 0100-024f, U + 0259, U + 1-1eff, U + 2020, U + 20a0-20ab,
135
- U + 20ad-20cf, U + 2113, U + 2c60-2c7f, U + A720-A7FF;
136
- }
137
- /* latin */
138
- @font-face {
139
- font-family: 'Semibold';
140
- font-style: normal;
141
- font-weight: 700;
142
- src: local('Open Sans Bold'), local('OpenSans-Bold'),
143
- url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOUuhpKKSTjw.woff2)
144
- format('woff2');
145
- unicode-range: U + 0000-00ff, U + 0131, U + 0152-0153, U + 02bb-02bc, U + 02c6,
146
- U + 02da, U + 02dc, U + 2000-206f, U + 2074, U + 20ac, U + 2122, U + 2191,
147
- U + 2193, U + 2212, U + 2215, U + FEFF, U + FFFD;
148
- }
149
-
150
- *,
151
- :after,
152
- :before {
153
- margin: 0;
154
- padding: 0;
155
- outline: 0;
156
- border: 0;
157
- box-sizing: border-box;
158
- -webkit-box-sizing: border-box;
159
- -moz-box-sizing: border-box;
160
- -ms-box-sizing: border-box;
161
- }
162
- a {
163
- text-decoration: none;
164
- }
165
-
166
- /* FLex Assets*/
167
- .dflex {
168
- display: -webkit-box;
169
- display: -ms-flexbox;
170
- display: flex;
171
- height: 100%;
172
- width: 100%;
173
- }
174
- .flexwrap {
175
- -ms-flex-wrap: wrap;
176
- flex-wrap: wrap;
177
- }
178
- .flexcolumn {
179
- -webkit-box-orient: vertical;
180
- -webkit-box-direction: normal;
181
- -webkit-flex-direction: column;
182
- -ms-flex-direction: column;
183
- flex-direction: column;
184
- }
185
- .flexrow {
186
- -webkit-box-orient: horizontal;
187
- -webkit-box-direction: normal;
188
- -webkit-flex-direction: row;
189
- -ms-flex-direction: row;
190
- flex-direction: row;
191
- }
192
- .flexrowreverse {
193
- -webkit-box-orient: horizontal;
194
- -webkit-box-direction: reverse;
195
- -webkit-flex-direction: row-reverse;
196
- -ms-flex-direction: row-reverse;
197
- flex-direction: row-reverse;
198
- }
199
- .flexcolumnreverse {
200
- -webkit-box-orient: vertical;
201
- -webkit-box-direction: reverse;
202
- -webkit-flex-direction: column-reverse;
203
- -ms-flex-direction: column-reverse;
204
- flex-direction: column-reverse;
205
- }
206
- .flexgrow {
207
- -webkit-box-flex: 1;
208
- -ms-flex-positive: 1;
209
- flex-grow: 1;
210
- min-height: 0;
211
- min-width: 0;
212
- }
213
- .flexshrink {
214
- flex-shrink: 0;
215
- -moz-flex-shrink: 0;
216
- -webkit-flex-shrink: 0;
217
- -ms-flex-shrink: 0;
218
- }
219
- .flexbasis {
220
- flex-basis: 0%;
221
- -webkit-flex-basis: 0%;
222
- -moz-flex-basis: 0%;
223
- -ms-flex-basis: 0%;
224
- }
225
- .alignVertical {
226
- -webkit-box-align: center;
227
- -ms-flex-align: center;
228
- align-items: center;
229
- }
230
- .alignFstart {
231
- -webkit-box-align: start;
232
- -ms-flex-align: start;
233
- align-items: flex-start;
234
- }
235
- .alignFend {
236
- -webkit-box-align: end;
237
- -ms-flex-align: end;
238
- align-items: flex-end;
239
- }
240
- .alignHorizontal {
241
- -webkit-box-pack: center;
242
- -ms-flex-pack: center;
243
- justify-content: center;
244
- }
245
- .dotted {
246
- overflow: hidden;
247
- white-space: nowrap;
248
- word-wrap: normal;
249
- text-overflow: ellipsis;
250
- }
251
- .offSelection {
252
- -webkit-user-select: none;
253
- -moz-user-select: none;
254
- -ms-user-select: none;
255
- user-select: none;
256
- }
257
- .scrollY {
258
- overflow-y: auto;
259
- overflow-x: hidden;
260
- }
261
- body {
262
- background: #fff;
263
- font-size: 14px;
264
- overflow: hidden;
265
- font-family: Regular;
266
- }
267
-
268
- main {
269
- height: 100vh !important;
270
- animation: slide 0.4s ease 0s normal;
271
- }
272
- @keyframes slide {
273
- 0% {
274
- opacity: 0;
275
- }
276
- 100% {
277
- opacity: 1;
278
- }
279
- }
280
- .menuBar {
281
- width: 220px;
282
- border-right: 1px solid #0e1c27;
283
- transition: transform 0.3s;
284
- background: #1d2b36;
285
- }
286
- .isMenuClose {
287
- position: absolute;
288
- top: 0;
289
- left: 0;
290
- bottom: 0;
291
- transform: translateX(-110%);
292
- transition: transform 0.3s;
293
- }
294
-
295
- .menuContainer {
296
- padding-bottom: 5px;
297
- }
298
- .logoPart {
299
- height: 50px;
300
- border-bottom: 1px solid #16222b;
301
- line-height: 50px;
302
- padding-left: 5px;
303
- justify-content: space-between;
304
- }
305
- .logoPart img {
306
- max-width: 100%;
307
- width: 130px;
308
- vertical-align: middle;
309
- }
310
- .searchPart {
311
- padding: 10px;
312
- border-bottom: 1px solid #16222b;
313
- }
314
- .searchContainer {
315
- position: relative;
316
- }
317
- .searchClose {
318
- position: absolute;
319
- top: 50%;
320
- right: 5px;
321
- width: 16px;
322
- padding: 5px;
323
- background: rgba(102, 106, 108, 0.57);
324
- border-radius: 30px;
325
- text-align: center;
326
- height: 16px;
327
- transform: translateY(-50%);
328
- line-height: 0;
329
- cursor: pointer;
330
- }
331
- .searchClose img {
332
- width: 100%;
333
- height: 100%;
334
- }
335
- .versionPart {
336
- padding: 4px 4px 7px;
337
- text-align: center;
338
- background: #0c1115;
339
- }
340
- .versionPart span,
341
- .tools span {
342
- color: #fff;
343
- font-size: 12px;
344
- }
345
- .tools img {
346
- display: inline-block;
347
- vertical-align: middle;
348
- margin-right: 5px;
349
- }
350
- .tools {
351
- padding: 4px 4px 7px;
352
- background-color: #00995a;
353
- cursor: pointer;
354
- text-align: center;
355
- }
356
- .tools:hover {
357
- background-color: #07ab67;
358
- }
359
- .sliderContainer {
360
- position: relative;
361
- }
362
- .slider {
363
- position: absolute;
364
- top: 0;
365
- left: 0;
366
- right: 0;
367
- bottom: 0;
368
- overflow-y: auto;
369
- background-color: #1d2b36;
370
- transform: translateX(-100%);
371
- transition: transform 0.3s;
372
- }
373
- .slider.sopen {
374
- transform: translateX(0);
375
- }
376
- .sliderHeader {
377
- position: relative;
378
- background-color: #e79a2a;
379
- text-align: left;
380
- padding-left: 10px;
381
- }
382
- .sliderFormContainer {
383
- padding: 20px 10px;
384
- }
385
- .sliderInputContainer {
386
- margin-bottom: 12px;
387
- }
388
- .sliderInputTitle {
389
- color: #999;
390
- font-size: 13px;
391
- letter-spacing: 0.1px;
392
- padding-bottom: 4px;
393
- display: block;
394
- }
395
- .sliderInput {
396
- background: rgb(27, 27, 43, 0.8);
397
- width: 100%;
398
- border-radius: 3px;
399
- padding: 7px 5px;
400
- color: #fff;
401
- font-size: 13px;
402
- }
403
- .sliderResult {
404
- position: relative;
405
- }
406
- .copyResult {
407
- position: absolute;
408
- top: 0;
409
- right: 0;
410
- bottom: 0;
411
- width: 30px;
412
- text-align: center;
413
- padding: 7px;
414
- background: #01985b;
415
- border-radius: 0 3px 3px 0;
416
- cursor: pointer;
417
- }
418
- .copyResult:hover {
419
- background: #03b7fe;
420
- }
421
- .copyResult img {
422
- width: 100%;
423
- height: 100%;
424
- }
425
- .copyTxtHiden {
426
- height: 0px !important;
427
- width: 0px !important;
428
- font-size: 0px !important;
429
- padding: 0px !important;
430
- }
431
- .mainMenu {
432
- padding: 10px;
433
- cursor: pointer;
434
- font-size: 13px;
435
- transition: all 0.3s;
436
- }
437
- .mainMenuActive,
438
- .mainMenu:hover {
439
- background-color: #162029;
440
- }
441
- .mainMenuActive .mainMenuArrow {
442
- transform: rotate(90deg);
443
- }
444
- .mainMenutitle {
445
- max-width: 100%;
446
- color: #fff;
447
- text-transform: capitalize;
448
- }
449
- .mainMenuCount {
450
- padding: 3px 5px;
451
- background: #008e4f;
452
- border-radius: 15px;
453
- font-size: 9px;
454
- color: #fff;
455
- margin-right: 10px;
456
- margin-left: 5px;
457
- min-width: 18px;
458
- text-align: center;
459
- }
460
- .mainMenuArrow {
461
- transition: all 0.3s;
462
- height: 12px;
463
- width: 12px;
464
- }
465
- .menuHideLeft {
466
- width: 220px;
467
- padding-bottom: 20px;
468
- border-right: 1px solid #dbd8d8;
469
- transition: margin-left 0.5s ease;
470
- background: #f4f6f9;
471
- display: none;
472
- }
473
- .listIcon {
474
- width: 15px;
475
- margin-right: 8px;
476
- height: 15px;
477
- }
478
- .listItem,
479
- .componentMain,
480
- .componentDocs {
481
- padding: 7px 5px 7px 10px;
482
- transition: all 0.3s;
483
- cursor: pointer;
484
- }
485
- .listItem path {
486
- fill: #fff;
487
- }
488
- .listTitle {
489
- color: #fff;
490
- font-size: 12px;
491
- text-transform: capitalize;
492
- }
493
- .listCount {
494
- padding: 3px 5px;
495
- background: #0072b0;
496
- border-radius: 15px;
497
- font-size: 9px;
498
- color: #fff;
499
- margin-left: 5px;
500
- font-style: initial;
501
- min-width: 18px;
502
- text-align: center;
503
- }
504
- .listItem:hover,
505
- .listItem.selected {
506
- background-color: #0c1115;
507
- }
508
- .componentMain:hover,
509
- .componentDocs:hover {
510
- background-color: #162029;
511
- }
512
- .componentDocs {
513
- padding-left: 35px;
514
- }
515
- .componentDocs > a.active,
516
- .componentMain > a.active {
517
- position: relative;
518
- }
519
- .componentDocs > a.active::after,
520
- .componentMain > a.active::after {
521
- content: '';
522
- position: absolute;
523
- top: 0px;
524
- height: 15px;
525
- width: 15px;
526
- background-color: #008f4c;
527
- border-radius: 1px;
528
- left: -43px;
529
- transform: rotate(45deg);
530
- }
531
- .componentMain > a.active::after {
532
- left: -28px;
533
- }
534
- .componentMain {
535
- padding-left: 20px;
536
- }
537
- .subCount {
538
- background-color: #e03332;
539
- }
540
- .activeComponent {
541
- position: relative;
542
- }
543
- .activeComponent::after {
544
- position: absolute;
545
- content: '';
546
- top: 0;
547
- bottom: 0;
548
- left: 0;
549
- width: 2px;
550
- background-color: #008f4c;
551
- }
552
-
553
- section {
554
- border: 15px solid #333;
555
- position: relative;
556
- border-radius: 16px;
557
- transition:width 0.2ms;
558
- }
559
- .iframe {
560
- position: absolute;
561
- top: 0;
562
- left: 0;
563
- right: 0;
564
- bottom: 0;
565
- height: 100%;
566
- width: 100%;
567
- overflow: auto;
568
- z-index: 1;
569
- background-color: #fff;
570
- }
571
-
572
- .inputSearch {
573
- width: 100%;
574
- background: #0c1115;
575
- color: #fff;
576
- font-size: 11px;
577
- border-radius: 15px;
578
- padding: 6px 25px 6px 15px;
579
- }
580
-
581
- .cheader {
582
- border-bottom: 1px solid #dad8d8;
583
- padding: 6px 25px;
584
- }
585
- .ccontent {
586
- background-color: #fff;
587
- padding: 5px 20px 0px 20px;
588
- overflow: auto;
589
- }
590
-
591
- .cheadertitle {
592
- font-family: Semibold;
593
- font-size: 21px;
594
- margin-right: 30px;
595
- color: #0c1015;
596
- }
597
- .responsive {
598
- height: 30px
599
- }
600
- .responsiveOption {
601
- width: 30px;
602
- height: 30px;
603
- display: inline-block;
604
- position: relative;
605
- vertical-align: middle;
606
- text-align: center;
607
- line-height: 27px;
608
- background: #5c5e61;
609
- border-radius: 50%;
610
- color:#fff;
611
- margin: 0 5px;
612
- padding: 5px;
613
- cursor: pointer;
614
- transition: all 0.3s;
615
- font-size: 10px;
616
- }
617
- .section .responsiveOption{
618
- margin: 0px 5px 5px;
619
- }
620
- .responsiveOption:hover,.activeOption {
621
- background-color: #00995a;
622
- }
623
- .activeOption:hover{
624
- background-color: #d0263a;
625
- }
626
- .responsiveOption svg {
627
- width: 15px;
628
- height: 15px;
629
-
630
- }
631
- .responsiveOption svg path {
632
- fill: #fff;
633
- }
634
- .propsTable {
635
- margin: 40px auto;
636
- border: 1px solid #ebedf0;
637
- font-size: 14px;
638
- line-height: 1.5;
639
- empty-cells: show;
640
- }
641
- .tableHeader {
642
- display: flex;
643
- flex-direction: row;
644
- }
645
- .brR {
646
- white-space: nowrap;
647
- color: #5c6b77;
648
- font-weight: 500;
649
- background: rgba(0, 0, 0, 0.02);
650
- padding: 16px 24px;
651
- text-align: left;
652
- }
653
- .tableHeaderNB {
654
- display: flex;
655
- flex-direction: row;
656
- border-bottom: 1px solid transparent;
657
- }
658
- .tableHeader span,
659
- .tableHeaderNB span {
660
- flex: 1;
661
- overflow: hidden;
662
- text-overflow: ellipsis;
663
- word-wrap: normal;
664
- word-break: break-word;
665
- border-right: 1px solid #ebedf0;
666
- padding: 16px 24px;
667
- text-align: left;
668
- border-bottom: 1px solid #ebedf0;
669
- }
670
- .tableHeaderNB span {
671
- border-bottom-width: 0;
672
- }
673
- .bn {
674
- border-right-width: 0;
675
- }
676
- .tableHeader .defaultProps,
677
- .tableHeaderNB .defaultProps {
678
- overflow: initial;
679
- white-space: normal;
680
- text-overflow: initial;
681
- word-break: break-all;
682
- }
683
- .srcCode {
684
- color: #2d2929;
685
- width: 100%;
686
- height: 100%;
687
- overflow: auto;
688
- padding: 20px 0;
689
- display: block;
690
- }
691
- .referContainer {
692
- padding: 20px 0;
693
- color:#fff;
694
- background-color: #2D313F;
695
- border-radius: 5px;
696
- height: 100%;
697
- }
698
- .refsBy {
699
- padding: 10px;
700
- font-size: 17px;
701
- color: inherit;
702
- }
703
- .refsLin {
704
- padding: 5px;
705
- font-size: 15px;
706
- color: inherit;
707
- list-style-position: inside;
708
- margin-left: 30px;
709
- }
710
- .refsLin a {
711
- color: inherit;
712
- }
713
- .psdContainer {
714
- width: 24%;
715
- border: 1px solid #1c2b36;
716
- border-radius: 5px;
717
- padding: 5px;
718
- margin-right: 10px;
719
- margin-bottom: 10px;
720
- display: inline-block;
721
- vertical-align: top;
722
- }
723
- .imageContainer {
724
- min-height: 150px;
725
- text-align: center;
726
- }
727
- .psdImage {
728
- max-width: 100%;
729
- max-height: 150px;
730
- }
731
- .psdLink {
732
- color: #fff;
733
- background: #1c2b36;
734
- padding: 5px;
735
- display: block;
736
- text-align: center;
737
- border-radius: 5px;
738
- cursor: pointer;
739
- margin-bottom: 3px;
740
- border: 1px solid transparent;
741
- }
742
- .psdLink:hover {
743
- background: #fff;
744
- color: #1c2b36;
745
- border-color: #1c2b36;
746
- }
747
- .infoTabs span {
748
- padding: 0px 10px;
749
- font-size: 14px;
750
- line-height: 30px;
751
- cursor: pointer;
752
- margin-right: 10px;
753
- border-radius: 2px;
754
- transition: all 0.1s;
755
- }
756
- .infoactive,
757
- .infoTabs span:hover {
758
- background: #3cc1a2;
759
- color: #fff;
760
- }
761
- .showToggleLeft {
762
- background-color: #fff;
763
- z-index: 5;
764
- position: absolute;
765
- bottom: 15px;
766
- left: 20px;
767
- border-radius: 50%;
768
- transition: all 0.5s ease;
769
- transform: scale(1);
770
- cursor: pointer;
771
- height: 35px;
772
- width: 35px;
773
- border: 1px solid #1e2633;
774
- align-items: center;
775
- justify-content: center;
776
- display: none;
777
- }
778
- .showToggleLeft img {
779
- width: 28px;
780
- height: 28px;
781
- padding: 7px;
782
- transform: rotateY(180deg);
783
- }
784
- .bn {
785
- border: none !important;
786
- }
787
- #ifm {
788
- outline: none;
789
- border: none;
790
- overflow: hidden;
791
- z-index: 1;
792
- position: fixed;
793
- }
794
- .iframeCentering {
795
- height: 98vh;
796
- width: 100vw;
797
- display: flex;
798
- background: #fff;
799
- justify-content: center;
800
- align-items: center;
801
- position: relative;
802
- z-index: 1;
803
- }
804
- .posAb {
805
- position: absolute;
806
- z-index: 0;
807
- animation: jump 1.5s ease 0s infinite normal;
808
- font-size: 24px;
809
- color: black;
810
- }
811
- @keyframes jump {
812
- 0% {
813
- transform: translateY(0);
814
- }
815
- 20% {
816
- transform: translateY(0);
817
- }
818
- 40% {
819
- transform: translateY(-30px);
820
- }
821
- 50% {
822
- transform: translateY(0);
823
- }
824
- 60% {
825
- transform: translateY(-15px);
826
- }
827
- 80% {
828
- transform: translateY(0);
829
- }
830
- 100% {
831
- transform: translateY(0);
832
- }
833
- }
834
- .logo {
835
- background-image: url('desklogo.png');
836
- height: 40px;
837
- width: 130px;
838
- background-size: 100% 100%;
839
- display: inline-block;
840
- vertical-align: middle;
841
- margin-top: 4px;
842
- margin-left: 10px;
843
- }
844
- @media only screen and (max-width: 980px) {
845
- .menuBar {
846
- position: absolute;
847
- top: 0;
848
- left: 0;
849
- bottom: 0;
850
- transform: translate(-110%);
851
- z-index: 2;
852
- }
853
- .isMenuOpen {
854
- transform: translateX(0);
855
- }
856
- .showToggleLeft {
857
- display: flex;
858
- }
859
- }
860
-
861
- .iframeSection {
862
- position: relative;
863
- margin: 0 auto;
864
- }
865
- .loadingText {
866
- position: absolute;
867
- top: 50%;
868
- left: 50%;
869
- transform: translate(-50%, -50%);
870
- display: inline-block;
871
- z-index: 3;
872
- display: none;
873
- }
874
- .lds-ripple {
875
- display: inline-block;
876
- position: relative;
877
- width: 64px;
878
- height: 64px;
879
- }
880
- .lds-ripple div {
881
- position: absolute;
882
- border: 4px solid #3a3a3a;
883
- opacity: 1;
884
- border-radius: 50%;
885
- top: 0;
886
- left: 0;
887
- right: 0;
888
- bottom: 0;
889
- animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
890
- }
891
- .lds-ripple div:nth-child(2) {
892
- animation-delay: -0.5s;
893
- }
894
- @keyframes lds-ripple {
895
- 0% {
896
- transform: scale(0);
897
- opacity: 1;
898
- }
899
- 100% {
900
- transform: scale(1.5);
901
- opacity: 0;
902
- }
903
- }
904
- .hide {
905
- display: none;
906
- }
907
- .compListItem{
908
- padding: 5px;
909
- font-size: 15px;
910
- list-style-position: inside;
911
- margin-left: 30px;
912
- }
913
- .compListTitle{
914
- padding: 10px;
915
- font-size: 17px;
916
- flex:1;
917
- max-width: 90%;
918
- display: block;
919
- }
920
- .toolOptions{
921
- background: #333;
922
- border-radius: 12px;
923
- margin: 5px 0;
924
- }
925
- .toolarea{
926
- overflow: auto;
927
- }
928
- .range{
929
- width: 500px;
930
- padding: 15px 0;
931
- position: relative;
932
- margin-left: 20px;
933
- flex: .5;
934
- }
935
- .rangeSlider{
936
- min-width: 200px;
937
- }
938
- .tooltip,.window {
939
- padding: 4px;
940
- font-size: 12px;
941
- color: #fff;
942
- background-color: #5c5e61;
943
- white-space: nowrap;
944
- border-radius: 5px;
945
- margin: 0px 6px;
946
- }
947
- .tooltip{
948
- min-width:80px;
949
- text-align: center;
950
- }
951
- .tooltipVal{
952
- font-size: 12px;
953
- color:#fff;
954
- padding: 4px;
955
- }
956
- .rangeInput {
957
- -webkit-appearance: none;
958
- display: block;
959
- width: 100%;
960
- min-width: 100px;
961
- height: 8px;
962
- padding: 0;
963
- border-radius: 4px;
964
- background: #dbdbdb;
965
- box-sizing: content-box;
966
- }
967
- .rangeInput:focus {
968
- outline: none;
969
- }
970
- .rangeInput::-webkit-slider-thumb {
971
- -webkit-appearance: none;
972
- width: 15px;
973
- height: 20px;
974
- border: 1px solid #03613b;
975
- border-radius: 5px;
976
- background: #00995a;
977
- }
978
- .transform{
979
- transform: rotateY(180deg);
980
- }
981
- .home{
982
- display: block;
983
- padding: 2px 15px 2px 0px;
984
- cursor: pointer;
985
- }
986
- .fullScreen svg{
987
- width: 18px;
988
- height: 18px;
989
- }
990
- .textSize{
991
- line-height: 23px;
992
- }
993
- .textSize svg{
994
- width: 12px;
995
- height: 12px;
996
- }
997
- .svg{
998
- width: inherit;
999
- height: inherit;
1000
- fill: #fff;
1001
- }
1002
- .homeIcon{
1003
- width: 20px;
1004
- height: 20px;
1005
- }
1006
- .smileIcon{
1007
- width: 60px;
1008
- margin-bottom: 30px
1009
- }
1010
- .authorview{
1011
- height: 100%;
1012
- overflow: auto;
1013
- }
1014
- #react{
1015
- position: fixed;
1016
- top: 0;
1017
- z-index: 1;
1018
- left: 0;
1019
- right: 0;
1020
- bottom: 0;
1021
- background:#fff;
1022
- }
1
+ /* cyrillic-ext */
2
+
3
+ *,
4
+ :after,
5
+ :before {
6
+ margin: 0;
7
+ padding: 0;
8
+ outline: 0;
9
+ border: 0;
10
+ box-sizing: border-box;
11
+ -webkit-box-sizing: border-box;
12
+ -moz-box-sizing: border-box;
13
+ -ms-box-sizing: border-box;
14
+ }
15
+ a {
16
+ text-decoration: none;
17
+ }
18
+
19
+ /* FLex Assets*/
20
+ .dflex {
21
+ display: -webkit-box;
22
+ display: -ms-flexbox;
23
+ display: flex;
24
+ height: 100%;
25
+ width: 100%;
26
+ }
27
+ .flexwrap {
28
+ -ms-flex-wrap: wrap;
29
+ flex-wrap: wrap;
30
+ }
31
+ .flexcolumn {
32
+ -webkit-box-orient: vertical;
33
+ -webkit-box-direction: normal;
34
+ -webkit-flex-direction: column;
35
+ -ms-flex-direction: column;
36
+ flex-direction: column;
37
+ }
38
+ .flexrow {
39
+ -webkit-box-orient: horizontal;
40
+ -webkit-box-direction: normal;
41
+ -webkit-flex-direction: row;
42
+ -ms-flex-direction: row;
43
+ flex-direction: row;
44
+ }
45
+ .flexrowreverse {
46
+ -webkit-box-orient: horizontal;
47
+ -webkit-box-direction: reverse;
48
+ -webkit-flex-direction: row-reverse;
49
+ -ms-flex-direction: row-reverse;
50
+ flex-direction: row-reverse;
51
+ }
52
+ .flexcolumnreverse {
53
+ -webkit-box-orient: vertical;
54
+ -webkit-box-direction: reverse;
55
+ -webkit-flex-direction: column-reverse;
56
+ -ms-flex-direction: column-reverse;
57
+ flex-direction: column-reverse;
58
+ }
59
+ .flexgrow {
60
+ -webkit-box-flex: 1;
61
+ -ms-flex-positive: 1;
62
+ flex-grow: 1;
63
+ min-height: 0;
64
+ min-width: 0;
65
+ }
66
+ .flexshrink {
67
+ flex-shrink: 0;
68
+ -moz-flex-shrink: 0;
69
+ -webkit-flex-shrink: 0;
70
+ -ms-flex-shrink: 0;
71
+ }
72
+ .flexbasis {
73
+ flex-basis: 0%;
74
+ -webkit-flex-basis: 0%;
75
+ -moz-flex-basis: 0%;
76
+ -ms-flex-basis: 0%;
77
+ }
78
+ .alignVertical {
79
+ -webkit-box-align: center;
80
+ -ms-flex-align: center;
81
+ align-items: center;
82
+ }
83
+ .alignFstart {
84
+ -webkit-box-align: start;
85
+ -ms-flex-align: start;
86
+ align-items: flex-start;
87
+ }
88
+ .alignFend {
89
+ -webkit-box-align: end;
90
+ -ms-flex-align: end;
91
+ align-items: flex-end;
92
+ }
93
+ .alignHorizontal {
94
+ -webkit-box-pack: center;
95
+ -ms-flex-pack: center;
96
+ justify-content: center;
97
+ }
98
+ .dotted {
99
+ overflow: hidden;
100
+ white-space: nowrap;
101
+ word-wrap: normal;
102
+ text-overflow: ellipsis;
103
+ }
104
+ .offSelection {
105
+ -webkit-user-select: none;
106
+ -moz-user-select: none;
107
+ -ms-user-select: none;
108
+ user-select: none;
109
+ }
110
+ .scrollY {
111
+ overflow-y: auto;
112
+ overflow-x: hidden;
113
+ }
114
+ body {
115
+ background: #fff;
116
+ font-size: 14px;
117
+ overflow: hidden;
118
+ font-family: "Poppins", sans-serif;
119
+ }
120
+
121
+ main {
122
+ height: 100vh !important;
123
+ animation: slide 0.4s ease 0s normal;
124
+ }
125
+ @keyframes slide {
126
+ 0% {
127
+ opacity: 0;
128
+ }
129
+ 100% {
130
+ opacity: 1;
131
+ }
132
+ }
133
+ .menuBar {
134
+ width: 220px;
135
+ border-right: 1px solid #0e1c27;
136
+ transition: transform 0.3s;
137
+ background: #1d2b36;
138
+ }
139
+ .isMenuClose {
140
+ position: absolute;
141
+ top: 0;
142
+ left: 0;
143
+ bottom: 0;
144
+ transform: translateX(-110%);
145
+ transition: transform 0.3s;
146
+ }
147
+
148
+ .menuContainer {
149
+ padding-bottom: 5px;
150
+ }
151
+ .logoPart {
152
+ height: 50px;
153
+ border-bottom: 1px solid #16222b;
154
+ line-height: 50px;
155
+ padding-left: 5px;
156
+ justify-content: space-between;
157
+ }
158
+ .logoPart img {
159
+ max-width: 100%;
160
+ width: 130px;
161
+ vertical-align: middle;
162
+ }
163
+ .searchPart {
164
+ padding: 10px;
165
+ border-bottom: 1px solid #16222b;
166
+ }
167
+ .searchContainer {
168
+ position: relative;
169
+ }
170
+ .searchClose {
171
+ position: absolute;
172
+ top: 50%;
173
+ right: 5px;
174
+ width: 16px;
175
+ padding: 5px;
176
+ background: rgba(102, 106, 108, 0.57);
177
+ border-radius: 30px;
178
+ text-align: center;
179
+ height: 16px;
180
+ transform: translateY(-50%);
181
+ line-height: 0;
182
+ cursor: pointer;
183
+ }
184
+ .searchClose img {
185
+ width: 100%;
186
+ height: 100%;
187
+ }
188
+ /* .versionPart {
189
+ padding: 4px 4px 7px;
190
+ text-align: center;
191
+ background: #0c1115;
192
+ }
193
+ .versionPart span,
194
+ .tools span {
195
+ color: #fff;
196
+ font-size: 12px;
197
+ }
198
+ .tools img {
199
+ display: inline-block;
200
+ vertical-align: middle;
201
+ margin-right: 5px;
202
+ }
203
+ .tools {
204
+ padding: 4px 4px 7px;
205
+ background-color: #00995a;
206
+ cursor: pointer;
207
+ text-align: center;
208
+ }
209
+ .tools:hover {
210
+ background-color: #07ab67;
211
+ } */
212
+ /* .sliderContainer {
213
+ position: relative;
214
+ }
215
+ .slider {
216
+ position: absolute;
217
+ top: 0;
218
+ left: 0;
219
+ right: 0;
220
+ bottom: 0;
221
+ overflow-y: auto;
222
+ background-color: #1d2b36;
223
+ transform: translateX(-100%);
224
+ transition: transform 0.3s;
225
+ }
226
+ .slider.sopen {
227
+ transform: translateX(0);
228
+ }
229
+ .sliderHeader {
230
+ position: relative;
231
+ background-color: #e79a2a;
232
+ text-align: left;
233
+ padding-left: 10px;
234
+ }
235
+ .sliderFormContainer {
236
+ padding: 20px 10px;
237
+ }
238
+ .sliderInputContainer {
239
+ margin-bottom: 12px;
240
+ }
241
+ .sliderInputTitle {
242
+ color: #999;
243
+ font-size: 13px;
244
+ letter-spacing: 0.1px;
245
+ padding-bottom: 4px;
246
+ display: block;
247
+ }
248
+ .sliderInput {
249
+ background: rgb(27, 27, 43, 0.8);
250
+ width: 100%;
251
+ border-radius: 3px;
252
+ padding: 7px 5px;
253
+ color: #fff;
254
+ font-size: 13px;
255
+ }
256
+ .sliderResult {
257
+ position: relative;
258
+ }
259
+ .copyResult {
260
+ position: absolute;
261
+ top: 0;
262
+ right: 0;
263
+ bottom: 0;
264
+ width: 30px;
265
+ text-align: center;
266
+ padding: 7px;
267
+ background: #01985b;
268
+ border-radius: 0 3px 3px 0;
269
+ cursor: pointer;
270
+ }
271
+ .copyResult:hover {
272
+ background: #03b7fe;
273
+ }
274
+ .copyResult img {
275
+ width: 100%;
276
+ height: 100%;
277
+ }
278
+ .copyTxtHiden {
279
+ height: 0px !important;
280
+ width: 0px !important;
281
+ font-size: 0px !important;
282
+ padding: 0px !important;
283
+ } */
284
+ .mainMenu {
285
+ padding: 10px;
286
+ cursor: pointer;
287
+ font-size: 13px;
288
+ transition: all 0.3s;
289
+ }
290
+ .mainMenuActive,
291
+ .mainMenu:hover {
292
+ background-color: #162029;
293
+ }
294
+ .mainMenuActive .mainMenuArrow {
295
+ transform: rotate(90deg);
296
+ }
297
+ .mainMenutitle {
298
+ max-width: 100%;
299
+ color: #fff;
300
+ text-transform: capitalize;
301
+ }
302
+ .mainMenuCount {
303
+ padding: 3px 5px;
304
+ background: #008e4f;
305
+ border-radius: 15px;
306
+ font-size: 9px;
307
+ color: #fff;
308
+ margin-right: 10px;
309
+ margin-left: 5px;
310
+ min-width: 18px;
311
+ text-align: center;
312
+ }
313
+ .mainMenuArrow {
314
+ transition: all 0.3s;
315
+ height: 12px;
316
+ width: 12px;
317
+ }
318
+ .menuHideLeft {
319
+ width: 220px;
320
+ padding-bottom: 20px;
321
+ border-right: 1px solid #dbd8d8;
322
+ transition: margin-left 0.5s ease;
323
+ background: #f4f6f9;
324
+ display: none;
325
+ }
326
+ .listIcon {
327
+ width: 15px;
328
+ margin-right: 8px;
329
+ height: 15px;
330
+ }
331
+ .listItem,
332
+ .componentMain,
333
+ .componentDocs {
334
+ padding: 7px 5px 7px 10px;
335
+ transition: all 0.3s;
336
+ cursor: pointer;
337
+ }
338
+ .listItem path {
339
+ fill: #fff;
340
+ }
341
+ .listTitle {
342
+ color: #fff;
343
+ font-size: 12px;
344
+ text-transform: capitalize;
345
+ }
346
+ .listCount {
347
+ padding: 3px 5px;
348
+ background: #0072b0;
349
+ border-radius: 15px;
350
+ font-size: 9px;
351
+ color: #fff;
352
+ margin-left: 5px;
353
+ font-style: initial;
354
+ min-width: 18px;
355
+ text-align: center;
356
+ }
357
+ .listItem:hover,
358
+ .listItem.selected {
359
+ background-color: #0c1115;
360
+ }
361
+ .componentMain:hover,
362
+ .componentDocs:hover {
363
+ background-color: #162029;
364
+ }
365
+ .componentDocs {
366
+ padding-left: 35px;
367
+ }
368
+ .componentDocs > a.active,
369
+ .componentMain > a.active {
370
+ position: relative;
371
+ }
372
+ .componentDocs > a.active::after,
373
+ .componentMain > a.active::after {
374
+ content: '';
375
+ position: absolute;
376
+ top: 0px;
377
+ height: 15px;
378
+ width: 15px;
379
+ background-color: #008f4c;
380
+ border-radius: 1px;
381
+ left: -43px;
382
+ transform: rotate(45deg);
383
+ }
384
+ .componentMain > a.active::after {
385
+ left: -28px;
386
+ }
387
+ .componentMain {
388
+ padding-left: 20px;
389
+ }
390
+ .subCount {
391
+ background-color: #e03332;
392
+ }
393
+ .activeComponent {
394
+ position: relative;
395
+ }
396
+ .activeComponent::after {
397
+ position: absolute;
398
+ content: '';
399
+ top: 0;
400
+ bottom: 0;
401
+ left: 0;
402
+ width: 2px;
403
+ background-color: #008f4c;
404
+ }
405
+
406
+ section {
407
+ border: 8px solid #333;
408
+ position: relative;
409
+ /* border-radius: 5px 5px 0 0; */
410
+ transition:width 0.2ms;
411
+ }
412
+ .iframe {
413
+ position: absolute;
414
+ top: 0;
415
+ left: 0;
416
+ right: 0;
417
+ bottom: 0;
418
+ height: 100%;
419
+ width: 100%;
420
+ overflow: auto;
421
+ z-index: 1;
422
+ background-color: #fff;
423
+ }
424
+
425
+ .inputSearch {
426
+ width: 100%;
427
+ background: #0c1115;
428
+ color: #fff;
429
+ font-size: 11px;
430
+ border-radius: 15px;
431
+ padding: 6px 25px 6px 15px;
432
+ }
433
+
434
+ .cheader {
435
+ border-bottom: 1px solid #dad8d8;
436
+ padding: 6px 25px;
437
+ }
438
+ .ccontent {
439
+ background-color: #fff;
440
+ overflow: auto;
441
+ /* padding: 0 24px; */
442
+ /* width: 100%; */
443
+ }
444
+ .ccontent .propsTableContainer{
445
+ padding: 0 24px;
446
+ }
447
+
448
+ .cheadertitle {
449
+ /* font-family: Semibold; */
450
+ font-weight: 700;
451
+ font-size: 21px;
452
+ margin-right: 30px;
453
+ color: #0c1015;
454
+ }
455
+ .responsive {
456
+ height: 30px
457
+ }
458
+ .responsiveOption {
459
+ width: 30px;
460
+ height: 30px;
461
+ display: inline-block;
462
+ position: relative;
463
+ vertical-align: middle;
464
+ text-align: center;
465
+ line-height: 27px;
466
+ background: #5c5e61;
467
+ border-radius: 50%;
468
+ color:#fff;
469
+ margin: 0 5px;
470
+ padding: 5px;
471
+ cursor: pointer;
472
+ transition: all 0.3s;
473
+ font-size: 10px;
474
+ }
475
+ .section .responsiveOption{
476
+ margin: 0px 5px 5px;
477
+ }
478
+ .responsiveOption:hover,.activeOption {
479
+ background-color: #00995a;
480
+ }
481
+ .activeOption:hover{
482
+ background-color: #d0263a;
483
+ }
484
+ .responsiveOption svg {
485
+ width: 15px;
486
+ height: 15px;
487
+
488
+ }
489
+ .responsiveOption svg path {
490
+ fill: #fff;
491
+ }
492
+ .propsTable {
493
+ margin: 10px auto;
494
+ font-size: 14px;
495
+ /* border-radius: 10px; */
496
+ line-height: 1.5;
497
+ empty-cells: show;
498
+ }
499
+ .tableHeader {
500
+ border-left: 1px solid #e0e8ef;
501
+ border-right: 1px solid #e0e8ef;
502
+ border-bottom: 1px solid #e0e8ef;
503
+ display: flex;
504
+ flex-direction: row;
505
+ }
506
+ .brR {
507
+ white-space: nowrap;
508
+ color: #000;
509
+ font-size: 16px;
510
+ font-weight: 600;
511
+ background: #f6f8fb;
512
+ padding: 14px 24px !important;
513
+ text-align: left;
514
+ }
515
+ .tableHeaderNB {
516
+ display: flex;
517
+ flex-direction: row;
518
+ border-bottom: 1px solid transparent;
519
+ }
520
+ .tableHeader span,
521
+ .tableHeaderNB span {
522
+ flex: 1;
523
+ overflow: hidden;
524
+ text-overflow: ellipsis;
525
+ word-wrap: normal;
526
+ word-break: break-word;
527
+ padding: 12px 24px;
528
+ text-align: left;
529
+ letter-spacing: 0.2px;
530
+ }
531
+ .tableHeaderNB span {
532
+ border-bottom-width: 0;
533
+ }
534
+ .bn {
535
+ border-right-width: 0;
536
+ }
537
+ .tableHeader .defaultProps,
538
+ .tableHeaderNB .defaultProps {
539
+ overflow: initial;
540
+ white-space: normal;
541
+ text-overflow: initial;
542
+ word-break: break-all;
543
+ }
544
+ .srcCode {
545
+ color: #2d2929;
546
+ width: 100%;
547
+ height: 100%;
548
+ overflow: auto;
549
+ padding: 20px 0;
550
+ display: block;
551
+ }
552
+ .referContainer {
553
+ padding: 20px 0;
554
+ color:#fff;
555
+ background-color: #2D313F;
556
+ border-radius: 5px;
557
+ height: 100%;
558
+ }
559
+ .refsBy {
560
+ padding: 10px;
561
+ font-size: 17px;
562
+ color: inherit;
563
+ }
564
+ .refsLin {
565
+ padding: 5px;
566
+ font-size: 15px;
567
+ color: inherit;
568
+ list-style-position: inside;
569
+ margin-left: 30px;
570
+ }
571
+ .refsLin a {
572
+ color: inherit;
573
+ }
574
+ .psdContainer {
575
+ width: 24%;
576
+ border: 1px solid #1c2b36;
577
+ border-radius: 5px;
578
+ padding: 5px;
579
+ margin-right: 10px;
580
+ margin-bottom: 10px;
581
+ display: inline-block;
582
+ vertical-align: top;
583
+ }
584
+ .imageContainer {
585
+ min-height: 150px;
586
+ text-align: center;
587
+ }
588
+ .psdImage {
589
+ max-width: 100%;
590
+ max-height: 150px;
591
+ }
592
+ .psdLink {
593
+ color: #fff;
594
+ background: #1c2b36;
595
+ padding: 5px;
596
+ display: block;
597
+ text-align: center;
598
+ border-radius: 5px;
599
+ cursor: pointer;
600
+ margin-bottom: 3px;
601
+ border: 1px solid transparent;
602
+ }
603
+ .psdLink:hover {
604
+ background: #fff;
605
+ color: #1c2b36;
606
+ border-color: #1c2b36;
607
+ }
608
+ .infoTabs span {
609
+ padding: 0px 10px;
610
+ font-size: 14px;
611
+ line-height: 30px;
612
+ cursor: pointer;
613
+ margin-right: 10px;
614
+ border-radius: 15px;
615
+ transition: all 0.1s;
616
+ }
617
+ .infoactive,
618
+ .infoTabs span:hover {
619
+ background: #3cc1a2;
620
+ color: #fff;
621
+ }
622
+ .showToggleLeft {
623
+ background-color: #fff;
624
+ z-index: 5;
625
+ position: absolute;
626
+ bottom: 15px;
627
+ left: 20px;
628
+ border-radius: 50%;
629
+ transition: all 0.5s ease;
630
+ transform: scale(1);
631
+ cursor: pointer;
632
+ height: 35px;
633
+ width: 35px;
634
+ border: 1px solid #1e2633;
635
+ align-items: center;
636
+ justify-content: center;
637
+ display: none;
638
+ }
639
+ .showToggleLeft img {
640
+ width: 28px;
641
+ height: 28px;
642
+ padding: 7px;
643
+ transform: rotateY(180deg);
644
+ }
645
+ .bn {
646
+ border: none !important;
647
+ }
648
+ #ifm {
649
+ outline: none;
650
+ border: none;
651
+ overflow: hidden;
652
+ z-index: 1;
653
+ position: fixed;
654
+ }
655
+ .iframeCentering {
656
+ height: 98vh;
657
+ width: 100vw;
658
+ display: flex;
659
+ background: #fff;
660
+ justify-content: center;
661
+ align-items: center;
662
+ position: relative;
663
+ z-index: 1;
664
+ }
665
+ .posAb {
666
+ position: absolute;
667
+ z-index: 0;
668
+ animation: jump 1.5s ease 0s infinite normal;
669
+ font-size: 24px;
670
+ color: black;
671
+ }
672
+ @keyframes jump {
673
+ 0% {
674
+ transform: translateY(0);
675
+ }
676
+ 20% {
677
+ transform: translateY(0);
678
+ }
679
+ 40% {
680
+ transform: translateY(-30px);
681
+ }
682
+ 50% {
683
+ transform: translateY(0);
684
+ }
685
+ 60% {
686
+ transform: translateY(-15px);
687
+ }
688
+ 80% {
689
+ transform: translateY(0);
690
+ }
691
+ 100% {
692
+ transform: translateY(0);
693
+ }
694
+ }
695
+ .logo {
696
+ background-image: url('desklogo.png');
697
+ height: 40px;
698
+ width: 130px;
699
+ background-size: 100% 100%;
700
+ display: inline-block;
701
+ vertical-align: middle;
702
+ margin-top: 4px;
703
+ margin-left: 10px;
704
+ }
705
+ @media only screen and (max-width: 980px) {
706
+ .menuBar {
707
+ position: absolute;
708
+ top: 0;
709
+ left: 0;
710
+ bottom: 0;
711
+ transform: translate(-110%);
712
+ z-index: 2;
713
+ }
714
+ .isMenuOpen {
715
+ transform: translateX(0);
716
+ }
717
+ .showToggleLeft {
718
+ display: flex;
719
+ }
720
+ }
721
+
722
+ .iframeSection {
723
+ position: relative;
724
+ margin: 0 auto;
725
+ }
726
+ .loadingText {
727
+ position: absolute;
728
+ top: 50%;
729
+ left: 50%;
730
+ transform: translate(-50%, -50%);
731
+ display: inline-block;
732
+ z-index: 3;
733
+ display: none;
734
+ }
735
+ .lds-ripple {
736
+ display: inline-block;
737
+ position: relative;
738
+ width: 64px;
739
+ height: 64px;
740
+ }
741
+ .lds-ripple div {
742
+ position: absolute;
743
+ border: 4px solid #3a3a3a;
744
+ opacity: 1;
745
+ border-radius: 50%;
746
+ top: 0;
747
+ left: 0;
748
+ right: 0;
749
+ bottom: 0;
750
+ animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
751
+ }
752
+ .lds-ripple div:nth-child(2) {
753
+ animation-delay: -0.5s;
754
+ }
755
+ @keyframes lds-ripple {
756
+ 0% {
757
+ transform: scale(0);
758
+ opacity: 1;
759
+ }
760
+ 100% {
761
+ transform: scale(1.5);
762
+ opacity: 0;
763
+ }
764
+ }
765
+ .hide {
766
+ display: none;
767
+ }
768
+ .compListItem{
769
+ padding: 5px;
770
+ font-size: 15px;
771
+ list-style-position: inside;
772
+ margin-left: 30px;
773
+ }
774
+ .compListTitle{
775
+ padding: 10px;
776
+ font-size: 17px;
777
+ flex:1;
778
+ max-width: 90%;
779
+ display: block;
780
+ }
781
+ .toolOptions{
782
+ background: #333;
783
+ border-radius: 0;
784
+ }
785
+ .toolarea{
786
+ overflow: auto;
787
+ }
788
+ .range{
789
+ width: 500px;
790
+ padding: 5px 0;
791
+ position: relative;
792
+ margin-left: 20px;
793
+ flex: .5;
794
+ }
795
+ .rangeSlider{
796
+ min-width: 200px;
797
+ }
798
+ .tooltip,.window {
799
+ padding: 4px;
800
+ font-size: 12px;
801
+ color: #fff;
802
+ background-color: #5c5e61;
803
+ white-space: nowrap;
804
+ border-radius: 5px;
805
+ margin: 0px 6px;
806
+ }
807
+ .tooltip{
808
+ min-width:80px;
809
+ text-align: center;
810
+ }
811
+ .tooltipVal{
812
+ font-size: 12px;
813
+ color:#fff;
814
+ padding: 4px;
815
+ }
816
+ .rangeInput {
817
+ -webkit-appearance: none;
818
+ display: block;
819
+ width: 100%;
820
+ min-width: 100px;
821
+ height: 8px;
822
+ padding: 0;
823
+ border-radius: 4px;
824
+ background: #dbdbdb;
825
+ box-sizing: content-box;
826
+ }
827
+ .rangeInput:focus {
828
+ outline: none;
829
+ }
830
+ .rangeInput::-webkit-slider-thumb {
831
+ -webkit-appearance: none;
832
+ width: 15px;
833
+ height: 20px;
834
+ border: 1px solid #03613b;
835
+ border-radius: 5px;
836
+ background: #00995a;
837
+ }
838
+ .transform{
839
+ transform: rotateY(180deg);
840
+ }
841
+ .home{
842
+ display: block;
843
+ padding: 2px 15px 2px 0px;
844
+ cursor: pointer;
845
+ }
846
+ .fullScreen svg{
847
+ width: 18px;
848
+ height: 18px;
849
+ }
850
+ .textSize{
851
+ line-height: 23px;
852
+ }
853
+ .textSize svg{
854
+ width: 12px;
855
+ height: 12px;
856
+ }
857
+ .svg{
858
+ width: inherit;
859
+ height: inherit;
860
+ fill: #fff;
861
+ }
862
+ .homeIcon{
863
+ width: 20px;
864
+ height: 20px;
865
+ }
866
+ .smileIcon{
867
+ width: 60px;
868
+ margin-bottom: 30px
869
+ }
870
+ .authorview{
871
+ height: 100%;
872
+ overflow: auto;
873
+ }
874
+ #react{
875
+ position: fixed;
876
+ top: 0;
877
+ z-index: 1;
878
+ left: 0;
879
+ right: 0;
880
+ bottom: 0;
881
+ background:#fff;
882
+ }
883
+
884
+ .compName {
885
+ font-size: 20px;
886
+ font-weight: 600;
887
+ position: -webkit-sticky;
888
+ position: sticky;
889
+ top: 0px;
890
+ background-color: #fff;
891
+ padding: 5px 10px 5px 20px;
892
+ border-radius: 5px;
893
+ box-shadow: 0 0 5px #d5dde7 inset;
894
+ border: 1px solid #d5dde7;
895
+ margin-top: 10px
896
+ }
897
+
898
+ .tableHeader:last-child {
899
+ /* border-bottom: none; */
900
+ }
901
+
902
+ .tableHeader:first-child {
903
+ position: -webkit-sticky;
904
+ position: sticky;
905
+ border-top: 1px solid #e0e8ef;
906
+ top: 41px;
907
+ }
908
+
909
+ /* .brR:first-child {
910
+ border-top-left-radius: 10px;
911
+ }
912
+
913
+ .brR:last-child {
914
+ border-top-right-radius: 10px;
915
+ } */
916
+ .typeTag {
917
+ display: inline-block;
918
+ border-radius: 4px;
919
+ padding: 0 4px
920
+ }
921
+ .stringType{
922
+ color: #0a73eb;
923
+ background-color: rgba(10, 115, 235, 0.1);
924
+ border: 1px solid #0a73eb
925
+ }
926
+ .boolType{
927
+ color: #e47016;
928
+ background-color: rgba(228, 112, 22, 0.1);
929
+ border: 1px solid #e47016;
930
+ }
931
+ .funcType{
932
+ color: #da2323;
933
+ background-color: rgba(218, 35, 35, 0.1);
934
+ border: 1px solid #da2323
935
+ }
936
+ .oneOfType, .oneOfTypeType{
937
+ color: #b36000;
938
+ background-color: #fff2e1;
939
+ border: 1px solid #ffa606
940
+ }
941
+
942
+ .objectType{
943
+ color: #0ba53d;
944
+ background-color: rgba(11, 165, 61, 0.1);
945
+ border: 1px solid #0ba53d;
946
+ }
947
+
948
+ .elementType{
949
+ color: #06b7ce;
950
+ background-color: rgba(35, 209, 218, 0.1);
951
+ border: 1px solid #23d1da
952
+ }
953
+
954
+ .arrayType{
955
+ color: #ce0656;
956
+ background-color: rgba(218, 35, 172, 0.1);
957
+ border: 1px solid #da237f
958
+ }
959
+
960
+ .shapeType{
961
+ color: #8705eb;
962
+ background-color: rgba(166, 35, 218, 0.1);
963
+ border: 1px solid #b523da
964
+ }
965
+
966
+ .numberType{
967
+ color: #6306ce;
968
+ background-color: rgba(124, 35, 218, 0.1);
969
+ border: 1px solid #7c23da
970
+ }
971
+
972
+ .isRequired{
973
+ color: #d46262;
974
+ }
975
+
976
+ .isNotRequired{
977
+ color: #0ba53d;
978
+ }
979
+
980
+
981
+ .CodeTag,
982
+ .CodeTag * {
983
+ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
984
+ line-height: 1.6;
985
+ letter-spacing: 0.1px;
986
+ font-size: 14px;
987
+ word-wrap: break-word;
988
+ white-space: pre-wrap;
989
+ }