@14ch/svelte-ui 0.0.55 → 0.0.57
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/assets/styles/import.css +4 -4
- package/dist/assets/styles/variables.scss +4 -4
- package/dist/components/Button.svelte +30 -4
- package/dist/components/Button.svelte.d.ts +3 -2
- package/dist/components/Checkbox.svelte +32 -4
- package/dist/components/Checkbox.svelte.d.ts +2 -2
- package/dist/components/ColorPicker.svelte +41 -4
- package/dist/components/ColorPicker.svelte.d.ts +2 -2
- package/dist/components/Combobox.svelte +31 -4
- package/dist/components/Combobox.svelte.d.ts +2 -2
- package/dist/components/Datepicker.svelte +31 -4
- package/dist/components/Datepicker.svelte.d.ts +2 -2
- package/dist/components/Fab.svelte +28 -2
- package/dist/components/Fab.svelte.d.ts +1 -2
- package/dist/components/Icon.svelte +2 -4
- package/dist/components/Icon.svelte.d.ts +2 -2
- package/dist/components/IconButton.svelte +28 -4
- package/dist/components/IconButton.svelte.d.ts +1 -2
- package/dist/components/Input.svelte +43 -4
- package/dist/components/Input.svelte.d.ts +3 -2
- package/dist/components/Radio.svelte +32 -4
- package/dist/components/Radio.svelte.d.ts +2 -2
- package/dist/components/SegmentedControl.svelte +29 -4
- package/dist/components/SegmentedControl.svelte.d.ts +2 -2
- package/dist/components/Select.svelte +34 -4
- package/dist/components/Select.svelte.d.ts +2 -2
- package/dist/components/Slider.svelte +31 -4
- package/dist/components/Slider.svelte.d.ts +2 -2
- package/dist/components/SnackbarItem.svelte +1 -1
- package/dist/components/StepNav.svelte +29 -19
- package/dist/components/StepNav.svelte.d.ts +5 -1
- package/dist/components/Switch.svelte +32 -4
- package/dist/components/Switch.svelte.d.ts +2 -2
- package/dist/components/Textarea.svelte +38 -4
- package/dist/components/Textarea.svelte.d.ts +1 -2
- package/dist/i18n/index.d.ts +12 -12
- package/dist/i18n/locales/de.d.ts +2 -2
- package/dist/i18n/locales/de.js +2 -2
- package/dist/i18n/locales/en.d.ts +2 -2
- package/dist/i18n/locales/en.js +2 -2
- package/dist/i18n/locales/es.d.ts +2 -2
- package/dist/i18n/locales/es.js +2 -2
- package/dist/i18n/locales/fr.d.ts +2 -2
- package/dist/i18n/locales/fr.js +2 -2
- package/dist/i18n/locales/ja.d.ts +2 -2
- package/dist/i18n/locales/ja.js +2 -2
- package/dist/i18n/locales/zh-cn.d.ts +2 -2
- package/dist/i18n/locales/zh-cn.js +2 -2
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@ import type { HTMLTextareaAttributes } from 'svelte/elements';
|
|
|
2
2
|
import type { IconVariant, IconWeight, IconGrade, IconOpticalSize } from '../types/icon';
|
|
3
3
|
import type { FocusHandler, KeyboardHandler, MouseHandler, TouchHandler, PointerHandler, BivariantValueHandler } from '../types/callbackHandlers';
|
|
4
4
|
import type { FocusStyle } from '../types/propOptions';
|
|
5
|
-
export type TextareaProps = {
|
|
5
|
+
export type TextareaProps = Omit<HTMLTextareaAttributes, 'value' | 'id' | 'tabindex' | 'maxlength' | 'autocomplete' | 'wrap' | 'spellcheck' | 'autocapitalize' | 'onfocus' | 'onblur' | 'onkeydown' | 'onkeyup' | 'onclick' | 'onmousedown' | 'onmouseup' | 'onmouseenter' | 'onmouseleave' | 'onmouseover' | 'onmouseout' | 'oncontextmenu' | 'onauxclick' | 'ontouchstart' | 'ontouchend' | 'ontouchmove' | 'ontouchcancel' | 'onpointerdown' | 'onpointerup' | 'onpointerenter' | 'onpointerleave' | 'onpointermove' | 'onpointercancel' | 'onchange' | 'oninput'> & {
|
|
6
6
|
name?: string;
|
|
7
7
|
value: string | null | undefined;
|
|
8
8
|
placeholder?: string;
|
|
@@ -72,7 +72,6 @@ export type TextareaProps = {
|
|
|
72
72
|
onpointercancel?: PointerHandler;
|
|
73
73
|
onchange?: BivariantValueHandler<string>;
|
|
74
74
|
oninput?: BivariantValueHandler<string>;
|
|
75
|
-
[key: string]: any;
|
|
76
75
|
};
|
|
77
76
|
declare const Textarea: import("svelte").Component<TextareaProps, {
|
|
78
77
|
focus: () => void;
|
package/dist/i18n/index.d.ts
CHANGED
|
@@ -60,8 +60,8 @@ export declare const TRANSLATIONS: {
|
|
|
60
60
|
};
|
|
61
61
|
readonly stepNav: {
|
|
62
62
|
readonly step: "Step {{number}}";
|
|
63
|
-
readonly
|
|
64
|
-
readonly
|
|
63
|
+
readonly done: "Completed";
|
|
64
|
+
readonly inProgress: "Current step";
|
|
65
65
|
readonly upcoming: "Not started";
|
|
66
66
|
readonly error: "Error";
|
|
67
67
|
};
|
|
@@ -126,8 +126,8 @@ export declare const TRANSLATIONS: {
|
|
|
126
126
|
};
|
|
127
127
|
readonly stepNav: {
|
|
128
128
|
readonly step: "ステップ{{number}}";
|
|
129
|
-
readonly
|
|
130
|
-
readonly
|
|
129
|
+
readonly done: "完了";
|
|
130
|
+
readonly inProgress: "現在のステップ";
|
|
131
131
|
readonly upcoming: "未到達";
|
|
132
132
|
readonly error: "エラー";
|
|
133
133
|
};
|
|
@@ -192,8 +192,8 @@ export declare const TRANSLATIONS: {
|
|
|
192
192
|
};
|
|
193
193
|
readonly stepNav: {
|
|
194
194
|
readonly step: "Étape {{number}}";
|
|
195
|
-
readonly
|
|
196
|
-
readonly
|
|
195
|
+
readonly done: "Terminé";
|
|
196
|
+
readonly inProgress: "Étape actuelle";
|
|
197
197
|
readonly upcoming: "Non commencé";
|
|
198
198
|
readonly error: "Erreur";
|
|
199
199
|
};
|
|
@@ -258,8 +258,8 @@ export declare const TRANSLATIONS: {
|
|
|
258
258
|
};
|
|
259
259
|
readonly stepNav: {
|
|
260
260
|
readonly step: "Schritt {{number}}";
|
|
261
|
-
readonly
|
|
262
|
-
readonly
|
|
261
|
+
readonly done: "Abgeschlossen";
|
|
262
|
+
readonly inProgress: "Aktueller Schritt";
|
|
263
263
|
readonly upcoming: "Noch nicht begonnen";
|
|
264
264
|
readonly error: "Fehler";
|
|
265
265
|
};
|
|
@@ -324,8 +324,8 @@ export declare const TRANSLATIONS: {
|
|
|
324
324
|
};
|
|
325
325
|
readonly stepNav: {
|
|
326
326
|
readonly step: "Paso {{number}}";
|
|
327
|
-
readonly
|
|
328
|
-
readonly
|
|
327
|
+
readonly done: "Completado";
|
|
328
|
+
readonly inProgress: "Paso actual";
|
|
329
329
|
readonly upcoming: "No iniciado";
|
|
330
330
|
readonly error: "Error";
|
|
331
331
|
};
|
|
@@ -390,8 +390,8 @@ export declare const TRANSLATIONS: {
|
|
|
390
390
|
};
|
|
391
391
|
readonly stepNav: {
|
|
392
392
|
readonly step: "第{{number}}步";
|
|
393
|
-
readonly
|
|
394
|
-
readonly
|
|
393
|
+
readonly done: "已完成";
|
|
394
|
+
readonly inProgress: "当前步骤";
|
|
395
395
|
readonly upcoming: "未开始";
|
|
396
396
|
readonly error: "错误";
|
|
397
397
|
};
|
|
@@ -58,8 +58,8 @@ export declare const de: {
|
|
|
58
58
|
};
|
|
59
59
|
readonly stepNav: {
|
|
60
60
|
readonly step: "Schritt {{number}}";
|
|
61
|
-
readonly
|
|
62
|
-
readonly
|
|
61
|
+
readonly done: "Abgeschlossen";
|
|
62
|
+
readonly inProgress: "Aktueller Schritt";
|
|
63
63
|
readonly upcoming: "Noch nicht begonnen";
|
|
64
64
|
readonly error: "Fehler";
|
|
65
65
|
};
|
package/dist/i18n/locales/de.js
CHANGED
|
@@ -58,8 +58,8 @@ export const de = {
|
|
|
58
58
|
},
|
|
59
59
|
stepNav: {
|
|
60
60
|
step: 'Schritt {{number}}',
|
|
61
|
-
|
|
62
|
-
|
|
61
|
+
done: 'Abgeschlossen',
|
|
62
|
+
inProgress: 'Aktueller Schritt',
|
|
63
63
|
upcoming: 'Noch nicht begonnen',
|
|
64
64
|
error: 'Fehler'
|
|
65
65
|
}
|
|
@@ -58,8 +58,8 @@ export declare const en: {
|
|
|
58
58
|
};
|
|
59
59
|
readonly stepNav: {
|
|
60
60
|
readonly step: "Step {{number}}";
|
|
61
|
-
readonly
|
|
62
|
-
readonly
|
|
61
|
+
readonly done: "Completed";
|
|
62
|
+
readonly inProgress: "Current step";
|
|
63
63
|
readonly upcoming: "Not started";
|
|
64
64
|
readonly error: "Error";
|
|
65
65
|
};
|
package/dist/i18n/locales/en.js
CHANGED
|
@@ -58,8 +58,8 @@ export declare const es: {
|
|
|
58
58
|
};
|
|
59
59
|
readonly stepNav: {
|
|
60
60
|
readonly step: "Paso {{number}}";
|
|
61
|
-
readonly
|
|
62
|
-
readonly
|
|
61
|
+
readonly done: "Completado";
|
|
62
|
+
readonly inProgress: "Paso actual";
|
|
63
63
|
readonly upcoming: "No iniciado";
|
|
64
64
|
readonly error: "Error";
|
|
65
65
|
};
|
package/dist/i18n/locales/es.js
CHANGED
|
@@ -58,8 +58,8 @@ export declare const fr: {
|
|
|
58
58
|
};
|
|
59
59
|
readonly stepNav: {
|
|
60
60
|
readonly step: "Étape {{number}}";
|
|
61
|
-
readonly
|
|
62
|
-
readonly
|
|
61
|
+
readonly done: "Terminé";
|
|
62
|
+
readonly inProgress: "Étape actuelle";
|
|
63
63
|
readonly upcoming: "Non commencé";
|
|
64
64
|
readonly error: "Erreur";
|
|
65
65
|
};
|
package/dist/i18n/locales/fr.js
CHANGED
|
@@ -58,8 +58,8 @@ export declare const ja: {
|
|
|
58
58
|
};
|
|
59
59
|
readonly stepNav: {
|
|
60
60
|
readonly step: "ステップ{{number}}";
|
|
61
|
-
readonly
|
|
62
|
-
readonly
|
|
61
|
+
readonly done: "完了";
|
|
62
|
+
readonly inProgress: "現在のステップ";
|
|
63
63
|
readonly upcoming: "未到達";
|
|
64
64
|
readonly error: "エラー";
|
|
65
65
|
};
|
package/dist/i18n/locales/ja.js
CHANGED
|
@@ -58,8 +58,8 @@ export declare const zhCn: {
|
|
|
58
58
|
};
|
|
59
59
|
readonly stepNav: {
|
|
60
60
|
readonly step: "第{{number}}步";
|
|
61
|
-
readonly
|
|
62
|
-
readonly
|
|
61
|
+
readonly done: "已完成";
|
|
62
|
+
readonly inProgress: "当前步骤";
|
|
63
63
|
readonly upcoming: "未开始";
|
|
64
64
|
readonly error: "错误";
|
|
65
65
|
};
|