@elixir-cloud/trs-filer 2.0.0-alpha.32 → 2.0.0-alpha.34
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.
- package/dist/chunks/{chunk.ECGVPJ4T.js → chunk.2ZKZ4W67.js} +3 -2
- package/dist/chunks/{chunk.HHC6HRU2.js → chunk.D5XJIWNF.js} +1 -1
- package/dist/chunks/{chunk.D4A7TFU2.js → chunk.ETDRGIPN.js} +8 -0
- package/dist/chunks/{chunk.KYMGLPMB.js → chunk.XBT2AOGX.js} +541 -370
- package/dist/components/index.js +3 -3
- package/dist/components/tool-create/index.js +3 -3
- package/dist/components/tool-create/tool-create.d.ts +48 -0
- package/dist/components/tool-create/tool-create.js +2 -2
- package/dist/components/tool-create/tw-styles.js +1 -1
- package/dist/custom-elements.json +204 -4
- package/dist/events/ecc-tool-create-input-changed.d.ts +6 -0
- package/dist/events/index.d.ts +1 -0
- package/dist/index.js +3 -3
- package/dist/react/ecc-client-elixir-trs-tool-create/index.d.ts +35 -0
- package/dist/react/ecc-client-elixir-trs-tool-create/index.js +3 -3
- package/dist/react/index.js +3 -3
- package/dist/vscode.html-custom-data.json +1 -1
- package/dist/web-types.json +134 -3
- package/package.json +3 -3
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ECCClientElixirTrsToolCreate } from './chunk.
|
|
1
|
+
import { ECCClientElixirTrsToolCreate } from './chunk.XBT2AOGX.js';
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
import { createComponent } from '@lit/react';
|
|
4
4
|
|
|
@@ -13,7 +13,8 @@ var reactWrapper = createComponent({
|
|
|
13
13
|
events: {
|
|
14
14
|
onEccToolCreateValidationFailed: "ecc-tool-create-validation-failed",
|
|
15
15
|
onEccToolCreateFailed: "ecc-tool-create-failed",
|
|
16
|
-
onEccToolCreated: "ecc-tool-created"
|
|
16
|
+
onEccToolCreated: "ecc-tool-created",
|
|
17
|
+
onEccToolCreateInputChanged: "ecc-tool-create-input-changed"
|
|
17
18
|
},
|
|
18
19
|
displayName: "EccClientElixirTrsToolCreate"
|
|
19
20
|
});
|
|
@@ -392,6 +392,9 @@ var ComponentStyles = css` /*! tailwindcss v4.1.4 | MIT License | https://tailwi
|
|
|
392
392
|
.pt-4 {
|
|
393
393
|
padding-top: calc(var(--spacing) * 4);
|
|
394
394
|
}
|
|
395
|
+
.pr-4 {
|
|
396
|
+
padding-right: calc(var(--spacing) * 4);
|
|
397
|
+
}
|
|
395
398
|
.text-center {
|
|
396
399
|
text-align: center;
|
|
397
400
|
}
|
|
@@ -511,6 +514,11 @@ var ComponentStyles = css` /*! tailwindcss v4.1.4 | MIT License | https://tailwi
|
|
|
511
514
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
512
515
|
}
|
|
513
516
|
}
|
|
517
|
+
.md\\:flex-row {
|
|
518
|
+
@media (width >= 48rem) {
|
|
519
|
+
flex-direction: row;
|
|
520
|
+
}
|
|
521
|
+
}
|
|
514
522
|
.md\\:border-l {
|
|
515
523
|
@media (width >= 48rem) {
|
|
516
524
|
border-left-style: var(--tw-border-style);
|