From 449d7a2975ddd8463e497b99944f249d7ff31beb Mon Sep 17 00:00:00 2001 From: vikas-cldcvr Date: Mon, 14 Aug 2023 19:50:17 +0530 Subject: [PATCH] FLOW-865 f-icon z-index issue fixed --- .../flow-code-editor/custom-elements.json | 48 +- packages/flow-core/CHANGELOG.md | 7 + packages/flow-core/custom-elements.json | 5802 ++++++++--------- packages/flow-core/package.json | 2 +- .../flow-core/src/components/f-icon/f-icon.ts | 7 +- .../src/components/f-popover/f-popover.ts | 4 +- packages/flow-table/custom-elements.json | 408 +- 7 files changed, 3146 insertions(+), 3132 deletions(-) diff --git a/packages/flow-code-editor/custom-elements.json b/packages/flow-code-editor/custom-elements.json index 4b559aca7..aff84c7f0 100644 --- a/packages/flow-code-editor/custom-elements.json +++ b/packages/flow-code-editor/custom-elements.json @@ -55,6 +55,30 @@ } ] }, + { + "kind": "javascript-module", + "path": "src/utils/lang-comments-map.ts", + "declarations": [ + { + "kind": "variable", + "name": "languageCommentsMap", + "type": { + "text": "Map" + }, + "default": "new Map([\n\t// JavaScript\n\t[\"javascript\", commonItem],\n\n\t// TypeScript\n\t[\"typescript\", commonItem],\n\n\t// Python\n\t[\n\t\t\"python\",\n\t\t{\n\t\t\tsingleLine: \"#\",\n\t\t\tmultiLine: { start: \"'''\", end: \"'''\" }\n\t\t}\n\t],\n\n\t// Java\n\t[\"java\", commonItem],\n\n\t// C++\n\t[\"cpp\", commonItem],\n\n\t// C#\n\t[\"csharp\", commonItem],\n\n\t// PHP\n\t[\"php\", commonItem],\n\n\t// Ruby\n\t[\n\t\t\"ruby\",\n\t\t{\n\t\t\tsingleLine: \"#\",\n\t\t\tmultiLine: { start: \"=begin\", end: \"=end\" }\n\t\t}\n\t],\n\n\t// Swift\n\t[\"swift\", commonItem],\n\n\t// Go\n\t[\"go\", commonItem],\n\n\t// Rust\n\t[\"rust\", commonItem],\n\n\t// Kotlin\n\t[\"kotlin\", commonItem],\n\n\t// Dart\n\t[\"dart\", commonItem],\n\n\t// HTML (HTML does not support multi-line comments)\n\t[\n\t\t\"html\",\n\t\t{\n\t\t\tsingleLine: \"