fluency-v8-components 1.3.4 → 1.3.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (179) hide show
  1. package/dist/fluency-v8-components.es.js +1 -1
  2. package/dist/fluency-v8-components.umd.js +31 -31
  3. package/dist/{index-Dxs_Gn5T.mjs → index-BBxccHNP.mjs} +53 -47
  4. package/dist/index.css +1 -1
  5. package/dist/{index.es-YeMpD96e.mjs → index.es-D_XhLSeH.mjs} +1 -1
  6. package/package.json +3 -2
  7. package/src/assets/images/ai.svg +1 -0
  8. package/src/assets/images/github-dark.svg +1 -0
  9. package/src/assets/images/github.svg +1 -0
  10. package/src/assets/images/high-priority.svg +1 -0
  11. package/src/assets/images/power-off.svg +1 -0
  12. package/src/assets/images/save.svg +1 -0
  13. package/src/assets/index.ts +15 -0
  14. package/src/assets/main.css +505 -0
  15. package/src/assets/prism-theme.css +290 -0
  16. package/src/components/buttons/ActionButtons.vue +374 -0
  17. package/src/components/buttons/DropdownButton.vue +104 -0
  18. package/src/components/buttons/IconButton.vue +63 -0
  19. package/src/components/buttons/ImageButton.vue +16 -0
  20. package/src/components/buttons/MenuButton.vue +138 -0
  21. package/src/components/buttons/SubmitButtons.vue +51 -0
  22. package/src/components/buttons/TextButton.vue +40 -0
  23. package/src/components/charts/AlertChart.vue +376 -0
  24. package/src/components/charts/BarChart.vue +212 -0
  25. package/src/components/charts/BarChartHorizontal.vue +243 -0
  26. package/src/components/charts/CronChart.vue +146 -0
  27. package/src/components/charts/EmptyChart.vue +76 -0
  28. package/src/components/charts/GradientChart.vue +310 -0
  29. package/src/components/charts/LineChart.test.js +59 -0
  30. package/src/components/charts/LineChart.vue +434 -0
  31. package/src/components/charts/PieChart.vue +293 -0
  32. package/src/components/charts/ProgressChart.vue +106 -0
  33. package/src/components/charts/StackedChart.vue +364 -0
  34. package/src/components/charts/StackedChartClustered.vue +395 -0
  35. package/src/components/charts/TimelineChart.vue +215 -0
  36. package/src/components/charts/WorkflowChart.vue +520 -0
  37. package/src/components/common/AutoCompleteSearchBar.vue +100 -0
  38. package/src/components/common/AutoRefreshButton.vue +53 -0
  39. package/src/components/common/Breadcrumb.vue +45 -0
  40. package/src/components/common/ButtonToggle.vue +24 -0
  41. package/src/components/common/Card.vue +116 -0
  42. package/src/components/common/Carousel.vue +66 -0
  43. package/src/components/common/CategoryCard.vue +28 -0
  44. package/src/components/common/CodeEditor.vue +59 -0
  45. package/src/components/common/DatePicker.vue +21 -0
  46. package/src/components/common/DatePickerInput.vue +109 -0
  47. package/src/components/common/Dialog.vue +103 -0
  48. package/src/components/common/EditorHeading.vue +10 -0
  49. package/src/components/common/EventList.vue +41 -0
  50. package/src/components/common/Facet.vue +206 -0
  51. package/src/components/common/Feed.vue +58 -0
  52. package/src/components/common/Flag.vue +27 -0
  53. package/src/components/common/HomeCard.vue +20 -0
  54. package/src/components/common/ItemBox.vue +49 -0
  55. package/src/components/common/Loading.vue +19 -0
  56. package/src/components/common/LoadingDots.vue +12 -0
  57. package/src/components/common/PageHeading.vue +30 -0
  58. package/src/components/common/Pagination.vue +105 -0
  59. package/src/components/common/Popover.vue +24 -0
  60. package/src/components/common/PowerToggle.vue +130 -0
  61. package/src/components/common/ProgressBar.vue +33 -0
  62. package/src/components/common/RadioButtons.vue +52 -0
  63. package/src/components/common/Schedule.vue +79 -0
  64. package/src/components/common/SearchBar.vue +30 -0
  65. package/src/components/common/Separator.vue +3 -0
  66. package/src/components/common/Slideout.vue +95 -0
  67. package/src/components/common/Sort.vue +83 -0
  68. package/src/components/common/Table.vue +48 -0
  69. package/src/components/common/Tabs.vue +129 -0
  70. package/src/components/common/Tag.vue +53 -0
  71. package/src/components/common/Tooltip.vue +49 -0
  72. package/src/components/common/VerticalTabs.vue +34 -0
  73. package/src/components/common/card/CardItem.vue +27 -0
  74. package/src/components/common/card/CardItemGroup.vue +45 -0
  75. package/src/components/common/facet/Leaf.vue +97 -0
  76. package/src/components/common/facet/TriState.vue +37 -0
  77. package/src/components/common/table/TableData.vue +48 -0
  78. package/src/components/common/table/TableHeader.vue +21 -0
  79. package/src/components/dialogs/ChooseValueDialog.vue +97 -0
  80. package/src/components/dialogs/ConfirmDialog.vue +73 -0
  81. package/src/components/dialogs/CopyDialog.vue +51 -0
  82. package/src/components/dialogs/DownloadDialog.vue +48 -0
  83. package/src/components/dialogs/NameDescDialog.vue +74 -0
  84. package/src/components/dialogs/NameDialog.vue +56 -0
  85. package/src/components/dialogs/PopupEditor.vue +113 -0
  86. package/src/components/dialogs/ProgressDialog.vue +58 -0
  87. package/src/components/dialogs/ResetPasswordDialog.vue +58 -0
  88. package/src/components/dialogs/Wizard.vue +99 -0
  89. package/src/components/dialogs/wizard/Stepper.vue +31 -0
  90. package/src/components/form/CheckBox.vue +26 -0
  91. package/src/components/form/Editor.vue +93 -0
  92. package/src/components/form/FormCol.vue +19 -0
  93. package/src/components/form/FormRow.vue +19 -0
  94. package/src/components/form/FormSection.vue +21 -0
  95. package/src/components/form/GreyForm.vue +7 -0
  96. package/src/components/form/GreyInput.vue +51 -0
  97. package/src/components/form/GreyInputAutocomplete.vue +100 -0
  98. package/src/components/form/GreyInputCopy.vue +66 -0
  99. package/src/components/form/GreyInputGrow.vue +42 -0
  100. package/src/components/form/GreyInputToken.vue +78 -0
  101. package/src/components/form/GreyPassword.vue +36 -0
  102. package/src/components/form/GreySelect.vue +154 -0
  103. package/src/components/form/GreySelectInput.vue +123 -0
  104. package/src/components/form/GreySelectInputMultiple.vue +218 -0
  105. package/src/components/form/GreyTel.vue +58 -0
  106. package/src/components/form/HamburgerItem.vue +95 -0
  107. package/src/components/form/KeyValueEntry.vue +74 -0
  108. package/src/components/form/RadioInput.vue +38 -0
  109. package/src/components/form/UploadFile.vue +99 -0
  110. package/src/components/icons/AiIcon.vue +6 -0
  111. package/src/components/icons/GithubIcon.vue +18 -0
  112. package/src/components/icons/HighPriorityIcon.vue +6 -0
  113. package/src/components/icons/PowerOffIcon.vue +6 -0
  114. package/src/components/icons/SaveIcon.vue +6 -0
  115. package/src/components/index.js +134 -0
  116. package/src/components/menu/DialogMenu.vue +142 -0
  117. package/src/components/menu/GrandChild.vue +39 -0
  118. package/src/components/menu/GridMenu.vue +88 -0
  119. package/src/components/menu/MenuAvatar.vue +66 -0
  120. package/src/components/menu/MenuDesktop.vue +90 -0
  121. package/src/components/notifications/Notify.vue +123 -0
  122. package/src/components/notifications/NotifyList.vue +130 -0
  123. package/src/components/page-structure/FacetPage.vue +77 -0
  124. package/src/components/query/Child.vue +63 -0
  125. package/src/components/query/LVDBQuery.vue +38 -0
  126. package/src/components/status/Active.vue +44 -0
  127. package/src/components/status/ScoreLevel.vue +43 -0
  128. package/src/components/status/Status.vue +51 -0
  129. package/src/components/status/TaskDot.vue +25 -0
  130. package/src/components/status/TaskStatus.vue +26 -0
  131. package/src/components/status/TicketStatus.vue +201 -0
  132. package/src/components/status/Trend.vue +20 -0
  133. package/src/components/tables/ArgumentRunTable.vue +96 -0
  134. package/src/components/tables/ArgumentTable.vue +67 -0
  135. package/src/components/tables/CloudFormationParameters.vue +25 -0
  136. package/src/constants/colors.js +248 -0
  137. package/src/constants/font-map.js +128 -0
  138. package/src/constants/fpl2.js +162 -0
  139. package/src/constants/icon-svg.js +405 -0
  140. package/src/constants/schedule.js +52 -0
  141. package/src/fpl/AddPanel.vue +237 -0
  142. package/src/fpl/Configs/Alert.vue +16 -0
  143. package/src/fpl/Configs/AlertSprite.vue +2 -0
  144. package/src/fpl/Configs/Chart.vue +63 -0
  145. package/src/fpl/Configs/Config.js +154 -0
  146. package/src/fpl/Configs/Counter.vue +35 -0
  147. package/src/fpl/Configs/Histogram.vue +70 -0
  148. package/src/fpl/Configs/IPMap.vue +37 -0
  149. package/src/fpl/Configs/Image.vue +163 -0
  150. package/src/fpl/Configs/MetricChart.vue +20 -0
  151. package/src/fpl/Configs/PieChart.vue +37 -0
  152. package/src/fpl/Configs/SparkChart.vue +41 -0
  153. package/src/fpl/Configs/StackedBarChart.vue +49 -0
  154. package/src/fpl/Configs/Table.vue +211 -0
  155. package/src/fpl/Configs/Text.vue +14 -0
  156. package/src/fpl/Configs/TopNChart.vue +37 -0
  157. package/src/fpl/Outputs/FPLAlert.vue +64 -0
  158. package/src/fpl/Outputs/FPLStream.vue +41 -0
  159. package/src/fpl/Outputs/FPLTable.vue +77 -0
  160. package/src/fpl/Panel.vue +202 -0
  161. package/src/fpl/Panels/Alert.vue +85 -0
  162. package/src/fpl/Panels/AlertSprite.vue +9 -0
  163. package/src/fpl/Panels/Chart.vue +98 -0
  164. package/src/fpl/Panels/Counter.vue +43 -0
  165. package/src/fpl/Panels/Histogram.vue +138 -0
  166. package/src/fpl/Panels/IPMap.vue +48 -0
  167. package/src/fpl/Panels/Image.vue +35 -0
  168. package/src/fpl/Panels/MetricChart.vue +97 -0
  169. package/src/fpl/Panels/PieChart.vue +54 -0
  170. package/src/fpl/Panels/SparkChart.vue +166 -0
  171. package/src/fpl/Panels/StackedBarChart.vue +74 -0
  172. package/src/fpl/Panels/Table.vue +103 -0
  173. package/src/fpl/Panels/Text.vue +24 -0
  174. package/src/fpl/Panels/TopNChart.vue +69 -0
  175. package/src/fpl/index.js +39 -0
  176. package/src/utils/download.js +220 -0
  177. package/src/utils/formatOutput.js +156 -0
  178. package/src/utils/random.js +32 -0
  179. package/src/utils/timeUtils.js +138 -0
