@wise/dynamic-flow-client-internal 5.6.1 → 5.7.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/build/i18n/ja.json +1 -1
- package/build/main.css +15 -0
- package/build/main.js +1171 -1052
- package/build/main.mjs +1014 -889
- package/build/types/dynamicFlow/renderers.d.ts +1 -1
- package/package.json +11 -11
package/build/i18n/ja.json
CHANGED
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"df.wise.ExternalConfirmation.open": "新しいタブで開く",
|
|
28
28
|
"df.wise.ExternalConfirmation.title": "承認してください",
|
|
29
29
|
"df.wise.Help.ariaLabel": "詳細はこちらをクリックしてください。",
|
|
30
|
-
"df.wise.MultiSelect.summary": "{first}とその他{count}",
|
|
30
|
+
"df.wise.MultiSelect.summary": "{first}とその他{count}オプション",
|
|
31
31
|
"df.wise.MultipleFileUploadSchema.maxFileSizeError": "大変申し訳ございませんが、ファイルが大きすぎます。これより小さいファイルをアップロードしてください。",
|
|
32
32
|
"df.wise.MultipleFileUploadSchema.maxItemsError": "{maxItems}個以下のファイルをアップロードしてください。",
|
|
33
33
|
"df.wise.MultipleFileUploadSchema.minItemsError": "{minItems}個以上のファイルをアップロードしてください。",
|
package/build/main.css
CHANGED
|
@@ -153,6 +153,21 @@
|
|
|
153
153
|
width: 300px;
|
|
154
154
|
}
|
|
155
155
|
}
|
|
156
|
+
.df-media-layout-avatar {
|
|
157
|
+
display: flex;
|
|
158
|
+
}
|
|
159
|
+
.df-media-layout-avatar.start {
|
|
160
|
+
justify-content: start;
|
|
161
|
+
align-items: start;
|
|
162
|
+
}
|
|
163
|
+
.df-media-layout-avatar.center {
|
|
164
|
+
justify-content: center;
|
|
165
|
+
align-items: center;
|
|
166
|
+
}
|
|
167
|
+
.df-media-layout-avatar.end {
|
|
168
|
+
justify-content: end;
|
|
169
|
+
align-items: end;
|
|
170
|
+
}
|
|
156
171
|
.df-toolbar {
|
|
157
172
|
display: flex;
|
|
158
173
|
gap: 0.25em;
|