@elixir-cloud/trs-filer 2.0.0-alpha.37 → 2.0.0-alpha.38

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.
@@ -1,4 +1,4 @@
1
- import { ECCClientElixirTrsToolCreate } from './chunk.XBT2AOGX.js';
1
+ import { ECCClientElixirTrsToolCreate } from './chunk.JW7KBVNO.js';
2
2
  import * as React from 'react';
3
3
  import { createComponent } from '@lit/react';
4
4
 
@@ -1,4 +1,4 @@
1
- import { tool_create_default } from './chunk.XBT2AOGX.js';
1
+ import { tool_create_default } from './chunk.JW7KBVNO.js';
2
2
 
3
3
  // src/components/tool-create/index.ts
4
4
  var tool_create_default2 = tool_create_default;
@@ -1,4 +1,4 @@
1
- import { ComponentStyles } from './chunk.ETDRGIPN.js';
1
+ import { ComponentStyles } from './chunk.WG3VQJ2S.js';
2
2
  import { RestTrsFilerProvider } from './chunk.3S22ENXV.js';
3
3
  import { __decorateClass, __spreadProps, __spreadValues } from './chunk.S3NI7NKU.js';
4
4
  import { css, LitElement, html } from 'lit';
@@ -128,6 +128,7 @@ var _ECCClientElixirTrsToolCreate = class _ECCClientElixirTrsToolCreate extends
128
128
  this.defaultVerifiedSource = "";
129
129
  this.defaultIncludedApps = "";
130
130
  this.defaultCustomVersionId = "";
131
+ this.supportedDescriptorTypes = [];
131
132
  this.toolClasses = [];
132
133
  this.loading = false;
133
134
  this.error = null;
@@ -1113,21 +1114,7 @@ var _ECCClientElixirTrsToolCreate = class _ECCClientElixirTrsToolCreate extends
1113
1114
  </ecc-utils-design-multi-select-trigger>
1114
1115
 
1115
1116
  <ecc-utils-design-multi-select-content>
1116
- <ecc-utils-design-multi-select-item value="CWL">
1117
- CWL (Common Workflow Language)
1118
- </ecc-utils-design-multi-select-item>
1119
- <ecc-utils-design-multi-select-item value="WDL">
1120
- WDL (Workflow Description Language)
1121
- </ecc-utils-design-multi-select-item>
1122
- <ecc-utils-design-multi-select-item value="NFL">
1123
- Nextflow
1124
- </ecc-utils-design-multi-select-item>
1125
- <ecc-utils-design-multi-select-item value="GALAXY">
1126
- Galaxy
1127
- </ecc-utils-design-multi-select-item>
1128
- <ecc-utils-design-multi-select-item value="SMK">
1129
- Snakemake
1130
- </ecc-utils-design-multi-select-item>
1117
+ ${this.renderDescriptorTypeOptions()}
1131
1118
  </ecc-utils-design-multi-select-content>
1132
1119
  </ecc-utils-design-multi-select>
1133
1120
  </div>
@@ -1733,6 +1720,25 @@ var _ECCClientElixirTrsToolCreate = class _ECCClientElixirTrsToolCreate extends
1733
1720
  </div>
