@elixir-cloud/trs-filer 2.0.0-alpha.4 → 2.0.0-alpha.41

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 (35) hide show
  1. package/dist/chunks/chunk.3S22ENXV.js +252 -0
  2. package/dist/chunks/{chunk.JMC4ZIIA.js → chunk.DJ2LLCQL.js} +6 -5
  3. package/dist/chunks/{chunk.X4SIVSZN.js → chunk.DTNNXROY.js} +1 -1
  4. package/dist/chunks/{chunk.4N7ZYKCA.js → chunk.JW7KBVNO.js} +694 -659
  5. package/dist/chunks/chunk.S3NI7NKU.js +30 -0
  6. package/dist/chunks/chunk.TEZHVCRK.js +1 -0
  7. package/dist/chunks/{chunk.Q5GOJN3Z.js → chunk.WG3VQJ2S.js} +172 -30
  8. package/dist/components/index.js +5 -3
  9. package/dist/components/tool-create/index.js +5 -3
  10. package/dist/components/tool-create/tool-create.d.ts +66 -12
  11. package/dist/components/tool-create/tool-create.js +4 -2
  12. package/dist/components/tool-create/tw-styles.js +2 -1
  13. package/dist/custom-elements.json +289 -58
  14. package/dist/events/ecc-tool-create-failed.d.ts +6 -0
  15. package/dist/events/ecc-tool-create-input-changed.d.ts +6 -0
  16. package/dist/events/ecc-tool-create-validation-failed.d.ts +6 -0
  17. package/dist/events/{ecc-tool-create-success.d.ts → ecc-tool-created.d.ts} +2 -2
  18. package/dist/events/ecc-tools-changed.d.ts +6 -0
  19. package/dist/events/ecc-tools-selected.d.ts +6 -0
  20. package/dist/events/index.d.ts +6 -5
  21. package/dist/index.js +5 -3
  22. package/dist/providers/index.js +3 -0
  23. package/dist/providers/rest-trs-filer-provider.js +2 -0
  24. package/dist/providers/trs-filer-provider.d.ts +3 -3
  25. package/dist/providers/trs-filer-provider.js +1 -0
  26. package/dist/react/ecc-client-elixir-trs-tool-create/index.d.ts +48 -12
  27. package/dist/react/ecc-client-elixir-trs-tool-create/index.js +5 -3
  28. package/dist/react/index.js +5 -3
  29. package/dist/vscode.html-custom-data.json +1 -1
  30. package/dist/web-types.json +154 -73
  31. package/package.json +4 -4
  32. package/dist/events/ecc-tool-create-error.d.ts +0 -6
  33. package/dist/events/ecc-tool-create-validation-error.d.ts +0 -6
  34. package/dist/events/ecc-tools-change.d.ts +0 -6
  35. package/dist/events/ecc-tools-click.d.ts +0 -6
@@ -47,6 +47,52 @@
47
47
  "kind": "class",
48
48
  "description": "",
49
49
  "name": "ECCClientElixirTrsToolCreate",
