uidex 0.9.0 → 0.11.0
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/cli/cli.cjs +4117 -2902
- package/dist/cli/cli.cjs.map +1 -1
- package/dist/headless/index.cjs +3 -0
- package/dist/headless/index.cjs.map +1 -1
- package/dist/headless/index.d.cts +55 -16
- package/dist/headless/index.d.ts +55 -16
- package/dist/headless/index.js +3 -0
- package/dist/headless/index.js.map +1 -1
- package/dist/index.cjs +7 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +55 -16
- package/dist/index.d.ts +55 -16
- package/dist/index.js +7 -1
- package/dist/index.js.map +1 -1
- package/dist/playwright/index.cjs +40 -7
- package/dist/playwright/index.cjs.map +1 -1
- package/dist/playwright/index.d.cts +15 -1
- package/dist/playwright/index.d.ts +15 -1
- package/dist/playwright/index.js +39 -7
- package/dist/playwright/index.js.map +1 -1
- package/dist/playwright/states-reporter.cjs +36 -7
- package/dist/playwright/states-reporter.cjs.map +1 -1
- package/dist/playwright/states-reporter.d.cts +15 -0
- package/dist/playwright/states-reporter.d.ts +15 -0
- package/dist/playwright/states-reporter.js +36 -7
- package/dist/playwright/states-reporter.js.map +1 -1
- package/dist/playwright/states.cjs +8 -0
- package/dist/playwright/states.cjs.map +1 -1
- package/dist/playwright/states.d.cts +44 -1
- package/dist/playwright/states.d.ts +44 -1
- package/dist/playwright/states.js +7 -0
- package/dist/playwright/states.js.map +1 -1
- package/dist/react/index.cjs +7 -1
- package/dist/react/index.cjs.map +1 -1
- package/dist/react/index.d.cts +55 -16
- package/dist/react/index.d.ts +55 -16
- package/dist/react/index.js +7 -1
- package/dist/react/index.js.map +1 -1
- package/dist/scan/index.cjs +1533 -294
- package/dist/scan/index.cjs.map +1 -1
- package/dist/scan/index.d.cts +459 -112
- package/dist/scan/index.d.ts +459 -112
- package/dist/scan/index.js +1517 -290
- package/dist/scan/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1084,6 +1084,9 @@ var tailwind_built_default = `/*! tailwindcss v4.2.2 | MIT License | https://tai
|
|
|
1084
1084
|
.flex-1 {
|
|
1085
1085
|
flex: 1;
|
|
1086
1086
|
}
|
|
1087
|
+
.shrink {
|
|
1088
|
+
flex-shrink: 1;
|
|
1089
|
+
}
|
|
1087
1090
|
.shrink-0 {
|
|
1088
1091
|
flex-shrink: 0;
|
|
1089
1092
|
}
|
|
@@ -7345,7 +7348,10 @@ function createEntityDetailView(config) {
|
|
|
7345
7348
|
sections.push({ id: "description", text: meta.description });
|
|
7346
7349
|
}
|
|
7347
7350
|
if (offerAcceptance && meta?.acceptance?.length) {
|
|
7348
|
-
sections.push({
|
|
7351
|
+
sections.push({
|
|
7352
|
+
id: "acceptance",
|
|
7353
|
+
items: meta.acceptance.map((c) => c.text)
|
|
7354
|
+
});
|
|
7349
7355
|
}
|
|
7350
7356
|
if (entity) {
|
|
7351
7357
|
for (const s of config.extraSections?.(ctx, entity) ?? []) {
|