1734
1721
  `;
1735
1722
  }
1723
+ renderDescriptorTypeOptions() {
1724
+ const allDescriptorTypes = [
1725
+ { value: "CWL", label: "CWL (Common Workflow Language)" },
1726
+ { value: "WDL", label: "WDL (Workflow Description Language)" },
1727
+ { value: "NFL", label: "Nextflow" },
1728
+ { value: "GALAXY", label: "Galaxy" },
1729
+ { value: "SMK", label: "Snakemake" }
1730
+ ];
1731
+ const availableTypes = this.supportedDescriptorTypes.length > 0 ? allDescriptorTypes.filter(
1732
+ (type) => this.supportedDescriptorTypes.includes(type.value)
1733
+ ) : allDescriptorTypes;
1734
+ return availableTypes.map(
1735
+ (type) => html`
1736
+ <ecc-utils-design-multi-select-item value=${type.value}>
1737
+ ${type.label}
1738
+ </ecc-utils-design-multi-select-item>
1739
+ `
1740
+ );
1741
+ }
1736
1742
  };
1737
1743
  _ECCClientElixirTrsToolCreate.styles = [
1738
1744
  ComponentStyles,
@@ -1804,6 +1810,9 @@ __decorateClass([
1804
1810
  __decorateClass([
1805
1811
  property({ type: String, attribute: "default-custom-version-id" })
1806
1812
  ], _ECCClientElixirTrsToolCreate.prototype, "defaultCustomVersionId", 2);
1813
+ __decorateClass([
1814
+ property({ type: Array, reflect: true })
1815
+ ], _ECCClientElixirTrsToolCreate.prototype, "supportedDescriptorTypes", 2);
1807
1816
  __decorateClass([
1808
1817
  state()
1809
1818
  ], _ECCClientElixirTrsToolCreate.prototype, "toolClasses", 2);
@@ -443,6 +443,9 @@ var ComponentStyles = css` /*! tailwindcss v4.1.4 | MIT License | https://tailwi
443
443
  outline-style: var(--tw-outline-style);
444
444
  outline-width: 1px;
445
445
  }
446
+ .filter {
447
+ filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
448
+ }
446
449
  .transition-colors {
447
450
  transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
448
451
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
@@ -807,6 +810,59 @@ var ComponentStyles = css` /*! tailwindcss v4.1.4 | MIT License | https://tailwi
807
810
  inherits: false;
808
811
  initial-value: solid;
809
812
  }
813
+ @property --tw-blur {
814
+ syntax: "*";
815
+ inherits: false;
816
+ }
817
+ @property --tw-brightness {
818
+ syntax: "*";
819
+ inherits: false;
820
+ }
821
+ @property --tw-contrast {
822
+ syntax: "*";
823
+ inherits: false;
824
+ }
825
+ @property --tw-grayscale {
826
+ syntax: "*";
827
+ inherits: false;
828
+ }
829
+ @property --tw-hue-rotate {
830
+ syntax: "*";
831
+ inherits: false;
832
+ }
833
+ @property --tw-invert {
834
+ syntax: "*";
835
+ inherits: false;
836
+ }
837
+ @property --tw-opacity {
838
+ syntax: "*";
839
+ inherits: false;
840
+ }
841
+ @property --tw-saturate {
842
+ syntax: "*";
843
+ inherits: false;
844
+ }
845
+ @property --tw-sepia {
846
+ syntax: "*";
847
+ inherits: false;
848
+ }
849
+ @property --tw-drop-shadow {
850
+ syntax: "*";
851
+ inherits: false;
852
+ }
853
+ @property --tw-drop-shadow-color {
854
+ syntax: "*";
855
+ inherits: false;
856
+ }
857
+ @property --tw-drop-shadow-alpha {
858
+ syntax: "<percentage>";
859
+ inherits: false;
860
+ initial-value: 100%;
861
+ }
862
+ @property --tw-drop-shadow-size {
863
+ syntax: "*";
864
+ inherits: false;
865
+ }
810
866
  @property --tw-duration {
811
867
  syntax: "*";
812
868
  inherits: false;
@@ -884,6 +940,19 @@ var ComponentStyles = css` /*! tailwindcss v4.1.4 | MIT License | https://tailwi
884
940
  --tw-border-style: solid;
885
941
  --tw-font-weight: initial;
886
942
  --tw-outline-style: solid;
943
+ --tw-blur: initial;
944
+ --tw-brightness: initial;
945
+ --tw-contrast: initial;
946
+ --tw-grayscale: initial;
947
+ --tw-hue-rotate: initial;
948
+ --tw-invert: initial;
949
+ --tw-opacity: initial;
950
+ --tw-saturate: initial;
951
+ --tw-sepia: initial;
952
+ --tw-drop-shadow: initial;
953
+ --tw-drop-shadow-color: initial;
954
+ --tw-drop-shadow-alpha: 100%;
955
+ --tw-drop-shadow-size: initial;
887
956
  --tw-duration: initial;
888
957
  --tw-shadow: 0 0 #0000;
889
958
  --tw-shadow-color: initial;
@@ -1,6 +1,6 @@
1
1
  import '../chunks/chunk.3WU6NPWM.js';
2
- import '../chunks/chunk.D5XJIWNF.js';
3
- import '../chunks/chunk.XBT2AOGX.js';
4
- import '../chunks/chunk.ETDRGIPN.js';
2
+ import '../chunks/chunk.DTNNXROY.js';
3
+ import '../chunks/chunk.JW7KBVNO.js';
4
+ import '../chunks/chunk.WG3VQJ2S.js';
5
5
  import '../chunks/chunk.3S22ENXV.js';
6
6
  import '../chunks/chunk.S3NI7NKU.js';
@@ -1,5 +1,5 @@
1
- export { tool_create_default as default } from '../../chunks/chunk.D5XJIWNF.js';
2
- export { ECCClientElixirTrsToolCreate } from '../../chunks/chunk.XBT2AOGX.js';
3
- import '../../chunks/chunk.ETDRGIPN.js';
1
+ export { tool_create_default as default } from '../../chunks/chunk.DTNNXROY.js';
2
+ export { ECCClientElixirTrsToolCreate } from '../../chunks/chunk.JW7KBVNO.js';
3
+ import '../../chunks/chunk.WG3VQJ2S.js';
4
4
  import '../../chunks/chunk.3S22ENXV.js';
5
5
  import '../../chunks/chunk.S3NI7NKU.js';
@@ -1,5 +1,5 @@
1
1
  import { LitElement } from "lit";
2
- import { TrsFilerProvider, ImageType } from "../../providers/index.js";
2
+ import { TrsFilerProvider, DescriptorType, ImageType } from "../../providers/index.js";
3
3
  import "@elixir-cloud/design/components/button/index.js";
4
4
  import "@elixir-cloud/design/components/input/index.js";
5
5
  import "@elixir-cloud/design/components/select/index.js";
@@ -39,6 +39,7 @@ type UIFileType = "TEST_FILE" | "PRIMARY_DESCRIPTOR" | "SECONDARY_DESCRIPTOR" |
39
39
  * @property {string} defaultVerifiedSource - Default value for verified source (comma-separated)
40
40
  * @property {string} defaultIncludedApps - Default value for included apps (comma-separated)
41
41
  * @property {string} defaultCustomVersionId - Default value for custom version ID
42
+ * @property {DescriptorType[]} supportedDescriptorTypes - Array of supported descriptor types to filter available workflow languages
42
43
  *
43
44
  * @fires ecc-tool-created - Fired when a tool is successfully created (includes toolId, toolData, and success message)
44
45
  * @fires ecc-tool-create-failed - Fired when tool creation fails
@@ -76,6 +77,7 @@ export declare class ECCClientElixirTrsToolCreate extends LitElement {
76
77
  defaultVerifiedSource: string;
77
78
  defaultIncludedApps: string;
78
79
  defaultCustomVersionId: string;
80
+ supportedDescriptorTypes: DescriptorType[];
79
81
  private toolClasses;
80
82
  private loading;
81
83
  private error;
@@ -121,5 +123,6 @@ export declare class ECCClientElixirTrsToolCreate extends LitElement {
121
123
  static convertUIFileTypeToFileType(uiFileType: UIFileType): FileType;
122
124
  static convertUIFileTypeToImageType(uiFileType: UIFileType): ImageType | undefined;
123
125
  render(): import("lit-html").TemplateResult<1>;
126
+ private renderDescriptorTypeOptions;
124
127
  }
125
128
  export default ECCClientElixirTrsToolCreate;
@@ -1,4 +1,4 @@
1
- export { ECCClientElixirTrsToolCreate, tool_create_default as default } from '../../chunks/chunk.XBT2AOGX.js';
2
- import '../../chunks/chunk.ETDRGIPN.js';
1
+ export { ECCClientElixirTrsToolCreate, tool_create_default as default } from '../../chunks/chunk.JW7KBVNO.js';
2
+ import '../../chunks/chunk.WG3VQJ2S.js';
3
3
  import '../../chunks/chunk.3S22ENXV.js';
4
4
  import '../../chunks/chunk.S3NI7NKU.js';
@@ -1,2 +1,2 @@
1
- export { ComponentStyles } from '../../chunks/chunk.ETDRGIPN.js';
1
+ export { ComponentStyles } from '../../chunks/chunk.WG3VQJ2S.js';
2
2
  import '../../chunks/chunk.S3NI7NKU.js';
@@ -246,6 +246,15 @@
246
246
  "default": "\"\"",
247
247
  "description": "Default value for custom version ID"
248
248
  },
249
+ {
250
+ "kind": "field",
251
+ "name": "supportedDescriptorTypes",
252
+ "type": {
253
+ "text": "DescriptorType[]"
254
+ },
255
+ "default": "[]",
256
+ "description": "Array of supported descriptor types to filter available workflow languages"
257
+ },
249
258
  {
250
259
  "kind": "field",
251
260
  "name": "toolClasses",
@@ -940,6 +949,11 @@
940
949
  }
941
950
  }
942
951
  ]
952
+ },
953
+ {
954
+ "kind": "method",
955
+ "name": "renderDescriptorTypeOptions",
956
+ "privacy": "private"
943
957
  }
944
958
  ],
945
959
  "events": [
@@ -985,7 +999,7 @@
985
999
  "package": "lit"
986
1000
  },
987
1001
  "summary": "Component for creating new tools in TRS-Filer",
988
- "jsDoc": "/**\n * @summary Component for creating new tools in TRS-Filer\n * @since 2.0.0\n *\n * @property {string} baseUrl - Base URL of the TRS instance/gateway\n * @property {TrsProvider} provider - Custom data provider (optional, overrides baseUrl)\n *\n * // Default value properties for basic fields\n * @property {string} defaultName - Default value for tool name\n * @property {string} defaultOrganization - Default value for organization\n * @property {string} defaultDescription - Default value for description\n * @property {string} defaultToolClassId - Default value for tool class ID\n * @property {string} defaultAliases - Default value for aliases (comma-separated)\n * @property {string} defaultCheckerUrl - Default value for checker URL\n * @property {string} defaultCustomToolId - Default value for custom tool ID\n *\n * // Default value properties for version fields\n * @property {string} defaultVersionName - Default value for version name\n * @property {string} defaultVersionAuthor - Default value for version author (comma-separated)\n * @property {boolean} defaultIsProduction - Default value for production status\n * @property {boolean} defaultSigned - Default value for signed status\n * @property {boolean} defaultVerified - Default value for verified status\n * @property {string} defaultVerifiedSource - Default value for verified source (comma-separated)\n * @property {string} defaultIncludedApps - Default value for included apps (comma-separated)\n * @property {string} defaultCustomVersionId - Default value for custom version ID\n *\n * @fires ecc-tool-created - Fired when a tool is successfully created (includes toolId, toolData, and success message)\n * @fires ecc-tool-create-failed - Fired when tool creation fails\n * @fires ecc-tool-create-validation-failed - Fired when there are validation errors during tool creation\n * @fires ecc-tool-create-input-changed - Fired when an input field is changed\n *\n * @slot tool-name - Custom content for tool name field (default field used if empty)\n * @slot organization - Custom content for organization field (default field used if empty)\n * @slot description - Custom content for description field (default field used if empty)\n * @slot tool-class - Custom content for tool class field (default field used if empty)\n * @slot custom-tool-id - Custom content for custom tool ID field (default field used if empty)\n * @slot aliases - Custom content for aliases field (default field used if empty)\n * @slot checker-url - Custom content for checker URL field (default field used if empty)\n * @slot version-name - Custom content for version name field (default field used if empty)\n * @slot version-author - Custom content for version author field (default field used if empty)\n * @slot version-advanced-options - Custom content for advanced version options section (default advanced version options used if empty)\n * @slot advanced-fields - Custom content for entire advanced fields section (default advanced fields used if empty)\n */",
1002
+ "jsDoc": "/**\n * @summary Component for creating new tools in TRS-Filer\n * @since 2.0.0\n *\n * @property {string} baseUrl - Base URL of the TRS instance/gateway\n * @property {TrsProvider} provider - Custom data provider (optional, overrides baseUrl)\n *\n * // Default value properties for basic fields\n * @property {string} defaultName - Default value for tool name\n * @property {string} defaultOrganization - Default value for organization\n * @property {string} defaultDescription - Default value for description\n * @property {string} defaultToolClassId - Default value for tool class ID\n * @property {string} defaultAliases - Default value for aliases (comma-separated)\n * @property {string} defaultCheckerUrl - Default value for checker URL\n * @property {string} defaultCustomToolId - Default value for custom tool ID\n *\n * // Default value properties for version fields\n * @property {string} defaultVersionName - Default value for version name\n * @property {string} defaultVersionAuthor - Default value for version author (comma-separated)\n * @property {boolean} defaultIsProduction - Default value for production status\n * @property {boolean} defaultSigned - Default value for signed status\n * @property {boolean} defaultVerified - Default value for verified status\n * @property {string} defaultVerifiedSource - Default value for verified source (comma-separated)\n * @property {string} defaultIncludedApps - Default value for included apps (comma-separated)\n * @property {string} defaultCustomVersionId - Default value for custom version ID\n * @property {DescriptorType[]} supportedDescriptorTypes - Array of supported descriptor types to filter available workflow languages\n *\n * @fires ecc-tool-created - Fired when a tool is successfully created (includes toolId, toolData, and success message)\n * @fires ecc-tool-create-failed - Fired when tool creation fails\n * @fires ecc-tool-create-validation-failed - Fired when there are validation errors during tool creation\n * @fires ecc-tool-create-input-changed - Fired when an input field is changed\n *\n * @slot tool-name - Custom content for tool name field (default field used if empty)\n * @slot organization - Custom content for organization field (default field used if empty)\n * @slot description - Custom content for description field (default field used if empty)\n * @slot tool-class - Custom content for tool class field (default field used if empty)\n * @slot custom-tool-id - Custom content for custom tool ID field (default field used if empty)\n * @slot aliases - Custom content for aliases field (default field used if empty)\n * @slot checker-url - Custom content for checker URL field (default field used if empty)\n * @slot version-name - Custom content for version name field (default field used if empty)\n * @slot version-author - Custom content for version author field (default field used if empty)\n * @slot version-advanced-options - Custom content for advanced version options section (default advanced version options used if empty)\n * @slot advanced-fields - Custom content for entire advanced fields section (default advanced fields used if empty)\n */",
989
1003
  "tagName": "ecc-client-elixir-trs-tool-create",
