@parhelia/localization 0.1.12911 → 0.1.12912
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/LocalizeItemDialog.d.ts.map +1 -1
- package/dist/LocalizeItemDialog.js +17 -9
- package/dist/LocalizeItemUtils.d.ts.map +1 -1
- package/dist/LocalizeItemUtils.js +8 -22
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +35 -9
- package/dist/steps/ItemSelectionStep.js +1 -1
- package/dist/steps/ItemSelectionTree.d.ts.map +1 -1
- package/dist/steps/ItemSelectionTree.js +6 -1
- package/dist/steps/ProviderStep.d.ts +3 -0
- package/dist/steps/ProviderStep.d.ts.map +1 -0
- package/dist/steps/ProviderStep.js +223 -0
- package/dist/steps/ServiceLanguageSelectionStep.d.ts.map +1 -1
- package/dist/steps/ServiceLanguageSelectionStep.js +11 -6
- package/dist/steps/WizardStepShell.d.ts +3 -1
- package/dist/steps/WizardStepShell.d.ts.map +1 -1
- package/dist/steps/WizardStepShell.js +4 -2
- package/dist/translation-center/TranslationBatches.d.ts +2 -0
- package/dist/translation-center/TranslationBatches.d.ts.map +1 -1
- package/dist/translation-center/TranslationBatches.js +541 -234
- package/dist/translation-center/TranslationsTitlebar.d.ts.map +1 -1
- package/dist/translation-center/TranslationsTitlebar.js +4 -13
- package/package.json +1 -1
- package/dist/steps/PromptCustomizationStep.d.ts +0 -3
- package/dist/steps/PromptCustomizationStep.d.ts.map +0 -1
- package/dist/steps/PromptCustomizationStep.js +0 -257
|
@@ -4,8 +4,10 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
|
4
4
|
* live in the wizard's stepper bar, so this just gives a consistent
|
|
5
5
|
* padding + optional meta row + flex/scroll behavior for the content.
|
|
6
6
|
*/
|
|
7
|
-
export function WizardStepShell({ meta, fillHeight = false, testId, children, }) {
|
|
8
|
-
return (_jsxs("div", { className:
|
|
7
|
+
export function WizardStepShell({ meta, fillHeight = false, noPadding = false, testId, children, }) {
|
|
8
|
+
return (_jsxs("div", { className: noPadding
|
|
9
|
+
? "flex h-full flex-col gap-4"
|
|
10
|
+
: "flex h-full flex-col gap-4 p-4 md:p-6", "data-testid": testId, children: [meta && (_jsx("div", { className: "flex items-center justify-end gap-2", children: meta })), _jsx("div", { className: fillHeight
|
|
9
11
|
? "flex min-h-0 flex-1 flex-col gap-4"
|
|
10
12
|
: "flex flex-col gap-5", children: children })] }));
|
|
11
13
|
}
|
|
@@ -1,2 +1,4 @@
|
|
|
1
1
|
export declare function TranslationBatches(): import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
export declare const TRANSLATION_BATCH_FILTERS_SIDEBAR_ID = "translation-batch-filters";
|
|
3
|
+
export declare function TranslationBatchFiltersSidebar(): import("react/jsx-runtime").JSX.Element;
|
|
2
4
|
//# sourceMappingURL=TranslationBatches.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TranslationBatches.d.ts","sourceRoot":"","sources":["../../src/translation-center/TranslationBatches.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"TranslationBatches.d.ts","sourceRoot":"","sources":["../../src/translation-center/TranslationBatches.tsx"],"names":[],"mappings":"AA6UA,wBAAgB,kBAAkB,4CAmlCjC;AAED,eAAO,MAAM,oCAAoC,8BAA8B,CAAC;AAEhF,wBAAgB,8BAA8B,4CA0Y7C"}
|