50
+ "slots": [
51
+ {
52
+ "description": "Custom content for tool name field (default field used if empty)",
53
+ "name": "tool-name"
54
+ },
55
+ {
56
+ "description": "Custom content for organization field (default field used if empty)",
57
+ "name": "organization"
58
+ },
59
+ {
60
+ "description": "Custom content for description field (default field used if empty)",
61
+ "name": "description"
62
+ },
63
+ {
64
+ "description": "Custom content for tool class field (default field used if empty)",
65
+ "name": "tool-class"
66
+ },
67
+ {
68
+ "description": "Custom content for custom tool ID field (default field used if empty)",
69
+ "name": "custom-tool-id"
70
+ },
71
+ {
72
+ "description": "Custom content for aliases field (default field used if empty)",
73
+ "name": "aliases"
74
+ },
75
+ {
76
+ "description": "Custom content for checker URL field (default field used if empty)",
77
+ "name": "checker-url"
78
+ },
79
+ {
80
+ "description": "Custom content for version name field (default field used if empty)",
81
+ "name": "version-name"
82
+ },
83
+ {
84
+ "description": "Custom content for version author field (default field used if empty)",
85
+ "name": "version-author"
86
+ },
87
+ {
88
+ "description": "Custom content for advanced version options section (default advanced version options used if empty)",
89
+ "name": "version-advanced-options"
90
+ },
91
+ {
92
+ "description": "Custom content for entire advanced fields section (default advanced fields used if empty)",
93
+ "name": "advanced-fields"
94
+ }
95
+ ],
50
96
  "members": [
51
97
  {
52
98
  "kind": "field",
@@ -63,7 +109,151 @@
63
109
  "type": {
64
110
  "text": "TrsProvider"
65
111
  },
66
- "description": "Custom data provider (optional, overrides baseUrl)"
112
+ "description": "Custom data provider (optional, overrides baseUrl) // Default value properties for basic fields"
113
+ },
114
+ {
115
+ "kind": "field",
116
+ "name": "defaultName",
117
+ "type": {
118
+ "text": "string"
119
+ },
120
+ "default": "\"\"",
121
+ "description": "Default value for tool name"
122
+ },
123
+ {
124
+ "kind": "field",
125
+ "name": "defaultOrganization",
126
+ "type": {
127
+ "text": "string"
128
+ },
129
+ "default": "\"\"",
130
+ "description": "Default value for organization"
131
+ },
132
+ {
133
+ "kind": "field",
134
+ "name": "defaultDescription",
135
+ "type": {
136
+ "text": "string"
137
+ },
138
+ "default": "\"\"",
139
+ "description": "Default value for description"
140
+ },
141
+ {
142
+ "kind": "field",
143
+ "name": "defaultToolClassId",
144
+ "type": {
145
+ "text": "string"
146
+ },
147
+ "default": "\"\"",
148
+ "description": "Default value for tool class ID"
149
+ },
150
+ {
151
+ "kind": "field",
152
+ "name": "defaultAliases",
153
+ "type": {
154
+ "text": "string"
155
+ },
156
+ "default": "\"\"",
157
+ "description": "Default value for aliases (comma-separated)"
158
+ },
159
+ {
160
+ "kind": "field",
161
+ "name": "defaultCheckerUrl",
162
+ "type": {
163
+ "text": "string"
164
+ },
165
+ "default": "\"\"",
166
+ "description": "Default value for checker URL"
167
+ },
168
+ {
169
+ "kind": "field",
170
+ "name": "defaultCustomToolId",
171
+ "type": {
172
+ "text": "string"
173
+ },
174
+ "default": "\"\"",
175
+ "description": "Default value for custom tool ID // Default value properties for version fields"
176
+ },
177
+ {
178
+ "kind": "field",
179
+ "name": "defaultVersionName",
180
+ "type": {
181
+ "text": "string"
182
+ },
183
+ "default": "\"\"",
184
+ "description": "Default value for version name"
185
+ },
186
+ {
187
+ "kind": "field",
188
+ "name": "defaultVersionAuthor",
189
+ "type": {
190
+ "text": "string"
191
+ },
192
+ "default": "\"\"",
193
+ "description": "Default value for version author (comma-separated)"
194
+ },
195
+ {
196
+ "kind": "field",
197
+ "name": "defaultIsProduction",
198
+ "type": {
199
+ "text": "boolean"
200
+ },
201
+ "default": "false",
202
+ "description": "Default value for production status"
203
+ },
204
+ {
205
+ "kind": "field",
206
+ "name": "defaultSigned",
207
+ "type": {
208
+ "text": "boolean"
209
+ },
210
+ "default": "false",
211
+ "description": "Default value for signed status"
212
+ },
213
+ {
214
+ "kind": "field",
215
+ "name": "defaultVerified",
216
+ "type": {
217
+ "text": "boolean"
218
+ },
219
+ "default": "false",
220
+ "description": "Default value for verified status"
221
+ },
222
+ {
223
+ "kind": "field",
224
+ "name": "defaultVerifiedSource",
225
+ "type": {
226
+ "text": "string"
227
+ },
228
+ "default": "\"\"",
229
+ "description": "Default value for verified source (comma-separated)"
230
+ },
231
+ {
232
+ "kind": "field",
233
+ "name": "defaultIncludedApps",
234
+ "type": {
235
+ "text": "string"
236
+ },
237
+ "default": "\"\"",
238
+ "description": "Default value for included apps (comma-separated)"
239
+ },
240
+ {
241
+ "kind": "field",
242
+ "name": "defaultCustomVersionId",
243
+ "type": {
244
+ "text": "string"
245
+ },
246
+ "default": "\"\"",
247
+ "description": "Default value for custom version ID"
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"
67
257
  },
68
258
  {
69
259
  "kind": "field",
@@ -114,7 +304,7 @@
114
304
  "kind": "field",
115
305
  "name": "versions",
116
306
  "type": {
117
- "text": "{\n name: string;\n author: string[];\n descriptorTypes: DescriptorType[];\n isProduction: boolean;\n signed: boolean;\n verified: boolean;\n verifiedSource: string[];\n includedApps: string[];\n files: {\n path: string;\n fileType: FileType;\n content?: string;\n file?: File;\n checksumType: string;\n checksumValue: string;\n descriptorType?: DescriptorType;\n }[];\n images: ImageDataRegister[];\n customVersionId: string;\n useCustomVersionId: boolean;\n }[]"
307
+ "text": "{\n name: string;\n author: string[];\n descriptorTypes: DescriptorType[];\n isProduction: boolean;\n signed: boolean;\n verified: boolean;\n verifiedSource: string[];\n includedApps: string[];\n files: {\n path: string;\n fileType: FileType;\n uiFileType: UIFileType;\n content?: string;\n file?: File;\n checksumType: string;\n checksumValue: string;\n descriptorType?: DescriptorType;\n containerImageType?: ImageType;\n }[];\n images: ImageDataRegister[];\n customVersionId: string;\n useCustomVersionId: boolean;\n }[]"
118
308
  },
119
309
  "privacy": "private",
120
310
  "default": "[\n {\n name: \"\",\n author: [],\n descriptorTypes: [],\n isProduction: false,\n signed: false,\n verified: false,\n verifiedSource: [],\n includedApps: [],\n files: [],\n images: [],\n customVersionId: \"\",\n useCustomVersionId: false,\n },\n ]"
@@ -146,6 +336,16 @@
146
336
  "privacy": "private",
147
337
  "default": "{}"
148
338
  },
339
+ {
340
+ "kind": "method",
341
+ "name": "initializeFormWithDefaults",
342
+ "privacy": "private",
343
+ "return": {
344
+ "type": {
345
+ "text": "void"
346
+ }
347
+ }
348
+ },
149
349
  {
150
350
  "kind": "method",
151
351
  "name": "loadToolClasses",
@@ -385,7 +585,7 @@
385
585
  {
386
586
  "kind": "method",
387
587
  "name": "extractFileFromZip",
388
- "privacy": "private",
588
+ "static": true,
389
589
  "return": {
390
590
  "type": {
391
591
  "text": "Promise<any | null>"
@@ -409,7 +609,7 @@
409
609
  {
410
610
  "kind": "method",
411
611
  "name": "isTextFile",
412
- "privacy": "private",
612
+ "static": true,
413
613
  "return": {
414
614
  "type": {
415
615
  "text": "boolean"
@@ -427,7 +627,7 @@
427
627
  {
428
628
  "kind": "method",
429
629
  "name": "getDefaultFileType",
430
- "privacy": "private",
630
+ "static": true,
431
631
  "return": {
432
632
  "type": {
433
633
  "text": "FileType"
@@ -442,28 +642,10 @@
442
642
  }
443
643
  ]
444
644
  },
445
- {
446
- "kind": "method",
447
- "name": "getDefaultDescriptorType",
448
- "privacy": "private",
449
- "return": {
450
- "type": {
451
- "text": "DescriptorType | undefined"
452
- }
453
- },
454
- "parameters": [
455
- {
456
- "name": "filename",
457
- "type": {
458
- "text": "string"
459
- }
460
- }
461
- ]
462
- },
463
645
  {
464
646
  "kind": "method",
465
647
  "name": "getContainerImageType",
466
- "privacy": "private",
648
+ "static": true,
467
649
  "return": {
468
650
  "type": {
469
651
  "text": "ImageType"
@@ -481,7 +663,7 @@
481
663
  {
482
664
  "kind": "method",
483
665
  "name": "getFileExtension",
484
- "privacy": "private",
666
+ "static": true,
485
667
  "return": {
486
668
  "type": {
487
669
  "text": "string"
@@ -668,99 +850,148 @@
668
850
  },
669
851
  {
670
852
  "kind": "method",
671
- "name": "renderFileInput",
672
- "privacy": "private",
853
+ "name": "getVersionTags",
854
+ "static": true,
855
+ "return": {
856
+ "type": {
857
+ "text": "string[]"
858
+ }
859
+ },
673
860
  "parameters": [
674
861
  {
675
- "name": "versionIndex",
862
+ "name": "version",
676
863
  "type": {
677
- "text": "number"
864
+ "text": "any"
678
865
  }
679
- },
866
+ }
867
+ ]
868
+ },
869
+ {
870
+ "kind": "method",
871
+ "name": "handleVersionTagsChange",
872
+ "privacy": "private",
873
+ "return": {
874
+ "type": {
875
+ "text": "void"
876
+ }
877
+ },
878
+ "parameters": [
680
879
  {
681
- "name": "fileIndex",
880
+ "name": "index",
682
881
  "type": {
683
882
  "text": "number"
684
883
  }
685
884
  },
686
885
  {
687
- "name": "file",
886
+ "name": "tags",
688
887
  "type": {
689
- "text": "any"
888
+ "text": "string[]"
690
889
  }
691
890
  }
692
891
  ]
693
892
  },
694
893
  {
695
894
  "kind": "method",
696
- "name": "getVersionTags",
697
- "privacy": "private",
895
+ "name": "getUIFileType",
896
+ "static": true,
698
897
  "return": {
699
898
  "type": {
700
- "text": "string[]"
899
+ "text": "UIFileType"
701
900
  }
702
901
  },
703
902
  "parameters": [
704
903
  {
705
- "name": "version",
904
+ "name": "filename",
706
905
  "type": {
707
- "text": "any"
906
+ "text": "string"
907
+ }
908
+ },
909
+ {
910
+ "name": "fileType",
911
+ "type": {
912
+ "text": "FileType"
708
913
  }
709
914
  }
710
915
  ]
711
916
  },
712
917
  {
713
918
  "kind": "method",
714
- "name": "handleVersionTagsChange",
715
- "privacy": "private",
919
+ "name": "convertUIFileTypeToFileType",
920
+ "static": true,
716
921
  "return": {
717
922
  "type": {
718
- "text": "void"
923
+ "text": "FileType"
719
924
  }
720
925
  },
721
926
  "parameters": [
722
927
  {
723
- "name": "index",
928
+ "name": "uiFileType",
724
929
  "type": {
725
- "text": "number"
930
+ "text": "UIFileType"
726
931
  }
727
- },
932
+ }
933
+ ]
934
+ },
935
+ {
936
+ "kind": "method",
937
+ "name": "convertUIFileTypeToImageType",
938
+ "static": true,
939
+ "return": {
940
+ "type": {
941
+ "text": "ImageType | undefined"
942
+ }
943
+ },
944
+ "parameters": [
728
945
  {
729
- "name": "tags",
946
+ "name": "uiFileType",
730
947
  "type": {
731
- "text": "string[]"
948
+ "text": "UIFileType"
732
949
  }
733
950
  }
734
951
  ]
952
+ },
953
+ {
954
+ "kind": "method",
955
+ "name": "renderDescriptorTypeOptions",
956
+ "privacy": "private"
735
957
  }
736
958
  ],
737
959
  "events": [
738
960
  {
739
- "name": "ecc-tool-create-validation-error",
961
+ "name": "ecc-tool-create-validation-failed",
740
962
  "type": {
741
963
  "text": "CustomEvent"
742
964
  },
743
965
  "description": "Fired when there are validation errors during tool creation",
744
- "reactName": "onEccToolCreateValidationError",
745
- "eventName": "EccToolCreateValidationErrorEvent"
966
+ "reactName": "onEccToolCreateValidationFailed",
967
+ "eventName": "EccToolCreateValidationFailedEvent"
746
968
  },
747
969
  {
748
- "name": "ecc-tool-create-error",
970
+ "name": "ecc-tool-create-failed",
749
971
  "type": {
750
972
  "text": "CustomEvent"
751
973
  },
752
974
  "description": "Fired when tool creation fails",
753
- "reactName": "onEccToolCreateError",
754
- "eventName": "EccToolCreateErrorEvent"
975
+ "reactName": "onEccToolCreateFailed",
976
+ "eventName": "EccToolCreateFailedEvent"
755
977
  },
756
978
  {
757
- "name": "ecc-tool-create-success",
979
+ "name": "ecc-tool-created",
758
980
  "type": {
759
981
  "text": "CustomEvent"
760
982
  },
761
983
  "description": "Fired when a tool is successfully created (includes toolId, toolData, and success message)",
762
- "reactName": "onEccToolCreateSuccess",
763
- "eventName": "EccToolCreateSuccessEvent"
984
+ "reactName": "onEccToolCreated",
985
+ "eventName": "EccToolCreatedEvent"
986
+ },
987
+ {
988
+ "name": "ecc-tool-create-input-changed",
989
+ "type": {
990
+ "text": "CustomEvent"
991
+ },
992
+ "description": "Fired when an input field is changed",
993
+ "reactName": "onEccToolCreateInputChanged",
994
+ "eventName": "EccToolCreateInputChangedEvent"
764
995
  }
765
996
  ],
766
997
  "superclass": {
@@ -768,7 +999,7 @@
768
999
  "package": "lit"
769
1000
  },
770
1001
  "summary": "Component for creating new tools in TRS-Filer",
771
- "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 * @fires ecc-tool-create-success - Fired when a tool is successfully created (includes toolId, toolData, and success message)\n * @fires ecc-tool-create-error - Fired when tool creation fails\n * @fires ecc-tool-create-validation-error - Fired when there are validation errors during tool creation\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 */",
772
1003
  "tagName": "ecc-client-elixir-trs-tool-create",
773
1004
  "customElement": true
774
1005
  }
@@ -799,7 +1030,7 @@
799
1030
  {
800
1031
  "kind": "variable",
801
1032
  "name": "ComponentStyles",
802
- "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 .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\\\\: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@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@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 }\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 `"
803
1034
  }
804
1035
  ],
805
1036
  "exports": [
@@ -817,7 +1048,7 @@
817
1048
  "package": {
818
1049
  "name": "@elixir-cloud/trs-filer",
819
1050
  "description": "Web Component for interacting with Elixir TRS Filer",
820
- "version": "2.0.0-alpha.4",
1051
+ "version": "2.0.0-alpha.41",
821
1052
  "license": "Apache-2.0"
822
1053
  }
823
1054
  }
@@ -0,0 +1,6 @@
1
+ export type EccToolCreateFailedEvent = CustomEvent<Record<string, any>>;
2
+ declare global {
3
+ interface GlobalEventHandlersEventMap {
4
+ "ecc-tool-create-failed": EccToolCreateFailedEvent;
5
+ }
6
+ }
@@ -0,0 +1,6 @@
1
+ export type EccToolCreateInputChangedEvent = CustomEvent<Record<string, any>>;
2
+ declare global {
3
+ interface GlobalEventHandlersEventMap {
4
+ "ecc-tool-create-input-changed": EccToolCreateInputChangedEvent;
5
+ }
6
+ }
@@ -0,0 +1,6 @@
1
+ export type EccToolCreateValidationFailedEvent = CustomEvent<Record<string, any>>;
2
+ declare global {
3
+ interface GlobalEventHandlersEventMap {
4
+ "ecc-tool-create-validation-failed": EccToolCreateValidationFailedEvent;
5
+ }
6
+ }
@@ -1,10 +1,10 @@
1
- export type EccToolCreateSuccessEvent = CustomEvent<{
1
+ export type EccToolCreatedEvent = CustomEvent<{
2
2
  toolId: string;
3
3
  toolData: Record<string, any>;
4
4
  message: string;
5
5
  }>;
6
6
  declare global {
7
7
  interface GlobalEventHandlersEventMap {
8
- "ecc-tool-create-success": EccToolCreateSuccessEvent;
8
+ "ecc-tool-created": EccToolCreatedEvent;
9
9
  }
10
10
  }
@@ -0,0 +1,6 @@
1
+ export type EccToolsChangedEvent = CustomEvent<Record<string, any>>;
2
+ declare global {
3
+ interface GlobalEventHandlersEventMap {
4
+ "ecc-tools-changed": EccToolsChangedEvent;
5
+ }
6
+ }