990
1004
  "customElement": true
991
1005
  }
@@ -1016,7 +1030,7 @@
1016
1030
  {
1017
1031
  "kind": "variable",
1018
1032
  "name": "ComponentStyles",
1019
- "default": "css` /*! tailwindcss v4.1.4 | MIT License | https://tailwindcss.com */\n@layer properties;\n@layer theme, base, components, utilities;\n@layer theme {\n :root, :host {\n --font-sans: ui-sans-serif, system-ui, sans-serif, \"Apple Color Emoji\",\n \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\",\n \"Courier New\", monospace;\n --color-gray-300: oklch(87.2% 0.01 258.338);\n --color-gray-500: oklch(55.1% 0.027 264.364);\n --spacing: 0.25rem;\n --text-xs: 0.75rem;\n --text-xs--line-height: calc(1 / 0.75);\n --text-sm: 0.875rem;\n --text-sm--line-height: calc(1.25 / 0.875);\n --text-base: 1rem;\n --text-base--line-height: calc(1.5 / 1);\n --font-weight-medium: 500;\n --font-weight-semibold: 600;\n --default-transition-duration: 150ms;\n --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\n --default-font-family: var(--font-sans);\n --default-mono-font-family: var(--font-mono);\n }\n}\n@layer base {\n *, ::after, ::before, ::backdrop, ::file-selector-button {\n box-sizing: border-box;\n margin: 0;\n padding: 0;\n border: 0 solid;\n }\n html, :host {\n line-height: 1.5;\n -webkit-text-size-adjust: 100%;\n tab-size: 4;\n font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\");\n font-feature-settings: var(--default-font-feature-settings, normal);\n font-variation-settings: var(--default-font-variation-settings, normal);\n -webkit-tap-highlight-color: transparent;\n }\n hr {\n height: 0;\n color: inherit;\n border-top-width: 1px;\n }\n abbr:where([title]) {\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n }\n h1, h2, h3, h4, h5, h6 {\n font-size: inherit;\n font-weight: inherit;\n }\n a {\n color: inherit;\n -webkit-text-decoration: inherit;\n text-decoration: inherit;\n }\n b, strong {\n font-weight: bolder;\n }\n code, kbd, samp, pre {\n font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace);\n font-feature-settings: var(--default-mono-font-feature-settings, normal);\n font-variation-settings: var(--default-mono-font-variation-settings, normal);\n font-size: 1em;\n }\n small {\n font-size: 80%;\n }\n sub, sup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n }\n sub {\n bottom: -0.25em;\n }\n sup {\n top: -0.5em;\n }\n table {\n text-indent: 0;\n border-color: inherit;\n border-collapse: collapse;\n }\n :-moz-focusring {\n outline: auto;\n }\n progress {\n vertical-align: baseline;\n }\n summary {\n display: list-item;\n }\n ol, ul, menu {\n list-style: none;\n }\n img, svg, video, canvas, audio, iframe, embed, object {\n display: block;\n vertical-align: middle;\n }\n img, video {\n max-width: 100%;\n height: auto;\n }\n button, input, select, optgroup, textarea, ::file-selector-button {\n font: inherit;\n font-feature-settings: inherit;\n font-variation-settings: inherit;\n letter-spacing: inherit;\n color: inherit;\n border-radius: 0;\n background-color: transparent;\n opacity: 1;\n }\n :where(select:is([multiple], [size])) optgroup {\n font-weight: bolder;\n }\n :where(select:is([multiple], [size])) optgroup option {\n padding-inline-start: 20px;\n }\n ::file-selector-button {\n margin-inline-end: 4px;\n }\n ::placeholder {\n opacity: 1;\n }\n @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {\n ::placeholder {\n color: currentcolor;\n @supports (color: color-mix(in lab, red, red)) {\n color: color-mix(in oklab, currentcolor 50%, transparent);\n }\n }\n }\n textarea {\n resize: vertical;\n }\n ::-webkit-search-decoration {\n -webkit-appearance: none;\n }\n ::-webkit-date-and-time-value {\n min-height: 1lh;\n text-align: inherit;\n }\n ::-webkit-datetime-edit {\n display: inline-flex;\n }\n ::-webkit-datetime-edit-fields-wrapper {\n padding: 0;\n }\n ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {\n padding-block: 0;\n }\n :-moz-ui-invalid {\n box-shadow: none;\n }\n button, input:where([type=\"button\"], [type=\"reset\"], [type=\"submit\"]), ::file-selector-button {\n appearance: button;\n }\n ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {\n height: auto;\n }\n [hidden]:where(:not([hidden=\"until-found\"])) {\n display: none !important;\n }\n}\n@layer utilities {\n .absolute {\n position: absolute;\n }\n .relative {\n position: relative;\n }\n .static {\n position: static;\n }\n .inset-0 {\n inset: calc(var(--spacing) * 0);\n }\n .col-span-5 {\n grid-column: span 5 / span 5;\n }\n .container {\n width: 100%;\n @media (width >= 40rem) {\n max-width: 40rem;\n }\n @media (width >= 48rem) {\n max-width: 48rem;\n }\n @media (width >= 64rem) {\n max-width: 64rem;\n }\n @media (width >= 80rem) {\n max-width: 80rem;\n }\n @media (width >= 96rem) {\n max-width: 96rem;\n }\n }\n .mt-2 {\n margin-top: calc(var(--spacing) * 2);\n }\n .mt-4 {\n margin-top: calc(var(--spacing) * 4);\n }\n .ml-1 {\n margin-left: calc(var(--spacing) * 1);\n }\n .ml-4 {\n margin-left: calc(var(--spacing) * 4);\n }\n .block {\n display: block;\n }\n .flex {\n display: flex;\n }\n .grid {\n display: grid;\n }\n .h-3 {\n height: calc(var(--spacing) * 3);\n }\n .h-4 {\n height: calc(var(--spacing) * 4);\n }\n .h-6 {\n height: calc(var(--spacing) * 6);\n }\n .h-10 {\n height: calc(var(--spacing) * 10);\n }\n .h-full {\n height: 100%;\n }\n .max-h-\\\\[400px\\\\] {\n max-height: 400px;\n }\n .w-3 {\n width: calc(var(--spacing) * 3);\n }\n .w-4 {\n width: calc(var(--spacing) * 4);\n }\n .w-24 {\n width: calc(var(--spacing) * 24);\n }\n .w-full {\n width: 100%;\n }\n .flex-1 {\n flex: 1;\n }\n .flex-shrink-0 {\n flex-shrink: 0;\n }\n .shrink-0 {\n flex-shrink: 0;\n }\n .cursor-pointer {\n cursor: pointer;\n }\n .resize-none {\n resize: none;\n }\n .grid-cols-1 {\n grid-template-columns: repeat(1, minmax(0, 1fr));\n }\n .grid-cols-5 {\n grid-template-columns: repeat(5, minmax(0, 1fr));\n }\n .flex-col {\n flex-direction: column;\n }\n .items-center {\n align-items: center;\n }\n .justify-between {\n justify-content: space-between;\n }\n .gap-1 {\n gap: calc(var(--spacing) * 1);\n }\n .gap-2 {\n gap: calc(var(--spacing) * 2);\n }\n .gap-4 {\n gap: calc(var(--spacing) * 4);\n }\n .space-y-0\\\\.5 {\n :where(& > :not(:last-child)) {\n --tw-space-y-reverse: 0;\n margin-block-start: calc(calc(var(--spacing) * 0.5) * var(--tw-space-y-reverse));\n margin-block-end: calc(calc(var(--spacing) * 0.5) * calc(1 - var(--tw-space-y-reverse)));\n }\n }\n .space-y-1 {\n :where(& > :not(:last-child)) {\n --tw-space-y-reverse: 0;\n margin-block-start: calc(calc(var(--spacing) * 1) * var(--tw-space-y-reverse));\n margin-block-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-y-reverse)));\n }\n }\n .space-y-2 {\n :where(& > :not(:last-child)) {\n --tw-space-y-reverse: 0;\n margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));\n margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));\n }\n }\n .space-y-4 {\n :where(& > :not(:last-child)) {\n --tw-space-y-reverse: 0;\n margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));\n margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));\n }\n }\n .space-y-6 {\n :where(& > :not(:last-child)) {\n --tw-space-y-reverse: 0;\n margin-block-start: calc(calc(var(--spacing) * 6) * var(--tw-space-y-reverse));\n margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));\n }\n }\n .space-x-2 {\n :where(& > :not(:last-child)) {\n --tw-space-x-reverse: 0;\n margin-inline-start: calc(calc(var(--spacing) * 2) * var(--tw-space-x-reverse));\n margin-inline-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));\n }\n }\n .truncate {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n .overflow-x-auto {\n overflow-x: auto;\n }\n .overflow-y-auto {\n overflow-y: auto;\n }\n .rounded {\n border-radius: 0.25rem;\n }\n .rounded-lg {\n border-radius: var(--radius);\n }\n .rounded-t {\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n }\n .border-2 {\n border-style: var(--tw-border-style);\n border-width: 2px;\n }\n .border-t {\n border-top-style: var(--tw-border-style);\n border-top-width: 1px;\n }\n .border-dashed {\n --tw-border-style: dashed;\n border-style: dashed;\n }\n .border-border\\\\/50 {\n border-color: var(--border);\n @supports (color: color-mix(in lab, red, red)) {\n border-color: color-mix(in oklab, var(--border) 50%, transparent);\n }\n }\n .border-gray-300 {\n border-color: var(--color-gray-300);\n }\n .px-2 {\n padding-inline: calc(var(--spacing) * 2);\n }\n .py-2 {\n padding-block: calc(var(--spacing) * 2);\n }\n .py-8 {\n padding-block: calc(var(--spacing) * 8);\n }\n .pt-4 {\n padding-top: calc(var(--spacing) * 4);\n }\n .pr-4 {\n padding-right: calc(var(--spacing) * 4);\n }\n .text-center {\n text-align: center;\n }\n .text-left {\n text-align: left;\n }\n .text-base {\n font-size: var(--text-base);\n line-height: var(--tw-leading, var(--text-base--line-height));\n }\n .text-sm {\n font-size: var(--text-sm);\n line-height: var(--tw-leading, var(--text-sm--line-height));\n }\n .text-xs {\n font-size: var(--text-xs);\n line-height: var(--tw-leading, var(--text-xs--line-height));\n }\n .font-medium {\n --tw-font-weight: var(--font-weight-medium);\n font-weight: var(--font-weight-medium);\n }\n .font-semibold {\n --tw-font-weight: var(--font-weight-semibold);\n font-weight: var(--font-weight-semibold);\n }\n .text-destructive {\n color: var(--destructive);\n }\n .text-gray-500 {\n color: var(--color-gray-500);\n }\n .text-muted-foreground {\n color: var(--muted-foreground);\n }\n .text-muted-foreground\\\\/60 {\n color: var(--muted-foreground);\n @supports (color: color-mix(in lab, red, red)) {\n color: color-mix(in oklab, var(--muted-foreground) 60%, transparent);\n }\n }\n .opacity-0 {\n opacity: 0%;\n }\n .outline {\n outline-style: var(--tw-outline-style);\n outline-width: 1px;\n }\n .transition-colors {\n transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;\n transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));\n transition-duration: var(--tw-duration, var(--default-transition-duration));\n }\n .transition-transform {\n transition-property: transform, translate, scale, rotate;\n transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));\n transition-duration: var(--tw-duration, var(--default-transition-duration));\n }\n .duration-200 {\n --tw-duration: 200ms;\n transition-duration: 200ms;\n }\n .hover\\\\:bg-muted\\\\/50 {\n &:hover {\n @media (hover: hover) {\n background-color: var(--muted);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--muted) 50%, transparent);\n }\n }\n }\n }\n .focus\\\\:ring-1 {\n &:focus {\n --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n }\n .focus\\\\:ring-ring {\n &:focus {\n --tw-ring-color: var(--ring);\n }\n }\n .focus\\\\:outline-none {\n &:focus {\n --tw-outline-style: none;\n outline-style: none;\n }\n }\n .md\\\\:col-span-1 {\n @media (width >= 48rem) {\n grid-column: span 1 / span 1;\n }\n }\n .md\\\\:col-span-4 {\n @media (width >= 48rem) {\n grid-column: span 4 / span 4;\n }\n }\n .md\\\\:hidden {\n @media (width >= 48rem) {\n display: none;\n }\n }\n .md\\\\:grid-cols-2 {\n @media (width >= 48rem) {\n grid-template-columns: repeat(2, minmax(0, 1fr));\n }\n }\n .md\\\\:grid-cols-3 {\n @media (width >= 48rem) {\n grid-template-columns: repeat(3, minmax(0, 1fr));\n }\n }\n .md\\\\:grid-cols-4 {\n @media (width >= 48rem) {\n grid-template-columns: repeat(4, minmax(0, 1fr));\n }\n }\n .md\\\\:flex-row {\n @media (width >= 48rem) {\n flex-direction: row;\n }\n }\n .md\\\\:border-l {\n @media (width >= 48rem) {\n border-left-style: var(--tw-border-style);\n border-left-width: 1px;\n }\n }\n .md\\\\:border-muted {\n @media (width >= 48rem) {\n border-color: var(--muted);\n }\n }\n .md\\\\:pl-4 {\n @media (width >= 48rem) {\n padding-left: calc(var(--spacing) * 4);\n }\n }\n .part\\\\:relative {\n &::part(base) {\n position: relative;\n }\n }\n .part\\\\:my-4 {\n &::part(base) {\n margin-block: calc(var(--spacing) * 4);\n }\n }\n .part\\\\:ml-2 {\n &::part(base) {\n margin-left: calc(var(--spacing) * 2);\n }\n }\n .part\\\\:flex {\n &::part(base) {\n display: flex;\n }\n }\n .part\\\\:h-4 {\n &::part(base) {\n height: calc(var(--spacing) * 4);\n }\n }\n .part\\\\:h-8 {\n &::part(base) {\n height: calc(var(--spacing) * 8);\n }\n }\n .part\\\\:h-10 {\n &::part(base) {\n height: calc(var(--spacing) * 10);\n }\n }\n .part\\\\:h-\\\\[500px\\\\] {\n &::part(base) {\n height: 500px;\n }\n }\n .part\\\\:w-4 {\n &::part(base) {\n width: calc(var(--spacing) * 4);\n }\n }\n .part\\\\:w-8 {\n &::part(base) {\n width: calc(var(--spacing) * 8);\n }\n }\n .part\\\\:w-24 {\n &::part(base) {\n width: calc(var(--spacing) * 24);\n }\n }\n .part\\\\:w-full {\n &::part(base) {\n width: 100%;\n }\n }\n .part\\\\:min-w-24 {\n &::part(base) {\n min-width: calc(var(--spacing) * 24);\n }\n }\n .part\\\\:min-w-max {\n &::part(base) {\n min-width: max-content;\n }\n }\n .part\\\\:flex-shrink-0 {\n &::part(base) {\n flex-shrink: 0;\n }\n }\n .part\\\\:items-center {\n &::part(base) {\n align-items: center;\n }\n }\n .part\\\\:justify-between {\n &::part(base) {\n justify-content: space-between;\n }\n }\n .part\\\\:justify-start {\n &::part(base) {\n justify-content: flex-start;\n }\n }\n .part\\\\:rounded-md {\n &::part(base) {\n border-radius: calc(var(--radius) - 2px);\n }\n }\n .part\\\\:bg-primary\\\\/10 {\n &::part(base) {\n background-color: var(--primary);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--primary) 10%, transparent);\n }\n }\n }\n .part\\\\:p-0 {\n &::part(base) {\n padding: calc(var(--spacing) * 0);\n }\n }\n .part\\\\:px-3 {\n &::part(base) {\n padding-inline: calc(var(--spacing) * 3);\n }\n }\n .part\\\\:py-1 {\n &::part(base) {\n padding-block: calc(var(--spacing) * 1);\n }\n }\n .part\\\\:text-left {\n &::part(base) {\n text-align: left;\n }\n }\n .part\\\\:text-sm {\n &::part(base) {\n font-size: var(--text-sm);\n line-height: var(--tw-leading, var(--text-sm--line-height));\n }\n }\n .part\\\\:hover\\\\:bg-destructive {\n &::part(base) {\n &:hover {\n @media (hover: hover) {\n background-color: var(--destructive);\n }\n }\n }\n }\n .part\\\\:hover\\\\:bg-muted {\n &::part(base) {\n &:hover {\n @media (hover: hover) {\n background-color: var(--muted);\n }\n }\n }\n }\n .part\\\\:hover\\\\:text-destructive-foreground {\n &::part(base) {\n &:hover {\n @media (hover: hover) {\n color: var(--destructive-foreground);\n }\n }\n }\n }\n}\n@property --tw-animation-delay {\n syntax: \"*\";\n inherits: false;\n initial-value: 0s;\n}\n@property --tw-animation-direction {\n syntax: \"*\";\n inherits: false;\n initial-value: normal;\n}\n@property --tw-animation-duration {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-animation-fill-mode {\n syntax: \"*\";\n inherits: false;\n initial-value: none;\n}\n@property --tw-animation-iteration-count {\n syntax: \"*\";\n inherits: false;\n initial-value: 1;\n}\n@property --tw-enter-opacity {\n syntax: \"*\";\n inherits: false;\n initial-value: 1;\n}\n@property --tw-enter-rotate {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-enter-scale {\n syntax: \"*\";\n inherits: false;\n initial-value: 1;\n}\n@property --tw-enter-translate-x {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-enter-translate-y {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-exit-opacity {\n syntax: \"*\";\n inherits: false;\n initial-value: 1;\n}\n@property --tw-exit-rotate {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-exit-scale {\n syntax: \"*\";\n inherits: false;\n initial-value: 1;\n}\n@property --tw-exit-translate-x {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-exit-translate-y {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@layer base {\n * {\n border-color: var(--border);\n outline-color: var(--ring);\n @supports (color: color-mix(in lab, red, red)) {\n outline-color: color-mix(in oklab, var(--ring) 50%, transparent);\n }\n }\n body {\n background-color: var(--background);\n color: var(--foreground);\n }\n}\n:host {\n font-family: inherit;\n line-height: inherit;\n}\n@property --tw-space-y-reverse {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-space-x-reverse {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-border-style {\n syntax: \"*\";\n inherits: false;\n initial-value: solid;\n}\n@property --tw-font-weight {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-outline-style {\n syntax: \"*\";\n inherits: false;\n initial-value: solid;\n}\n@property --tw-duration {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-shadow {\n syntax: \"*\";\n inherits: false;\n initial-value: 0 0 #0000;\n}\n@property --tw-shadow-color {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-shadow-alpha {\n syntax: \"<percentage>\";\n inherits: false;\n initial-value: 100%;\n}\n@property --tw-inset-shadow {\n syntax: \"*\";\n inherits: false;\n initial-value: 0 0 #0000;\n}\n@property --tw-inset-shadow-color {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-inset-shadow-alpha {\n syntax: \"<percentage>\";\n inherits: false;\n initial-value: 100%;\n}\n@property --tw-ring-color {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-ring-shadow {\n syntax: \"*\";\n inherits: false;\n initial-value: 0 0 #0000;\n}\n@property --tw-inset-ring-color {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-inset-ring-shadow {\n syntax: \"*\";\n inherits: false;\n initial-value: 0 0 #0000;\n}\n@property --tw-ring-inset {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-ring-offset-width {\n syntax: \"<length>\";\n inherits: false;\n initial-value: 0px;\n}\n@property --tw-ring-offset-color {\n syntax: \"*\";\n inherits: false;\n initial-value: #fff;\n}\n@property --tw-ring-offset-shadow {\n syntax: \"*\";\n inherits: false;\n initial-value: 0 0 #0000;\n}\n@layer properties {\n @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {\n *, ::before, ::after, ::backdrop {\n --tw-space-y-reverse: 0;\n --tw-space-x-reverse: 0;\n --tw-border-style: solid;\n --tw-font-weight: initial;\n --tw-outline-style: solid;\n --tw-duration: initial;\n --tw-shadow: 0 0 #0000;\n --tw-shadow-color: initial;\n --tw-shadow-alpha: 100%;\n --tw-inset-shadow: 0 0 #0000;\n --tw-inset-shadow-color: initial;\n --tw-inset-shadow-alpha: 100%;\n --tw-ring-color: initial;\n --tw-ring-shadow: 0 0 #0000;\n --tw-inset-ring-color: initial;\n --tw-inset-ring-shadow: 0 0 #0000;\n --tw-ring-inset: initial;\n --tw-ring-offset-width: 0px;\n --tw-ring-offset-color: #fff;\n --tw-ring-offset-shadow: 0 0 #0000;\n --tw-animation-delay: 0s;\n --tw-animation-direction: normal;\n --tw-animation-duration: initial;\n --tw-animation-fill-mode: none;\n --tw-animation-iteration-count: 1;\n --tw-enter-opacity: 1;\n --tw-enter-rotate: 0;\n --tw-enter-scale: 1;\n --tw-enter-translate-x: 0;\n --tw-enter-translate-y: 0;\n --tw-exit-opacity: 1;\n --tw-exit-rotate: 0;\n --tw-exit-scale: 1;\n --tw-exit-translate-x: 0;\n --tw-exit-translate-y: 0;\n }\n }\n}\n `"
1033
+ "default": "css` /*! tailwindcss v4.1.4 | MIT License | https://tailwindcss.com */\n@layer properties;\n@layer theme, base, components, utilities;\n@layer theme {\n :root, :host {\n --font-sans: ui-sans-serif, system-ui, sans-serif, \"Apple Color Emoji\",\n \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\",\n \"Courier New\", monospace;\n --color-gray-300: oklch(87.2% 0.01 258.338);\n --color-gray-500: oklch(55.1% 0.027 264.364);\n --spacing: 0.25rem;\n --text-xs: 0.75rem;\n --text-xs--line-height: calc(1 / 0.75);\n --text-sm: 0.875rem;\n --text-sm--line-height: calc(1.25 / 0.875);\n --text-base: 1rem;\n --text-base--line-height: calc(1.5 / 1);\n --font-weight-medium: 500;\n --font-weight-semibold: 600;\n --default-transition-duration: 150ms;\n --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\n --default-font-family: var(--font-sans);\n --default-mono-font-family: var(--font-mono);\n }\n}\n@layer base {\n *, ::after, ::before, ::backdrop, ::file-selector-button {\n box-sizing: border-box;\n margin: 0;\n padding: 0;\n border: 0 solid;\n }\n html, :host {\n line-height: 1.5;\n -webkit-text-size-adjust: 100%;\n tab-size: 4;\n font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\");\n font-feature-settings: var(--default-font-feature-settings, normal);\n font-variation-settings: var(--default-font-variation-settings, normal);\n -webkit-tap-highlight-color: transparent;\n }\n hr {\n height: 0;\n color: inherit;\n border-top-width: 1px;\n }\n abbr:where([title]) {\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n }\n h1, h2, h3, h4, h5, h6 {\n font-size: inherit;\n font-weight: inherit;\n }\n a {\n color: inherit;\n -webkit-text-decoration: inherit;\n text-decoration: inherit;\n }\n b, strong {\n font-weight: bolder;\n }\n code, kbd, samp, pre {\n font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace);\n font-feature-settings: var(--default-mono-font-feature-settings, normal);\n font-variation-settings: var(--default-mono-font-variation-settings, normal);\n font-size: 1em;\n }\n small {\n font-size: 80%;\n }\n sub, sup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n }\n sub {\n bottom: -0.25em;\n }\n sup {\n top: -0.5em;\n }\n table {\n text-indent: 0;\n border-color: inherit;\n border-collapse: collapse;\n }\n :-moz-focusring {\n outline: auto;\n }\n progress {\n vertical-align: baseline;\n }\n summary {\n display: list-item;\n }\n ol, ul, menu {\n list-style: none;\n }\n img, svg, video, canvas, audio, iframe, embed, object {\n display: block;\n vertical-align: middle;\n }\n img, video {\n max-width: 100%;\n height: auto;\n }\n button, input, select, optgroup, textarea, ::file-selector-button {\n font: inherit;\n font-feature-settings: inherit;\n font-variation-settings: inherit;\n letter-spacing: inherit;\n color: inherit;\n border-radius: 0;\n background-color: transparent;\n opacity: 1;\n }\n :where(select:is([multiple], [size])) optgroup {\n font-weight: bolder;\n }\n :where(select:is([multiple], [size])) optgroup option {\n padding-inline-start: 20px;\n }\n ::file-selector-button {\n margin-inline-end: 4px;\n }\n ::placeholder {\n opacity: 1;\n }\n @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {\n ::placeholder {\n color: currentcolor;\n @supports (color: color-mix(in lab, red, red)) {\n color: color-mix(in oklab, currentcolor 50%, transparent);\n }\n }\n }\n textarea {\n resize: vertical;\n }\n ::-webkit-search-decoration {\n -webkit-appearance: none;\n }\n ::-webkit-date-and-time-value {\n min-height: 1lh;\n text-align: inherit;\n }\n ::-webkit-datetime-edit {\n display: inline-flex;\n }\n ::-webkit-datetime-edit-fields-wrapper {\n padding: 0;\n }\n ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {\n padding-block: 0;\n }\n :-moz-ui-invalid {\n box-shadow: none;\n }\n button, input:where([type=\"button\"], [type=\"reset\"], [type=\"submit\"]), ::file-selector-button {\n appearance: button;\n }\n ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {\n height: auto;\n }\n [hidden]:where(:not([hidden=\"until-found\"])) {\n display: none !important;\n }\n}\n@layer utilities {\n .absolute {\n position: absolute;\n }\n .relative {\n position: relative;\n }\n .static {\n position: static;\n }\n .inset-0 {\n inset: calc(var(--spacing) * 0);\n }\n .col-span-5 {\n grid-column: span 5 / span 5;\n }\n .container {\n width: 100%;\n @media (width >= 40rem) {\n max-width: 40rem;\n }\n @media (width >= 48rem) {\n max-width: 48rem;\n }\n @media (width >= 64rem) {\n max-width: 64rem;\n }\n @media (width >= 80rem) {\n max-width: 80rem;\n }\n @media (width >= 96rem) {\n max-width: 96rem;\n }\n }\n .mt-2 {\n margin-top: calc(var(--spacing) * 2);\n }\n .mt-4 {\n margin-top: calc(var(--spacing) * 4);\n }\n .ml-1 {\n margin-left: calc(var(--spacing) * 1);\n }\n .ml-4 {\n margin-left: calc(var(--spacing) * 4);\n }\n .block {\n display: block;\n }\n .flex {\n display: flex;\n }\n .grid {\n display: grid;\n }\n .h-3 {\n height: calc(var(--spacing) * 3);\n }\n .h-4 {\n height: calc(var(--spacing) * 4);\n }\n .h-6 {\n height: calc(var(--spacing) * 6);\n }\n .h-10 {\n height: calc(var(--spacing) * 10);\n }\n .h-full {\n height: 100%;\n }\n .max-h-\\\\[400px\\\\] {\n max-height: 400px;\n }\n .w-3 {\n width: calc(var(--spacing) * 3);\n }\n .w-4 {\n width: calc(var(--spacing) * 4);\n }\n .w-24 {\n width: calc(var(--spacing) * 24);\n }\n .w-full {\n width: 100%;\n }\n .flex-1 {\n flex: 1;\n }\n .flex-shrink-0 {\n flex-shrink: 0;\n }\n .shrink-0 {\n flex-shrink: 0;\n }\n .cursor-pointer {\n cursor: pointer;\n }\n .resize-none {\n resize: none;\n }\n .grid-cols-1 {\n grid-template-columns: repeat(1, minmax(0, 1fr));\n }\n .grid-cols-5 {\n grid-template-columns: repeat(5, minmax(0, 1fr));\n }\n .flex-col {\n flex-direction: column;\n }\n .items-center {\n align-items: center;\n }\n .justify-between {\n justify-content: space-between;\n }\n .gap-1 {\n gap: calc(var(--spacing) * 1);\n }\n .gap-2 {\n gap: calc(var(--spacing) * 2);\n }\n .gap-4 {\n gap: calc(var(--spacing) * 4);\n }\n .space-y-0\\\\.5 {\n :where(& > :not(:last-child)) {\n --tw-space-y-reverse: 0;\n margin-block-start: calc(calc(var(--spacing) * 0.5) * var(--tw-space-y-reverse));\n margin-block-end: calc(calc(var(--spacing) * 0.5) * calc(1 - var(--tw-space-y-reverse)));\n }\n }\n .space-y-1 {\n :where(& > :not(:last-child)) {\n --tw-space-y-reverse: 0;\n margin-block-start: calc(calc(var(--spacing) * 1) * var(--tw-space-y-reverse));\n margin-block-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-y-reverse)));\n }\n }\n .space-y-2 {\n :where(& > :not(:last-child)) {\n --tw-space-y-reverse: 0;\n margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));\n margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));\n }\n }\n .space-y-4 {\n :where(& > :not(:last-child)) {\n --tw-space-y-reverse: 0;\n margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));\n margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));\n }\n }\n .space-y-6 {\n :where(& > :not(:last-child)) {\n --tw-space-y-reverse: 0;\n margin-block-start: calc(calc(var(--spacing) * 6) * var(--tw-space-y-reverse));\n margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));\n }\n }\n .space-x-2 {\n :where(& > :not(:last-child)) {\n --tw-space-x-reverse: 0;\n margin-inline-start: calc(calc(var(--spacing) * 2) * var(--tw-space-x-reverse));\n margin-inline-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));\n }\n }\n .truncate {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n .overflow-x-auto {\n overflow-x: auto;\n }\n .overflow-y-auto {\n overflow-y: auto;\n }\n .rounded {\n border-radius: 0.25rem;\n }\n .rounded-lg {\n border-radius: var(--radius);\n }\n .rounded-t {\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n }\n .border-2 {\n border-style: var(--tw-border-style);\n border-width: 2px;\n }\n .border-t {\n border-top-style: var(--tw-border-style);\n border-top-width: 1px;\n }\n .border-dashed {\n --tw-border-style: dashed;\n border-style: dashed;\n }\n .border-border\\\\/50 {\n border-color: var(--border);\n @supports (color: color-mix(in lab, red, red)) {\n border-color: color-mix(in oklab, var(--border) 50%, transparent);\n }\n }\n .border-gray-300 {\n border-color: var(--color-gray-300);\n }\n .px-2 {\n padding-inline: calc(var(--spacing) * 2);\n }\n .py-2 {\n padding-block: calc(var(--spacing) * 2);\n }\n .py-8 {\n padding-block: calc(var(--spacing) * 8);\n }\n .pt-4 {\n padding-top: calc(var(--spacing) * 4);\n }\n .pr-4 {\n padding-right: calc(var(--spacing) * 4);\n }\n .text-center {\n text-align: center;\n }\n .text-left {\n text-align: left;\n }\n .text-base {\n font-size: var(--text-base);\n line-height: var(--tw-leading, var(--text-base--line-height));\n }\n .text-sm {\n font-size: var(--text-sm);\n line-height: var(--tw-leading, var(--text-sm--line-height));\n }\n .text-xs {\n font-size: var(--text-xs);\n line-height: var(--tw-leading, var(--text-xs--line-height));\n }\n .font-medium {\n --tw-font-weight: var(--font-weight-medium);\n font-weight: var(--font-weight-medium);\n }\n .font-semibold {\n --tw-font-weight: var(--font-weight-semibold);\n font-weight: var(--font-weight-semibold);\n }\n .text-destructive {\n color: var(--destructive);\n }\n .text-gray-500 {\n color: var(--color-gray-500);\n }\n .text-muted-foreground {\n color: var(--muted-foreground);\n }\n .text-muted-foreground\\\\/60 {\n color: var(--muted-foreground);\n @supports (color: color-mix(in lab, red, red)) {\n color: color-mix(in oklab, var(--muted-foreground) 60%, transparent);\n }\n }\n .opacity-0 {\n opacity: 0%;\n }\n .outline {\n outline-style: var(--tw-outline-style);\n outline-width: 1px;\n }\n .filter {\n filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);\n }\n .transition-colors {\n transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;\n transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));\n transition-duration: var(--tw-duration, var(--default-transition-duration));\n }\n .transition-transform {\n transition-property: transform, translate, scale, rotate;\n transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));\n transition-duration: var(--tw-duration, var(--default-transition-duration));\n }\n .duration-200 {\n --tw-duration: 200ms;\n transition-duration: 200ms;\n }\n .hover\\\\:bg-muted\\\\/50 {\n &:hover {\n @media (hover: hover) {\n background-color: var(--muted);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--muted) 50%, transparent);\n }\n }\n }\n }\n .focus\\\\:ring-1 {\n &:focus {\n --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n }\n .focus\\\\:ring-ring {\n &:focus {\n --tw-ring-color: var(--ring);\n }\n }\n .focus\\\\:outline-none {\n &:focus {\n --tw-outline-style: none;\n outline-style: none;\n }\n }\n .md\\\\:col-span-1 {\n @media (width >= 48rem) {\n grid-column: span 1 / span 1;\n }\n }\n .md\\\\:col-span-4 {\n @media (width >= 48rem) {\n grid-column: span 4 / span 4;\n }\n }\n .md\\\\:hidden {\n @media (width >= 48rem) {\n display: none;\n }\n }\n .md\\\\:grid-cols-2 {\n @media (width >= 48rem) {\n grid-template-columns: repeat(2, minmax(0, 1fr));\n }\n }\n .md\\\\:grid-cols-3 {\n @media (width >= 48rem) {\n grid-template-columns: repeat(3, minmax(0, 1fr));\n }\n }\n .md\\\\:grid-cols-4 {\n @media (width >= 48rem) {\n grid-template-columns: repeat(4, minmax(0, 1fr));\n }\n }\n .md\\\\:flex-row {\n @media (width >= 48rem) {\n flex-direction: row;\n }\n }\n .md\\\\:border-l {\n @media (width >= 48rem) {\n border-left-style: var(--tw-border-style);\n border-left-width: 1px;\n }\n }\n .md\\\\:border-muted {\n @media (width >= 48rem) {\n border-color: var(--muted);\n }\n }\n .md\\\\:pl-4 {\n @media (width >= 48rem) {\n padding-left: calc(var(--spacing) * 4);\n }\n }\n .part\\\\:relative {\n &::part(base) {\n position: relative;\n }\n }\n .part\\\\:my-4 {\n &::part(base) {\n margin-block: calc(var(--spacing) * 4);\n }\n }\n .part\\\\:ml-2 {\n &::part(base) {\n margin-left: calc(var(--spacing) * 2);\n }\n }\n .part\\\\:flex {\n &::part(base) {\n display: flex;\n }\n }\n .part\\\\:h-4 {\n &::part(base) {\n height: calc(var(--spacing) * 4);\n }\n }\n .part\\\\:h-8 {\n &::part(base) {\n height: calc(var(--spacing) * 8);\n }\n }\n .part\\\\:h-10 {\n &::part(base) {\n height: calc(var(--spacing) * 10);\n }\n }\n .part\\\\:h-\\\\[500px\\\\] {\n &::part(base) {\n height: 500px;\n }\n }\n .part\\\\:w-4 {\n &::part(base) {\n width: calc(var(--spacing) * 4);\n }\n }\n .part\\\\:w-8 {\n &::part(base) {\n width: calc(var(--spacing) * 8);\n }\n }\n .part\\\\:w-24 {\n &::part(base) {\n width: calc(var(--spacing) * 24);\n }\n }\n .part\\\\:w-full {\n &::part(base) {\n width: 100%;\n }\n }\n .part\\\\:min-w-24 {\n &::part(base) {\n min-width: calc(var(--spacing) * 24);\n }\n }\n .part\\\\:min-w-max {\n &::part(base) {\n min-width: max-content;\n }\n }\n .part\\\\:flex-shrink-0 {\n &::part(base) {\n flex-shrink: 0;\n }\n }\n .part\\\\:items-center {\n &::part(base) {\n align-items: center;\n }\n }\n .part\\\\:justify-between {\n &::part(base) {\n justify-content: space-between;\n }\n }\n .part\\\\:justify-start {\n &::part(base) {\n justify-content: flex-start;\n }\n }\n .part\\\\:rounded-md {\n &::part(base) {\n border-radius: calc(var(--radius) - 2px);\n }\n }\n .part\\\\:bg-primary\\\\/10 {\n &::part(base) {\n background-color: var(--primary);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--primary) 10%, transparent);\n }\n }\n }\n .part\\\\:p-0 {\n &::part(base) {\n padding: calc(var(--spacing) * 0);\n }\n }\n .part\\\\:px-3 {\n &::part(base) {\n padding-inline: calc(var(--spacing) * 3);\n }\n }\n .part\\\\:py-1 {\n &::part(base) {\n padding-block: calc(var(--spacing) * 1);\n }\n }\n .part\\\\:text-left {\n &::part(base) {\n text-align: left;\n }\n }\n .part\\\\:text-sm {\n &::part(base) {\n font-size: var(--text-sm);\n line-height: var(--tw-leading, var(--text-sm--line-height));\n }\n }\n .part\\\\:hover\\\\:bg-destructive {\n &::part(base) {\n &:hover {\n @media (hover: hover) {\n background-color: var(--destructive);\n }\n }\n }\n }\n .part\\\\:hover\\\\:bg-muted {\n &::part(base) {\n &:hover {\n @media (hover: hover) {\n background-color: var(--muted);\n }\n }\n }\n }\n .part\\\\:hover\\\\:text-destructive-foreground {\n &::part(base) {\n &:hover {\n @media (hover: hover) {\n color: var(--destructive-foreground);\n }\n }\n }\n }\n}\n@property --tw-animation-delay {\n syntax: \"*\";\n inherits: false;\n initial-value: 0s;\n}\n@property --tw-animation-direction {\n syntax: \"*\";\n inherits: false;\n initial-value: normal;\n}\n@property --tw-animation-duration {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-animation-fill-mode {\n syntax: \"*\";\n inherits: false;\n initial-value: none;\n}\n@property --tw-animation-iteration-count {\n syntax: \"*\";\n inherits: false;\n initial-value: 1;\n}\n@property --tw-enter-opacity {\n syntax: \"*\";\n inherits: false;\n initial-value: 1;\n}\n@property --tw-enter-rotate {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-enter-scale {\n syntax: \"*\";\n inherits: false;\n initial-value: 1;\n}\n@property --tw-enter-translate-x {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-enter-translate-y {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-exit-opacity {\n syntax: \"*\";\n inherits: false;\n initial-value: 1;\n}\n@property --tw-exit-rotate {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-exit-scale {\n syntax: \"*\";\n inherits: false;\n initial-value: 1;\n}\n@property --tw-exit-translate-x {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-exit-translate-y {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@layer base {\n * {\n border-color: var(--border);\n outline-color: var(--ring);\n @supports (color: color-mix(in lab, red, red)) {\n outline-color: color-mix(in oklab, var(--ring) 50%, transparent);\n }\n }\n body {\n background-color: var(--background);\n color: var(--foreground);\n }\n}\n:host {\n font-family: inherit;\n line-height: inherit;\n}\n@property --tw-space-y-reverse {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-space-x-reverse {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-border-style {\n syntax: \"*\";\n inherits: false;\n initial-value: solid;\n}\n@property --tw-font-weight {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-outline-style {\n syntax: \"*\";\n inherits: false;\n initial-value: solid;\n}\n@property --tw-blur {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-brightness {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-contrast {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-grayscale {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-hue-rotate {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-invert {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-opacity {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-saturate {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-sepia {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-drop-shadow {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-drop-shadow-color {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-drop-shadow-alpha {\n syntax: \"<percentage>\";\n inherits: false;\n initial-value: 100%;\n}\n@property --tw-drop-shadow-size {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-duration {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-shadow {\n syntax: \"*\";\n inherits: false;\n initial-value: 0 0 #0000;\n}\n@property --tw-shadow-color {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-shadow-alpha {\n syntax: \"<percentage>\";\n inherits: false;\n initial-value: 100%;\n}\n@property --tw-inset-shadow {\n syntax: \"*\";\n inherits: false;\n initial-value: 0 0 #0000;\n}\n@property --tw-inset-shadow-color {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-inset-shadow-alpha {\n syntax: \"<percentage>\";\n inherits: false;\n initial-value: 100%;\n}\n@property --tw-ring-color {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-ring-shadow {\n syntax: \"*\";\n inherits: false;\n initial-value: 0 0 #0000;\n}\n@property --tw-inset-ring-color {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-inset-ring-shadow {\n syntax: \"*\";\n inherits: false;\n initial-value: 0 0 #0000;\n}\n@property --tw-ring-inset {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-ring-offset-width {\n syntax: \"<length>\";\n inherits: false;\n initial-value: 0px;\n}\n@property --tw-ring-offset-color {\n syntax: \"*\";\n inherits: false;\n initial-value: #fff;\n}\n@property --tw-ring-offset-shadow {\n syntax: \"*\";\n inherits: false;\n initial-value: 0 0 #0000;\n}\n@layer properties {\n @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {\n *, ::before, ::after, ::backdrop {\n --tw-space-y-reverse: 0;\n --tw-space-x-reverse: 0;\n --tw-border-style: solid;\n --tw-font-weight: initial;\n --tw-outline-style: solid;\n --tw-blur: initial;\n --tw-brightness: initial;\n --tw-contrast: initial;\n --tw-grayscale: initial;\n --tw-hue-rotate: initial;\n --tw-invert: initial;\n --tw-opacity: initial;\n --tw-saturate: initial;\n --tw-sepia: initial;\n --tw-drop-shadow: initial;\n --tw-drop-shadow-color: initial;\n --tw-drop-shadow-alpha: 100%;\n --tw-drop-shadow-size: initial;\n --tw-duration: initial;\n --tw-shadow: 0 0 #0000;\n --tw-shadow-color: initial;\n --tw-shadow-alpha: 100%;\n --tw-inset-shadow: 0 0 #0000;\n --tw-inset-shadow-color: initial;\n --tw-inset-shadow-alpha: 100%;\n --tw-ring-color: initial;\n --tw-ring-shadow: 0 0 #0000;\n --tw-inset-ring-color: initial;\n --tw-inset-ring-shadow: 0 0 #0000;\n --tw-ring-inset: initial;\n --tw-ring-offset-width: 0px;\n --tw-ring-offset-color: #fff;\n --tw-ring-offset-shadow: 0 0 #0000;\n --tw-animation-delay: 0s;\n --tw-animation-direction: normal;\n --tw-animation-duration: initial;\n --tw-animation-fill-mode: none;\n --tw-animation-iteration-count: 1;\n --tw-enter-opacity: 1;\n --tw-enter-rotate: 0;\n --tw-enter-scale: 1;\n --tw-enter-translate-x: 0;\n --tw-enter-translate-y: 0;\n --tw-exit-opacity: 1;\n --tw-exit-rotate: 0;\n --tw-exit-scale: 1;\n --tw-exit-translate-x: 0;\n --tw-exit-translate-y: 0;\n }\n }\n}\n `"
1020
1034
  }