@@ -45,7 +45,7 @@ function M$(e, t, n, r, i, a) {
45
45
  K("input", ps({
46
46
  type: n.type,
47
47
  class: [
48
- "flex-1 border-0 text-sm bg-transparent p-0.5 focus:ring-0",
48
+ "flex-1 border-0 text-sm bg-transparent p-0.5 focus:ring-0 focus:outline-none",
49
49
  n.readonly ? "disabled" : ""
50
50
  ],
51
51
  value: e.$attrs.modelValue
@@ -3117,7 +3117,7 @@ const yH = { class: "flex items-center" }, bH = {
3117
3117
  onChange: s[0] || (s[0] = (o) => n.value = o.target.value),
3118
3118
  displayValue: (o) => o
3119
3119
  }, null, 8, ["displayValue"]),
3120
- he(J(cg), { class: "input-block absolute z-10 mt-1 max-h-56 w-full overflow-auto rounded-md bg-white p-1 text-base shadow-lg ring-1 ring-black ring-opacity-5 focus:outline-none sm:text-sm" }, {
3120
+ he(J(cg), { class: "input-block absolute z-10 mt-1 max-h-56 w-full overflow-auto rounded-md bg-white p-1 text-base shadow-lg ring-1 ring-black/5 focus:outline-hidden sm:text-sm" }, {
3121
3121
  default: Me(() => [
3122
3122
  r.value && !i.value.some((o) => o.value === r.value) ? (q(), Je(J(mh), {
3123
3123
  key: 0,
@@ -3664,7 +3664,7 @@ function ZH(e, t, n, r, i, a) {
3664
3664
  K("input", ps({
3665
3665
  type: "text",
3666
3666
  class: [
3667
- "input-block pr-8",
3667
+ "pl-3 input-block pr-8",
3668
3668
  n.error ? "ring-red-600 " : "",
3669
3669
  n.readonly ? "disabled" : ""
3670
3670
  ],
@@ -3740,7 +3740,7 @@ function nj(e, t, n, r, i, a) {
3740
3740
  Di(K("input", ps({
3741
3741
  type: "text",
3742
3742
  class: [
3743
- "input-block pr-8",
3743
+ "pl-3 input-block pr-8",
3744
3744
  n.error ? "ring-red-600 " : "",
3745
3745
  n.readonly ? "disabled" : ""
3746
3746
  ],
@@ -4092,7 +4092,7 @@ function Cj(e, t, n, r, i, a) {
4092
4092
  { trim: !0 }
4093
4093
  ]
4094
4094
  ]),
4095
- he(o, { class: "absolute inset-y-0 right-0 flex items-center rounded-r-md px-2 focus:outline-none" }, {
4095
+ he(o, { class: "absolute inset-y-0 right-0 flex items-center rounded-r-md px-2 focus:outline-hidden" }, {
4096
4096
  default: Me(() => [
4097
4097
  he(s, {
4098
4098
  class: "icon-md text-gray-400",
@@ -4282,7 +4282,7 @@ const vSe = /* @__PURE__ */ xr(bj, [["render", Cj]]), Sj = { class: "relative w-
4282
4282
  onAfterLeave: c[3] || (c[3] = (p) => a.value = "")
4283
4283
  }, {
4284
4284
  default: Me(() => [
4285
- he(J(cg), { class: "input-block absolute z-20 mt-1 max-h-56 w-full overflow-auto rounded-md bg-white p-1 text-base shadow-lg ring-1 ring-black ring-opacity-5 focus:outline-none sm:text-sm" }, {
4285
+ he(J(cg), { class: "input-block absolute z-20 mt-1 max-h-56 w-full overflow-auto rounded-md bg-white p-1 text-base shadow-lg ring-1 ring-black/5 focus:outline-hidden sm:text-sm" }, {
4286
4286
  default: Me(() => [
4287
4287
  o.value.length === 0 && a.value !== "" ? (q(), de("div", {
4288
4288
  key: 0,
@@ -4338,7 +4338,7 @@ function Qj(e, t, n, r, i, a) {
4338
4338
  K("input", ps({
4339
4339
  type: "checkbox",
4340
4340
  class: [
4341
- "icon-md rounded border-gray-400 text-indigo-600 focus:ring-indigo-600",
4341
+ "icon-md rounded-sm border-gray-400 text-indigo-600 focus:ring-indigo-600",
4342
4342
  e.$attrs.disabled ? "cursor-not-allowed" : "cursor-pointer"
4343
4343
  ],
4344
4344
  checked: e.$attrs.modelValue
@@ -18101,7 +18101,7 @@ const EU = {
18101
18101
  K("div", DX, [
18102
18102
  K("button", {
18103
18103
  type: "button",
18104
- class: "relative rounded-md bg-sky-700 text-sky-200 hover:text-white focus:outline-none focus:ring-2 focus:ring-white",
18104
+ class: "relative rounded-md bg-sky-700 text-sky-200 hover:text-white focus:outline-hidden focus:ring-2 focus:ring-white",
18105
18105
  onClick: u
18106
18106
  }, [
18107
18107
  f[3] || (f[3] = K("span", { class: "absolute -inset-2.5" }, null, -1)),
@@ -18141,7 +18141,7 @@ const EU = {
18141
18141
  _: 1
18142
18142
  }, 8, ["show"]));
18143
18143
  }
18144
- }), PX = { class: "relative isolate inline-flex rounded-md shadow-sm" }, R4 = {
18144
+ }), PX = { class: "relative isolate inline-flex rounded-md shadow-xs" }, R4 = {
18145
18145
  __name: "ActionButtons",
18146
18146
  props: {
18147
18147
  add: {
@@ -18557,7 +18557,7 @@ const EU = {
18557
18557
  }, null, 8, ["tooltip", "showingTooltip", "direction"])
18558
18558
  ], 42, jX));
18559
18559
  }
18560
- }, qX = { class: "circle-btn std-white outline outline-slate-200 p-3 m-2 dark:std-dark" }, KX = ["src"], RSe = /* @__PURE__ */ xt({
18560
+ }, qX = { class: "circle-btn std-white outline outline-2 outline-slate-200 p-3 m-2 dark:std-dark" }, KX = ["src"], RSe = /* @__PURE__ */ xt({
18561
18561
  __name: "ImageButton",
18562
18562
  props: {
18563
18563
  src: {
@@ -18568,7 +18568,7 @@ const EU = {
18568
18568
  setup(e) {
18569
18569
  return (t, n) => (q(), de("button", qX, [
18570
18570
  K("img", {
18571
- class: "h-8 w-8",
18571
+ class: "icon-xl",
18572
18572
  src: e.src
18573
18573
  }, null, 8, KX)
18574
18574
  ]));
@@ -19013,7 +19013,7 @@ const EU = {
19013
19013
  default: Me(() => [
19014
19014
  K("div", null, [
19015
19015
  he(J(Cu), {
19016
- class: "inline-flex w-full justify-center rounded-md bg-white dark:bg-transparent px-3 py-1 text-sm font-semibold text-gray-900 dark:text-white shadow-sm ring-1 ring-inset ring-gray-300 hover:bg-gray-50 dark:hoverdark-bg-hover",
19016
+ class: "inline-flex w-full justify-center rounded-md bg-white dark:bg-transparent px-3 py-1 text-sm font-semibold text-gray-900 dark:text-white shadow-xs ring-1 ring-inset ring-gray-300 hover:bg-gray-50 dark:hoverdark-bg-hover",
19017
19017
  disabled: e.disabled,
19018
19018
  onClick: p[0] || (p[0] = (h) => d(h))
19019
19019
  }, {
@@ -19056,7 +19056,7 @@ const EU = {
19056
19056
  }, {
19057
19057
  default: Me(() => [
19058
19058
  he(J(Su), {
19059
- class: "absolute z-10 w-30 origin-top-right rounded-sm bg-white dark:bg-zinc-800 shadow-lg ring-1 ring-black dark:ring-gray-300 ring-opacity-5 focus:outline-none",
19059
+ class: "absolute z-10 w-30 origin-top-right rounded-xs bg-white dark:bg-zinc-800 shadow-lg ring-1 ring-black dark:ring-gray-300/5 focus:outline-hidden",
19060
19060
  style: { transform: "translateX(-60px)" }
19061
19061
  }, {
19062
19062
  default: Me(() => [
@@ -19120,7 +19120,7 @@ const EU = {
19120
19120
  l.value ? (q(), de("div", {
19121
19121
  key: 0,
19122
19122
  class: st([
19123
- "absolute top-0 w-80 rounded-sm bg-white dark:bg-zinc-800 shadow-lg ring-1 ring-black dark:ring-gray-300 ring-opacity-5",
19123
+ "absolute top-0 w-80 rounded-xs bg-white dark:bg-zinc-800 shadow-lg ring-1 ring-black dark:ring-gray-300/5",
19124
19124
  { "left-full": e.subItemDirection === "right" },
19125
19125
  { "right-full": e.subItemDirection === "left" }
19126
19126
  ])
@@ -19155,7 +19155,7 @@ const EU = {
19155
19155
  const t = e, n = ze(() => typeof t.score == "string" ? t.score : t.score === 0 ? "none" : t.score < 1e3 ? "low" : t.score < 2e3 ? "medium" : t.score < 4e3 ? "serious" : t.score < 8e3 ? "high" : "critical");
19156
19156
  return (r, i) => (q(), de("div", {
19157
19157
  class: st([
19158
- "text-left justify-start inline-flex items-center rounded mx-2 px-2 py-0.5 text-xs font-medium bg-slate-200 dark:bg-slate-700",
19158
+ "text-left justify-start inline-flex items-center rounded-sm mx-2 px-2 py-0.5 text-xs font-medium bg-slate-200 dark:bg-slate-700",
19159
19159
  { "score-none": n.value === "none" },
19160
19160
  { "score-low": n.value === "low" },
19161
19161
  { "score-medium": n.value === "medium" },
@@ -19316,7 +19316,7 @@ const EU = {
19316
19316
  default: Me(() => [
19317
19317
  e.dict.length ? (q(), Je(J(cg), {
19318
19318
  key: 0,
19319
- class: "absolute z-10 max-h-56 w-full overflow-auto bg-slate-100 dark:dark-bg p-1 text-base shadow-lg ring-1 ring-black ring-opacity-5 sm:text-md"
19319
+ class: "absolute z-10 max-h-56 w-full overflow-auto bg-slate-100 dark:dark-bg p-1 text-base shadow-lg ring-1 ring-black/5 sm:text-md"
19320
19320
  }, {
19321
19321
  default: Me(() => [
19322
19322
  (q(!0), de(gt, null, tn(a.value, (d) => (q(), Je(J(mh), {
@@ -19439,7 +19439,7 @@ const EU = {
19439
19439
  ])
19440
19440
  ]));
19441
19441
  }
19442
- }, yJ = { class: "isolate inline-flex rounded-md shadow-sm rounded-md" }, bJ = ["onClick"], XSe = {
19442
+ }, yJ = { class: "isolate inline-flex rounded-md shadow-xs rounded-md" }, bJ = ["onClick"], XSe = {
19443
19443
  __name: "ButtonToggle",
19444
19444
  props: {
19445
19445
  options: Array,
@@ -19545,7 +19545,7 @@ const EU = {
19545
19545
  e.readonly ? "cursor-not-allowed" : "cursor-pointer",
19546
19546
  { "h-6 w-9": n.size === "sm" },
19547
19547
  { "h-8 w-[52px]": n.size === "md" },
19548
- "relative inline-flex flex-shrink-0 rounded-full border-2 border-transparent transition-colors duration-200 ease-in-out focus:outline-none focus:ring-2 focus:ring-indigo-600 focus:ring-offset-1"
19548
+ "relative inline-flex flex-shrink-0 rounded-full border-2 border-transparent transition-colors duration-200 ease-in-out focus:outline-hidden focus:ring-2 focus:ring-indigo-600 focus:ring-offset-1"
19549
19549
  ],
19550
19550
  disabled: n.readonly,
19551
19551
  "onUpdate:modelValue": o[0] || (o[0] = (l) => r("toggle")),
@@ -19559,7 +19559,7 @@ const EU = {
19559
19559
  e.forceActive || s.$attrs.modelValue === e.powerState ? n.size === "sm" ? "translate-x-3" : "translate-x-5" : "translate-x-0",
19560
19560
  { "h-5 w-5": n.size === "sm" },
19561
19561
  { "h-7 w-7": n.size === "md" },
19562
- "pointer-events-none relative inline-block transform rounded-full bg-gray-100 shadow ring-0 transition duration-200 ease-in-out"
19562
+ "pointer-events-none relative inline-block transform rounded-full bg-gray-100 shadow-sm ring-0 transition duration-200 ease-in-out"
19563
19563
  ])
19564
19564
  }, [
19565
19565
  K("span", {
@@ -19610,7 +19610,7 @@ const EU = {
19610
19610
  __: [5]
19611
19611
  }, 16, ["class", "disabled"]));
19612
19612
  }
19613
- }, FJ = { class: "bg-gray-200 dark:bg-gray-500 rounded-xl shadow-sm overflow-hidden p-1" }, LJ = {
19613
+ }, FJ = { class: "bg-gray-200 dark:bg-gray-500 rounded-xl shadow-xs overflow-hidden p-1" }, LJ = {
19614
19614
  key: 0,
19615
19615
  class: "relative text-green-900 font-medium text-sm"
19616
19616
  }, UJ = {
@@ -19676,7 +19676,7 @@ const EU = {
19676
19676
  class: "flex items-center bg-neutral-200 dark:dark-bg justify-between px-4 py-3 sm:px-6 rounded-lg",
19677
19677
  "aria-label": "Pagination"
19678
19678
  }, PJ = { class: "hidden sm:block" }, $J = { class: "text-sm" }, RJ = { class: "font-medium" }, HJ = { class: "font-medium" }, jJ = { class: "font-medium" }, VJ = { class: "flex flex-1 space-x-3 sm:justify-end" }, qJ = {
19679
- class: "isolate inline-flex -space-x-px rounded-md shadow-sm",
19679
+ class: "isolate inline-flex -space-x-px rounded-md shadow-xs",
19680
19680
  "aria-label": "Pagination"
19681
19681
  }, KJ = ["onClick"], FU = {
19682
19682
  __name: "Pagination",
@@ -19887,14 +19887,14 @@ const EU = {
19887
19887
  const n = e, r = t;
19888
19888
  return (i, a) => (q(), de("div", {
19889
19889
  class: st([
19890
- { "disabled-box dark:dark-disabled-box": n.disabled },
19890
+ { "disabled-box": n.disabled },
19891
19891
  { "selected-green-box": n.inUse && n.selected && !n.disabled },
19892
19892
  {
19893
- "green-box dark:dark-green-box": n.inUse && !n.selected && !n.disabled
19893
+ "green-box": n.inUse && !n.selected && !n.disabled
19894
19894
  },
19895
19895
  { "selected-blue-box": !n.inUse && n.selected && !n.disabled },
19896
19896
  {
19897
- "blue-box dark:dark-blue-box": !n.inUse && !n.selected && !n.disabled
19897
+ "blue-box": !n.inUse && !n.selected && !n.disabled
19898
19898
  },
19899
19899
  "box"
19900
19900
  ]),
@@ -19952,7 +19952,7 @@ const EU = {
19952
19952
  { "bg-gray-200": a },
19953
19953
  s ? "white-bg-hover text-black dark:text-white dark:bg-slate-800" : "white-bg dark:bg-slate-600 dark:text-white",
19954
19954
  "cursor-pointer"
19955
- ], "relative flex shadow-md focus:outline-none"])
19955
+ ], "relative flex shadow-md focus:outline-hidden"])
19956
19956
  }, [
19957
19957
  he(J(uH), { as: "template" }, {
19958
19958
  default: Me(() => [
@@ -19990,7 +19990,7 @@ const EU = {
19990
19990
  e.size > 1 ? (q(), de("button", {
19991
19991
  key: 0,
19992
19992
  type: "button",
19993
- class: "absolute top-0 start-0 z-30 flex items-center justify-center h-full cursor-pointer group focus:outline-none",
19993
+ class: "absolute top-0 start-0 z-30 flex items-center justify-center h-full cursor-pointer group focus:outline-hidden",
19994
19994
  onClick: a
19995
19995
  }, [
19996
19996
  he(J(cL), { class: "icon-lg" })
@@ -19998,7 +19998,7 @@ const EU = {
19998
19998
  e.size > 1 ? (q(), de("button", {
19999
19999
  key: 1,
20000
20000
  type: "button",
20001
- class: "absolute top-0 end-0 z-30 flex items-center justify-center h-full cursor-pointer group focus:outline-none",
20001
+ class: "absolute top-0 end-0 z-30 flex items-center justify-center h-full cursor-pointer group focus:outline-hidden",
20002
20002
  onClick: s
20003
20003
  }, [
20004
20004
  he(J(fL), { class: "icon-lg" })
@@ -20109,7 +20109,7 @@ const EU = {
20109
20109
  "leave-to-class": "transform opacity-0 scale-95"
20110
20110
  }, {
20111
20111
  default: Me(() => [
20112
- he(J(Su), { class: "absolute right-0 z-10 mt-0.5 w-32 origin-top-right rounded-md py-2 shadow-lg ring-1 ring-gray-900/5 focus:outline-none bg-white dark:bg-black" }, {
20112
+ he(J(Su), { class: "absolute right-0 z-10 mt-0.5 w-32 origin-top-right rounded-md py-2 shadow-lg ring-1 ring-gray-900/5 focus:outline-hidden bg-white dark:bg-black" }, {
20113
20113
  default: Me(() => [
20114
20114
  (q(!0), de(gt, null, tn(e.menuItems, (a) => (q(), Je(J(jo), null, {
20115
20115
  default: Me(({ active: s }) => [
@@ -20349,7 +20349,7 @@ const xee = { class: "fixed inset-0 overflow-hidden" }, _ee = { class: "absolute
20349
20349
  "leave-to": "opacity-0"
20350
20350
  }, {
20351
20351
  default: Me(() => i[2] || (i[2] = [
20352
- K("div", { class: "fixed inset-0 bg-opacity-50 bg-gray-500 transition-opacity" }, null, -1)
20352
+ K("div", { class: "fixed inset-0 bg-gray-500/50 transition-opacity" }, null, -1)
20353
20353
  ])),
20354
20354
  _: 1,
20355
20355
  __: [2]
@@ -20381,7 +20381,7 @@ const xee = { class: "fixed inset-0 overflow-hidden" }, _ee = { class: "absolute
20381
20381
  K("div", Fee, [
20382
20382
  K("button", {
20383
20383
  type: "button",
20384
- class: "relative rounded-md bg-sky-700 text-sky-200 hover:text-white focus:outline-none focus:ring-2 focus:ring-white",
20384
+ class: "relative rounded-md bg-sky-700 text-sky-200 hover:text-white focus:outline-hidden focus:ring-2 focus:ring-white",
20385
20385
  onClick: i[0] || (i[0] = (a) => n("close"))
20386
20386
  }, [
20387
20387
  i[3] || (i[3] = K("span", { class: "absolute -inset-2.5" }, null, -1)),
@@ -20423,9 +20423,9 @@ const xee = { class: "fixed inset-0 overflow-hidden" }, _ee = { class: "absolute
20423
20423
  _: 3
20424
20424
  }, 8, ["show"]));
20425
20425
  }
20426
- }, Qee = { class: "w-full" }, Dee = { class: "table-frame3" }, Pee = { class: "std-table dark:dark-std-table" }, $ee = { key: 0 }, Ree = {
20426
+ }, Qee = { class: "w-full" }, Dee = { class: "table-frame3" }, Pee = { class: "std-table" }, $ee = { key: 0 }, Ree = {
20427
20427
  key: 1,
20428
- class: "std-table-body dark:dark-std-table-body"
20428
+ class: "std-table-body"
20429
20429
  }, J2 = {
20430
20430
  __name: "Table",
20431
20431
  props: {
@@ -20508,7 +20508,7 @@ const xee = { class: "fixed inset-0 overflow-hidden" }, _ee = { class: "absolute
20508
20508
  return (n, r) => (q(), de("td", {
20509
20509
  colspan: t.colspan,
20510
20510
  class: st([
20511
- "table-font dark:dark-table-font",
20511
+ "table-font",
20512
20512
  {
20513
20513
  "cursor-pointer hover:white-bg-hover dark:hover:dark-bg-hover": t.hover
20514
20514
  },
@@ -20745,7 +20745,7 @@ const xee = { class: "fixed inset-0 overflow-hidden" }, _ee = { class: "absolute
20745
20745
  "leave-to": "opacity-0"
20746
20746
  }, {
20747
20747
  default: Me(() => o[1] || (o[1] = [
20748
- K("div", { class: "fixed inset-0 bg-opacity-75 bg-gray-500 transition-opacity" }, null, -1)
20748
+ K("div", { class: "fixed inset-0 bg-gray-500/75 transition-opacity" }, null, -1)
20749
20749
  ])),
20750
20750
  _: 1,
20751
20751
  __: [1]
@@ -26453,7 +26453,7 @@ const poe = { class: "col" }, dke = {
26453
26453
  }, Ioe = {
26454
26454
  key: 1,
26455
26455
  class: "flex flex-shrink-0 px-1 py-1"
26456
- }, Toe = { class: "relative isolate inline-flex rounded-md shadow-sm" }, Noe = /* @__PURE__ */ xt({
26456
+ }, Toe = { class: "relative isolate inline-flex rounded-md shadow-xs" }, Noe = /* @__PURE__ */ xt({
26457
26457
  __name: "Facet",
26458
26458
  props: {
26459
26459
  tree: {
@@ -26611,7 +26611,7 @@ const poe = { class: "col" }, dke = {
26611
26611
  ])) : At("", !0)
26612
26612
  ]));
26613
26613
  }
26614
- }), hke = /* @__PURE__ */ xr(Noe, [["__scopeId", "data-v-404d4643"]]), Ooe = [
26614
+ }), hke = /* @__PURE__ */ xr(Noe, [["__scopeId", "data-v-0f89cff2"]]), Ooe = [
26615
26615
  // { label: "Minute", value: "minute" },
26616
26616
  { label: "Hourly", value: "hourly" },
26617
26617
  { label: "Daily", value: "daily" },
@@ -26947,7 +26947,7 @@ const vke = /* @__PURE__ */ xr(nle, [["render", ale]]), sle = { class: "py-1" },
26947
26947
  default: Me(({ active: l }) => [
26948
26948
  K("span", {
26949
26949
  class: st([
26950
- l ? "outline-none white-bg-hover dark:dark-bg-hover" : "",
26950
+ l ? "outline-hidden white-bg-hover dark:dark-bg-hover" : "",
26951
26951
  {
26952
26952
  "bg-gray-400 dark:bg-slate-800": e.current.label === o.label
26953
26953
  },
@@ -41251,7 +41251,7 @@ function Sye(e, t, n, r, i, a) {
41251
41251
  }, 8, ["open", "title", "onClose", "onHide"])
41252
41252
  ], 64);
41253
41253
  }
41254
- const Uke = /* @__PURE__ */ xr(bye, [["render", Sye]]), kye = { class: "w-full select-none std-table dark:dark-std-table" }, Eye = { class: "text-left bg-neutral-200 dark:dark-bg" }, Fye = { class: "std-table-body dark:dark-std-table-body" }, Ike = {
41254
+ const Uke = /* @__PURE__ */ xr(bye, [["render", Sye]]), kye = { class: "w-full select-none std-table" }, Eye = { class: "text-left bg-neutral-200 dark:dark-bg" }, Fye = { class: "std-table-body" }, Ike = {
41255
41255
  __name: "ArgumentTable",
41256
41256
  props: {
41257
41257
  data: Object,
@@ -41814,7 +41814,7 @@ const Uke = /* @__PURE__ */ xr(bye, [["render", Sye]]), kye = { class: "w-full s
41814
41814
  onChange: l[0] || (l[0] = (A) => a.value = A.target.value),
41815
41815
  displayValue: (A) => A.label
41816
41816
  }, null, 8, ["displayValue"]),
41817
- he(J(mv), { class: "absolute inset-y-0 right-0 flex items-center pr-2" }, {
41817
+ he(J(mv), { class: "input-icon" }, {
41818
41818
  default: Me(() => [
41819
41819
  he(J(CZ), { class: "icon-md" })
41820
41820
  ]),
@@ -41888,7 +41888,7 @@ const Uke = /* @__PURE__ */ xr(bye, [["render", Sye]]), kye = { class: "w-full s
41888
41888
  class: "relative ml-auto mt-1.5"
41889
41889
  }, {
41890
41890
  default: Me(() => [
41891
- he(J(Cu), { class: "rounded-full ring-2 size-7 ring-black dark:ring-white text-sm" }, {
41891
+ he(J(Cu), { class: "rounded-full ring-2 w-7 h-7 ring-black dark:ring-white text-sm" }, {
41892
41892
  default: Me(() => [
41893
41893
  dr(Ye(r.value), 1)
41894
41894
  ]),
@@ -42161,7 +42161,7 @@ const Uke = /* @__PURE__ */ xr(bye, [["render", Sye]]), kye = { class: "w-full s
42161
42161
  (q(!0), de(gt, null, tn(n.value, (A) => (q(), de("tr", null, [
42162
42162
  (q(!0), de(gt, null, tn(e.data.columns, (u) => (q(), de("td", {
42163
42163
  key: u.name,
42164
- class: "table-font dark:dark-table-font break-all"
42164
+ class: "table-font break-all"
42165
42165
  }, Ye(u.unit ? s(A[u.name], u.unit) : A[u.name]), 1))), 128))
42166
42166
  ]))), 256))
42167
42167
  ]),
@@ -42347,13 +42347,17 @@ const Uke = /* @__PURE__ */ xr(bye, [["render", Sye]]), kye = { class: "w-full s
42347
42347
  },
42348
42348
  setup(e) {
42349
42349
  const t = e, n = _e(0);
42350
- return t.obj.table.rows[0] && (n.value = t.obj.table.rows[0][t.config.field] || 0), (r, i) => (q(), de("div", fbe, [
42350
+ t.obj.table.rows[0] && (n.value = t.obj.table.rows[0][t.config.field] || 0);
42351
+ function r(i, a) {
42352
+ return a === "Data" ? si(i) + "B" : a === "Readable Numbers" ? ai(i.toPrecision(3)) : a === "comma" ? i.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",") : a === "comma_data" ? i.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",") + "B" : i;
42353
+ }
42354
+ return (i, a) => (q(), de("div", fbe, [
42351
42355
  K("span", {
42352
42356
  class: st([
42353
42357
  "flex items-center justify-center content-center h-full overflow-hidden",
42354
42358
  e.layout.w > 4 ? "text-7xl" : "text-5xl"
42355
42359
  ])
42356
- }, Ye(e.config.format === "Data" ? J(si)(n.value) + "B" : e.config.format === "Readable Numbers" ? J(ai)(n.value.toPrecision(3)) : n.value), 3)
42360
+ }, Ye(r(n.value, e.config.format)), 3)
42357
42361
  ]));
42358
42362
  }
42359
42363
  };
@@ -44972,7 +44976,7 @@ const Ewe = {
44972
44976
  }, null, 8, ["data", "names", "id", "height", "width", "theme"]))
44973
44977
  ]));
44974
44978
  }
44975
- }, $we = { class: "std-table dark:dark-std-table whitespace-nowrap" }, Rwe = { key: 0 }, Hwe = { class: "std-table-body dark:dark-std-table-body" }, jwe = {
44979
+ }, $we = { class: "std-table whitespace-nowrap" }, Rwe = { key: 0 }, Hwe = { class: "std-table-body" }, jwe = {
44976
44980
  __name: "Table",
44977
44981
  props: {
44978
44982
  config: Object,
@@ -45221,6 +45225,8 @@ const Wwe = /* @__PURE__ */ xr(Gwe, [["render", Ywe]]), Zwe = {
45221
45225
  const n = _e(e.entry), r = [
45222
45226
  { label: "Default", value: "default" },
45223
45227
  { label: "Compact", value: "Readable Numbers" },
45228
+ { label: "Thousands Seperated", value: "comma" },
45229
+ { label: "Thousands Seperated (Data)", value: "comma_data" },
45224
45230
  { label: "Data", value: "Data" }
45225
45231
  ];
45226
45232
  return (i, a) => (q(), de(gt, null, [
@@ -45730,7 +45736,7 @@ const Wwe = /* @__PURE__ */ xr(Gwe, [["render", Ywe]]), Zwe = {
45730
45736
  })
45731
45737
  ], 64));
45732
45738
  }
45733
- }, k5e = { class: "w-full select-none std-table dark:dark-std-table" }, E5e = { class: "text-left bg-neutral-200 dark:dark-bg" }, F5e = { class: "std-table-body dark:dark-std-table-body" }, L5e = {
45739
+ }, k5e = { class: "w-full select-none std-table" }, E5e = { class: "text-left bg-neutral-200 dark:dark-bg" }, F5e = { class: "std-table-body" }, L5e = {
45734
45740
  __name: "Table",
45735
45741
  props: {
45736
45742
  object: Object,
@@ -62702,7 +62708,7 @@ function(e) {
62702
62708
  var A = l.getContext("2d");
62703
62709
  A.fillStyle = "#fff", A.fillRect(0, 0, l.width, l.height);
62704
62710
  var u = { ignoreMouse: !0, ignoreAnimation: !0, ignoreDimensions: !0 }, d = this;
62705
- return (Bn.canvg ? Promise.resolve(Bn.canvg) : import("./index.es-YeMpD96e.mjs")).catch(function(f) {
62711
+ return (Bn.canvg ? Promise.resolve(Bn.canvg) : import("./index.es-D_XhLSeH.mjs")).catch(function(f) {
62706
62712
  return Promise.reject(new Error("Could not load canvg: " + f));
62707
62713
  }).then(function(f) {
62708
62714
  return f.default ? f.default : f;
@@ -63621,7 +63627,7 @@ const iSe = (e, t) => {
63621
63627
  "leave-to-class": "transform opacity-0 scale-95"
63622
63628
  }, {
63623
63629
  default: Me(() => [
63624
- he(J(Su), { class: "absolute right-0 z-10 mt-0.5 w-32 origin-top-right rounded-md py-2 shadow-lg ring-1 ring-gray-900/5 focus:outline-none bg-white dark:bg-black" }, {
63630
+ he(J(Su), { class: "absolute right-0 z-10 mt-0.5 w-32 origin-top-right rounded-md py-2 shadow-lg ring-1 ring-gray-900/5 focus:outline-hidden bg-white dark:bg-black" }, {
63625
63631
  default: Me(() => [
63626
63632
  he(J(jo), null, {
63627
63633
  default: Me(({ active: f }) => [
package/dist/index.css CHANGED
@@ -1 +1 @@
1
- .prism-editor-wrapper{width:100%;height:100%;display:flex;align-items:flex-start;overflow:auto;-o-tab-size:1.5em;tab-size:1.5em;-moz-tab-size:1.5em}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.prism-editor-wrapper .prism-editor__textarea{color:transparent!important}.prism-editor-wrapper .prism-editor__textarea::-moz-selection{background-color:#accef7!important;color:transparent!important}.prism-editor-wrapper .prism-editor__textarea::selection{background-color:#accef7!important;color:transparent!important}}.prism-editor-wrapper .prism-editor__container{position:relative;text-align:left;box-sizing:border-box;padding:0;overflow:hidden;width:100%}.prism-editor-wrapper .prism-editor__line-numbers{height:100%;overflow:hidden;flex-shrink:0;padding-top:4px;margin-top:0;margin-right:10px}.prism-editor-wrapper .prism-editor__line-number{text-align:right;white-space:nowrap}.prism-editor-wrapper .prism-editor__textarea{position:absolute;top:0;left:0;height:100%;width:100%;resize:none;color:inherit;overflow:hidden;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;-webkit-text-fill-color:transparent}.prism-editor-wrapper .prism-editor__editor,.prism-editor-wrapper .prism-editor__textarea{margin:0;border:0;background:none;box-sizing:inherit;display:inherit;font-family:inherit;font-size:inherit;font-style:inherit;font-variant-ligatures:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;-moz-tab-size:inherit;-o-tab-size:inherit;tab-size:inherit;text-indent:inherit;text-rendering:inherit;text-transform:inherit;white-space:pre-wrap;word-wrap:keep-all;overflow-wrap:break-word;padding:0}.prism-editor-wrapper .prism-editor__textarea--empty{-webkit-text-fill-color:inherit!important}.prism-editor-wrapper .prism-editor__editor{position:relative;pointer-events:none}pre[class*=language-],code[class*=language-]{color:#d4d4d4;font-size:13px;text-shadow:none;font-family:Menlo,Monaco,Consolas,Andale Mono,Ubuntu Mono,Courier New,monospace;direction:ltr;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none}pre[class*=language-]::selection,code[class*=language-]::selection,pre[class*=language-] *::selection,code[class*=language-] *::selection{text-shadow:none;background:#264f78}@media print{pre[class*=language-],code[class*=language-]{text-shadow:none}}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto;background:#1e1e1e}:not(pre)>code[class*=language-]{padding:.1em .3em;border-radius:.3em;color:#db4c69;background:#1e1e1e}.namespace{opacity:.7}.token.doctype .token.doctype-tag{color:#569cd6}.token.doctype .token.name{color:#9cdcfe}.token.comment,.token.prolog,.token.timestamp{color:#6a9955}.token.errors{color:#c10015}.token.punctuation,.language-html .language-css,.language-html .language-javascript{color:#fdbe23}.token.property,.token.tag,.token.boolean,.token.number,.token.constant,.token.symbol,.token.inserted,.token.unit{color:#b5cea8}.token.selector,.token.attr-name,.token.string,.token.char,.token.builtin,.token.deleted{color:#ce9178}.language-css .token.string.url{text-decoration:underline}.token.operator,.token.entity{color:#d4d4d4}.token.operator.arrow{color:#569cd6}.token.atrule{color:#ce9178}.token.atrule .token.rule{color:#c586c0}.token.atrule .token.url{color:#9cdcfe}.token.atrule .token.url .token.function{color:#dcdcaa}.token.atrule .token.url .token.punctuation{color:#d4d4d4}.token.keyword.module,.token.keyword.control-flow{color:#c586c0}.token.function,.token.function .token.maybe-class-name,.token.brackets{color:#e9d299}.token.builtinfunction{color:#ce92d8}.token.keyword,.token.curlybraces{color:#569cd6}.token.regex{color:#d16969}.token.important{color:#569cd6}.token.italic{font-style:italic}.token.constant{color:#9cdcfe}.token.class-name,.token.maybe-class-name{color:#4ec9b0}.token.console,.token.parameter,.token.interpolation{color:#9cdcfe}.token.punctuation.interpolation-punctuation,.token.boolean{color:#569cd6}.token.property,.token.variable,.token.imports .token.maybe-class-name,.token.exports .token.maybe-class-name{color:#9cdcfe}.token.selector,.token.escape{color:#d7ba7d}.token.tag{color:#569cd6}.token.tag .token.punctuation,.token.cdata{color:gray}.token.attr-name{color:#9cdcfe}.token.attr-value,.token.attr-value .token.punctuation{color:#ce9178}.token.attr-value .token.punctuation.attr-equals{color:#d4d4d4}.token.entity{color:#569cd6}.token.namespace{color:#4ec9b0}pre[class*=language-javascript],code[class*=language-javascript],pre[class*=language-jsx],code[class*=language-jsx],pre[class*=language-typescript],code[class*=language-typescript],pre[class*=language-tsx],code[class*=language-tsx]{color:#9cdcfe}pre[class*=language-css],code[class*=language-css]{color:#ce9178}pre[class*=language-html],code[class*=language-html]{color:#d4d4d4}.language-regex .token.anchor{color:#dcdcaa}.language-html .token.punctuation{color:gray}pre[class*=language-]>code[class*=language-]{position:relative;z-index:1}.line-highlight.line-highlight{background:#f7ebc6;box-shadow:inset 5px 0 #f7d87c;z-index:0}.list-style[data-v-1065ac64]{background:#303030;color:#fff;font-size:14px}.x-center[data-v-59ba8a5f]{transform:translate(-50%)}.left-tooltip[data-v-59ba8a5f]{transform:translate(-120%)}.right-tooltip[data-v-59ba8a5f]{transform:translate(20%)}.primary[data-v-404d4643]{font-weight:400;padding-top:5px}.primary[data-v-404d4643]:first-child{font-weight:400}
1
+ .prism-editor-wrapper{width:100%;height:100%;display:flex;align-items:flex-start;overflow:auto;-o-tab-size:1.5em;tab-size:1.5em;-moz-tab-size:1.5em}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.prism-editor-wrapper .prism-editor__textarea{color:transparent!important}.prism-editor-wrapper .prism-editor__textarea::-moz-selection{background-color:#accef7!important;color:transparent!important}.prism-editor-wrapper .prism-editor__textarea::selection{background-color:#accef7!important;color:transparent!important}}.prism-editor-wrapper .prism-editor__container{position:relative;text-align:left;box-sizing:border-box;padding:0;overflow:hidden;width:100%}.prism-editor-wrapper .prism-editor__line-numbers{height:100%;overflow:hidden;flex-shrink:0;padding-top:4px;margin-top:0;margin-right:10px}.prism-editor-wrapper .prism-editor__line-number{text-align:right;white-space:nowrap}.prism-editor-wrapper .prism-editor__textarea{position:absolute;top:0;left:0;height:100%;width:100%;resize:none;color:inherit;overflow:hidden;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;-webkit-text-fill-color:transparent}.prism-editor-wrapper .prism-editor__editor,.prism-editor-wrapper .prism-editor__textarea{margin:0;border:0;background:none;box-sizing:inherit;display:inherit;font-family:inherit;font-size:inherit;font-style:inherit;font-variant-ligatures:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;-moz-tab-size:inherit;-o-tab-size:inherit;tab-size:inherit;text-indent:inherit;text-rendering:inherit;text-transform:inherit;white-space:pre-wrap;word-wrap:keep-all;overflow-wrap:break-word;padding:0}.prism-editor-wrapper .prism-editor__textarea--empty{-webkit-text-fill-color:inherit!important}.prism-editor-wrapper .prism-editor__editor{position:relative;pointer-events:none}pre[class*=language-],code[class*=language-]{color:#d4d4d4;font-size:13px;text-shadow:none;font-family:Menlo,Monaco,Consolas,Andale Mono,Ubuntu Mono,Courier New,monospace;direction:ltr;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none}pre[class*=language-]::selection,code[class*=language-]::selection,pre[class*=language-] *::selection,code[class*=language-] *::selection{text-shadow:none;background:#264f78}@media print{pre[class*=language-],code[class*=language-]{text-shadow:none}}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto;background:#1e1e1e}:not(pre)>code[class*=language-]{padding:.1em .3em;border-radius:.3em;color:#db4c69;background:#1e1e1e}.namespace{opacity:.7}.token.doctype .token.doctype-tag{color:#569cd6}.token.doctype .token.name{color:#9cdcfe}.token.comment,.token.prolog,.token.timestamp{color:#6a9955}.token.errors{color:#c10015}.token.punctuation,.language-html .language-css,.language-html .language-javascript{color:#fdbe23}.token.property,.token.tag,.token.boolean,.token.number,.token.constant,.token.symbol,.token.inserted,.token.unit{color:#b5cea8}.token.selector,.token.attr-name,.token.string,.token.char,.token.builtin,.token.deleted{color:#ce9178}.language-css .token.string.url{text-decoration:underline}.token.operator,.token.entity{color:#d4d4d4}.token.operator.arrow{color:#569cd6}.token.atrule{color:#ce9178}.token.atrule .token.rule{color:#c586c0}.token.atrule .token.url{color:#9cdcfe}.token.atrule .token.url .token.function{color:#dcdcaa}.token.atrule .token.url .token.punctuation{color:#d4d4d4}.token.keyword.module,.token.keyword.control-flow{color:#c586c0}.token.function,.token.function .token.maybe-class-name,.token.brackets{color:#e9d299}.token.builtinfunction{color:#ce92d8}.token.keyword,.token.curlybraces{color:#569cd6}.token.regex{color:#d16969}.token.important{color:#569cd6}.token.italic{font-style:italic}.token.constant{color:#9cdcfe}.token.class-name,.token.maybe-class-name{color:#4ec9b0}.token.console,.token.parameter,.token.interpolation{color:#9cdcfe}.token.punctuation.interpolation-punctuation,.token.boolean{color:#569cd6}.token.property,.token.variable,.token.imports .token.maybe-class-name,.token.exports .token.maybe-class-name{color:#9cdcfe}.token.selector,.token.escape{color:#d7ba7d}.token.tag{color:#569cd6}.token.tag .token.punctuation,.token.cdata{color:gray}.token.attr-name{color:#9cdcfe}.token.attr-value,.token.attr-value .token.punctuation{color:#ce9178}.token.attr-value .token.punctuation.attr-equals{color:#d4d4d4}.token.entity{color:#569cd6}.token.namespace{color:#4ec9b0}pre[class*=language-javascript],code[class*=language-javascript],pre[class*=language-jsx],code[class*=language-jsx],pre[class*=language-typescript],code[class*=language-typescript],pre[class*=language-tsx],code[class*=language-tsx]{color:#9cdcfe}pre[class*=language-css],code[class*=language-css]{color:#ce9178}pre[class*=language-html],code[class*=language-html]{color:#d4d4d4}.language-regex .token.anchor{color:#dcdcaa}.language-html .token.punctuation{color:gray}pre[class*=language-]>code[class*=language-]{position:relative;z-index:1}.line-highlight.line-highlight{background:#f7ebc6;box-shadow:inset 5px 0 #f7d87c;z-index:0}.list-style[data-v-1065ac64]{background:#303030;color:#fff;font-size:14px}.x-center[data-v-59ba8a5f]{transform:translate(-50%)}.left-tooltip[data-v-59ba8a5f]{transform:translate(-120%)}.right-tooltip[data-v-59ba8a5f]{transform:translate(20%)}.primary[data-v-0f89cff2]{font-weight:400;padding-top:5px}.primary[data-v-0f89cff2]:first-child{font-weight:400}
@@ -1,4 +1,4 @@
1
- import { c as Da, _ as Va, g as il } from "./index-Dxs_Gn5T.mjs";
1
+ import { c as Da, _ as Va, g as il } from "./index-BBxccHNP.mjs";
2
2
  var fn = {}, cn = {}, cr, vn;
3
3
  function Q() {
4
4
  if (vn) return cr;
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "fluency-v8-components",
3
- "version": "1.3.4",
3
+ "version": "1.3.6",
4
4
  "main": "dist/fluency-v8-components.umd.js",
5
5
  "module": "dist/fluency-v8-components.es.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "files": [
8
- "dist"
8
+ "dist",
9
+ "src"
9
10
  ],
10
11
  "scripts": {
11
12
  "build": "vite build",
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 512 512" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <title>ai</title> <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"> <g id="icon" fill="#0097f5" transform="translate(64.000000, 64.000000)"> <path d="M320,64 L320,320 L64,320 L64,64 L320,64 Z M171.749388,128 L146.817842,128 L99.4840387,256 L121.976629,256 L130.913039,230.977 L187.575039,230.977 L196.319607,256 L220.167172,256 L171.749388,128 Z M260.093778,128 L237.691519,128 L237.691519,256 L260.093778,256 L260.093778,128 Z M159.094727,149.47526 L181.409039,213.333 L137.135039,213.333 L159.094727,149.47526 Z M341.333333,256 L384,256 L384,298.666667 L341.333333,298.666667 L341.333333,256 Z M85.3333333,341.333333 L128,341.333333 L128,384 L85.3333333,384 L85.3333333,341.333333 Z M170.666667,341.333333 L213.333333,341.333333 L213.333333,384 L170.666667,384 L170.666667,341.333333 Z M85.3333333,0 L128,0 L128,42.6666667 L85.3333333,42.6666667 L85.3333333,0 Z M256,341.333333 L298.666667,341.333333 L298.666667,384 L256,384 L256,341.333333 Z M170.666667,0 L213.333333,0 L213.333333,42.6666667 L170.666667,42.6666667 L170.666667,0 Z M256,0 L298.666667,0 L298.666667,42.6666667 L256,42.6666667 L256,0 Z M341.333333,170.666667 L384,170.666667 L384,213.333333 L341.333333,213.333333 L341.333333,170.666667 Z M0,256 L42.6666667,256 L42.6666667,298.666667 L0,298.666667 L0,256 Z M341.333333,85.3333333 L384,85.3333333 L384,128 L341.333333,128 L341.333333,85.3333333 Z M0,170.666667 L42.6666667,170.666667 L42.6666667,213.333333 L0,213.333333 L0,170.666667 Z M0,85.3333333 L42.6666667,85.3333333 L42.6666667,128 L0,128 L0,85.3333333 Z" id="Combined-Shape"> </path> </g> </g> </g></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 17 16" xmlns="http://www.w3.org/2000/svg"><g fill="#fff" fill-rule="evenodd"><path d="m8.20003216 0c-4.5281696 0-8.20003216 3.67233045-8.20003216 8.2025137 0 3.6241466 2.34955472 6.6987785 5.60770169 7.7833978.40979259.0759104.5602814-.1779394.5602814-.3946059 0-.195566-.00765306-.84177-.01112588-1.5271516-2.28132027.4961843-2.76269151-.9677944-2.76269151-.9677944-.37300645-.948109-.91045728-1.2001576-.91045728-1.2001576-.74395492-.5091149.05607959-.4986933.05607959-.4986933.82344388.0578979 1.25703171.8453083 1.25703171.8453083.73134987 1.2540026 1.9182821.8914335 2.38621225.6819077.07357231-.5302154.28612167-.8920125.52060124-1.0968421-1.82130043-.2074672-3.73598109-.9107972-3.73598109-4.05374848 0-.89548638.32033536-1.62725057.84492391-2.20166134-.08514837-.20663091-.36580356-1.04087425.07942464-2.17071817 0 0 .68858276-.22046205 2.25559569.8408051.6540475-.18179917 1.35555686-.27289175 2.0524358-.27597964.69687893.00308789 1.39890278.09418047 2.05423654.27597964 1.5651479-1.06126715 2.252766-.8408051 2.252766-.8408051.4463215 1.12984392.1655376 1.96408726.0803893 2.17071817.5257461.57441077.8438949 1.30611063.8438949 2.20166134 0 3.15041368-1.9182821 3.84415838-3.74421295 4.04718668.29409628.2545575.55616545.7537654.55616545 1.5189817 0 1.0974854-.0095181 1.9808133-.0095181 2.2510031 0 .2182748.1475948.4740546.5633041.3935122 3.2563462-1.0858415 5.6029426-4.1593798 5.6029426-7.7823041 0-4.53018325-3.6713481-8.2025137-8.19996784-8.2025137"/><path d="m3.07518929 11.6824029c-.01787762.0408541-.08159856.0531168-.13950928.0251063-.05905999-.0268489-.09226129-.0826118-.07310669-.1236596.01755837-.0420803.08127932-.0538267.14021161-.025558.05918769.0267843.09289978.0830636.07240436.1241113m.40045868.3611685c-.03881997.0364008-.11473601.0194912-.16626186-.0380143-.05324977-.0573765-.06321015-.1340506-.02381554-.1710323.0400331-.0363363.11365058-.0193621.16702804.0380789.05324977.0580219.06359325.1342442.02298552.1710322m.27480455.4620452c-.04992964.0350455-.1315282.0021944-.18190478-.0709945-.04986579-.0731243-.04986579-.1608994.00108543-.1960739.05056812-.0351746.13088971-.0035497.18196863.0690583.04980194.0744151.04980194.1621902-.00121313.1980747m.46462657.5351695c-.0446302.0496962-.13963698.0364009-.209232-.0314957-.07112739-.0663476-.09098432-.1605121-.04622642-.2102728.04514099-.0498253.14072241-.03582.21082822.0314957.07068044.0662185.09226128.161093.04469405.2102728m.60036877.1807134c-.01960153.0644113-.11116048.0937127-.20335792.0663476-.09206974-.0282042-.15234286-.1037166-.1337629-.1688379.01915459-.0648632.11109663-.0953908.20399641-.0660894.09194204.0280751.15234286.1030065.13318826.1685797m.68337202.0766095c.00229855.0678966-.07591604.1241759-.17271058.1254021-.09736918.0021299-.17609455-.0527941-.17711613-.1195289 0-.068542.07642682-.124305.17373215-.1259185.09679454-.0019362.17609456.0526005.17609456.1200453m.67130462-.0260098c.01162045.0662185-.05567602.1342442-.15176823.1523155-.09449599.0174259-.18196862-.0234282-.19403602-.0890659-.01174815-.0678965.05682529-.1358576.15112974-.1534772.09628375-.0169096.18241557.0229119.19467451.0902276" fill-rule="nonzero"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg width="98" height="96" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M48.854 0C21.839 0 0 22 0 49.217c0 21.756 13.993 40.172 33.405 46.69 2.427.49 3.316-1.059 3.316-2.362 0-1.141-.08-5.052-.08-9.127-13.59 2.934-16.42-5.867-16.42-5.867-2.184-5.704-5.42-7.17-5.42-7.17-4.448-3.015.324-3.015.324-3.015 4.934.326 7.523 5.052 7.523 5.052 4.367 7.496 11.404 5.378 14.235 4.074.404-3.178 1.699-5.378 3.074-6.6-10.839-1.141-22.243-5.378-22.243-24.283 0-5.378 1.94-9.778 5.014-13.2-.485-1.222-2.184-6.275.486-13.038 0 0 4.125-1.304 13.426 5.052a46.97 46.97 0 0 1 12.214-1.63c4.125 0 8.33.571 12.213 1.63 9.302-6.356 13.427-5.052 13.427-5.052 2.67 6.763.97 11.816.485 13.038 3.155 3.422 5.015 7.822 5.015 13.2 0 18.905-11.404 23.06-22.324 24.283 1.78 1.548 3.316 4.481 3.316 9.126 0 6.6-.08 11.897-.08 13.526 0 1.304.89 2.853 3.316 2.364 19.412-6.52 33.405-24.935 33.405-46.691C97.707 22 75.788 0 48.854 0z" fill="#24292f"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#C10015"><path d="M480-120q-33 0-56.5-23.5T400-200q0-33 23.5-56.5T480-280q33 0 56.5 23.5T560-200q0 33-23.5 56.5T480-120Zm-80-240v-480h160v480H400Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#C10015"><path d="M380-120v-120L240-380v-220q0-24 11-45t32-32l77 77h-40v186l140 140v74h40v-74l37-37L56-792l56-56 736 736-56 56-198-198-14 14v120H380Zm306-268-46-46v-166H474L320-754v-86h80v160h160v-160h80v200l-40-40h40q33 0 56.5 23.5T720-600v178l-34 34ZM558-516Zm-130 97Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="800px" height="800px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3 5.75C3 4.23122 4.23122 3 5.75 3H15.7145C16.5764 3 17.4031 3.34241 18.0126 3.9519L20.0481 5.98744C20.6576 6.59693 21 7.42358 21 8.28553V18.25C21 19.7688 19.7688 21 18.25 21H5.75C4.23122 21 3 19.7688 3 18.25V5.75ZM5.75 4.5C5.05964 4.5 4.5 5.05964 4.5 5.75V18.25C4.5 18.9404 5.05964 19.5 5.75 19.5H6V14.25C6 13.0074 7.00736 12 8.25 12H15.75C16.9926 12 18 13.0074 18 14.25V19.5H18.25C18.9404 19.5 19.5 18.9404 19.5 18.25V8.28553C19.5 7.8214 19.3156 7.37629 18.9874 7.0481L16.9519 5.01256C16.6918 4.75246 16.3582 4.58269 16 4.52344V7.25C16 8.49264 14.9926 9.5 13.75 9.5H9.25C8.00736 9.5 7 8.49264 7 7.25V4.5H5.75ZM16.5 19.5V14.25C16.5 13.8358 16.1642 13.5 15.75 13.5H8.25C7.83579 13.5 7.5 13.8358 7.5 14.25V19.5H16.5ZM8.5 4.5V7.25C8.5 7.66421 8.83579 8 9.25 8H13.75C14.1642 8 14.5 7.66421 14.5 7.25V4.5H8.5Z" fill="#FFFFFF"/></svg>
@@ -0,0 +1,15 @@
1
+ import ai from './images/ai.svg';
2
+ import githubDark from './images/github-dark.svg';
3
+ import github from './images/github.svg';
4
+ import highPriority from './images/high-priority.svg';
5
+ import powerOff from './images/power-off.svg';
6
+ import save from './images/save.svg';
7
+
8
+ export {
9
+ ai,
10
+ githubDark,
11
+ github,
12
+ highPriority,
13
+ powerOff,
14
+ save,
15
+ };