1021
1035
  ],
1022
1036
  "exports": [
@@ -1034,7 +1048,7 @@
1034
1048
  "package": {
1035
1049
  "name": "@elixir-cloud/trs-filer",
1036
1050
  "description": "Web Component for interacting with Elixir TRS Filer",
1037
- "version": "2.0.0-alpha.37",
1051
+ "version": "2.0.0-alpha.38",
1038
1052
  "license": "Apache-2.0"
1039
1053
  }
1040
1054
  }
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import './chunks/chunk.3WU6NPWM.js';
2
- import './chunks/chunk.D5XJIWNF.js';
3
- import './chunks/chunk.XBT2AOGX.js';
4
- import './chunks/chunk.ETDRGIPN.js';
2
+ import './chunks/chunk.DTNNXROY.js';
3
+ import './chunks/chunk.JW7KBVNO.js';
4
+ import './chunks/chunk.WG3VQJ2S.js';
5
5
  import './chunks/chunk.3S22ENXV.js';
6
6
  import './chunks/chunk.S3NI7NKU.js';
@@ -33,6 +33,7 @@ export type { EccToolCreateInputChangedEvent } from "../../events/index.js";
33
33
  * @property {string} defaultVerifiedSource - Default value for verified source (comma-separated)
34
34
  * @property {string} defaultIncludedApps - Default value for included apps (comma-separated)
35
35
  * @property {string} defaultCustomVersionId - Default value for custom version ID
36
+ * @property {DescriptorType[]} supportedDescriptorTypes - Array of supported descriptor types to filter available workflow languages
36
37
  *
37
38
  * @fires ecc-tool-created - Fired when a tool is successfully created (includes toolId, toolData, and success message)
38
39
  * @fires ecc-tool-create-failed - Fired when tool creation fails
@@ -1,5 +1,5 @@
1
- export { ecc_client_elixir_trs_tool_create_default as default } from '../../chunks/chunk.2ZKZ4W67.js';
2
- import '../../chunks/chunk.XBT2AOGX.js';
3
- import '../../chunks/chunk.ETDRGIPN.js';
1
+ export { ecc_client_elixir_trs_tool_create_default as default } from '../../chunks/chunk.DJ2LLCQL.js';
2
+ import '../../chunks/chunk.JW7KBVNO.js';
3
+ import '../../chunks/chunk.WG3VQJ2S.js';
4
4
  import '../../chunks/chunk.3S22ENXV.js';
5
5
  import '../../chunks/chunk.S3NI7NKU.js';
@@ -1,5 +1,5 @@
1
- export { ecc_client_elixir_trs_tool_create_default as ECCClientElixirTrsToolCreate } from '../chunks/chunk.2ZKZ4W67.js';
2
- import '../chunks/chunk.XBT2AOGX.js';
3
- import '../chunks/chunk.ETDRGIPN.js';
1
+ export { ecc_client_elixir_trs_tool_create_default as ECCClientElixirTrsToolCreate } from '../chunks/chunk.DJ2LLCQL.js';
2
+ import '../chunks/chunk.JW7KBVNO.js';
3
+ import '../chunks/chunk.WG3VQJ2S.js';
4
4
  import '../chunks/chunk.3S22ENXV.js';
5
5
  import '../chunks/chunk.S3NI7NKU.js';
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
3
3
  "name": "@elixir-cloud/trs-filer",
4
- "version": "2.0.0-alpha.37",
4
+ "version": "2.0.0-alpha.38",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -165,6 +165,11 @@
165
165
  "name": "defaultCustomVersionId",
166
166
  "description": "Default value for custom version ID",
167
167
  "type": "string"
168
+ },
169
+ {
170
+ "name": "supportedDescriptorTypes",
171
+ "description": "Array of supported descriptor types to filter available workflow languages",
172
+ "type": "DescriptorType[]"
168
173
  }
169
174
  ],
170
175
  "events": [
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@elixir-cloud/trs-filer",
3
3
  "description": "Web Component for interacting with Elixir TRS Filer",
4
4
  "license": "Apache-2.0",
5
- "version": "2.0.0-alpha.37",
5
+ "version": "2.0.0-alpha.38",
6
6
  "type": "module",
7
7
  "main": "./dist/index.js",
8
8
  "module": "./dist/index.mjs",
@@ -45,8 +45,8 @@
45
45
  "prepublish": "npm run build"
46
46
  },
47
47
  "dependencies": {
48
- "@elixir-cloud/design": "2.0.0-alpha.37",
49
- "@elixir-cloud/trs": "2.0.0-alpha.37",
48
+ "@elixir-cloud/design": "2.0.0-alpha.38",
49
+ "@elixir-cloud/trs": "2.0.0-alpha.38",
50
50
  "@lit/react": "^1.0.2",
51
51
  "@progress/jszip-esm": "^1.0.4",
52
52
  "lit": "^2.8.0"