wacomm 1.66.1 → 1.67.4
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/TextUpdater.d.ts +2 -1
- package/dist/TextareaAutosize.d.ts +2 -1
- package/dist/buttons/CacheButton.d.ts +2 -1
- package/dist/datetime/DatePicker.d.ts +2 -1
- package/dist/datetime/DateTimePicker.d.ts +2 -1
- package/dist/datetime/MonthPicker.d.ts +2 -1
- package/dist/datetime/TimePicker.d.ts +2 -1
- package/dist/{index-CwSr_V_k.js → index-CNE5PAc3.js} +4 -4
- package/dist/{index-CCHbXIeA.mjs → index-DimNXsPQ.mjs} +37 -28
- package/dist/{mapbox-gl-B7ifpazK.mjs → mapbox-gl-DYDdSuJS.mjs} +1 -1
- package/dist/{mapbox-gl-JqcuObgZ.js → mapbox-gl-c5js2Pds.js} +1 -1
- package/dist/{maplibre-gl-DxaLb1R1.js → maplibre-gl-CqM-dl7l.js} +1 -1
- package/dist/{maplibre-gl-sCZD_QCi.mjs → maplibre-gl-rTf1rgFE.mjs} +1 -1
- package/dist/wacomm.cjs.js +1 -1
- package/dist/wacomm.es.js +1 -1
- package/package.json +1 -1
package/dist/TextUpdater.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export interface TextUpdaterProps {
|
|
|
9
9
|
placeholder?: string;
|
|
10
10
|
classNameEditing?: string;
|
|
11
11
|
classNameNonEditing?: string;
|
|
12
|
+
disabled?: boolean;
|
|
12
13
|
}
|
|
13
|
-
declare function TextUpdater({ text: textInit, onSave, isLoading, isEditing, minRows, maxRows, setIsEditing, placeholder, classNameEditing, classNameNonEditing }: TextUpdaterProps): import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
declare function TextUpdater({ text: textInit, onSave, isLoading, isEditing, minRows, maxRows, setIsEditing, placeholder, classNameEditing, classNameNonEditing, disabled }: TextUpdaterProps): import("react/jsx-runtime").JSX.Element;
|
|
14
15
|
export default TextUpdater;
|
|
@@ -5,6 +5,7 @@ interface TextareaAutosizeProps {
|
|
|
5
5
|
maxRows?: number;
|
|
6
6
|
text?: string;
|
|
7
7
|
onChange: (v: string) => void;
|
|
8
|
+
disabled?: boolean;
|
|
8
9
|
}
|
|
9
|
-
declare const TextareaAutosize: ({ className, placeholder, minRows, maxRows, text, onChange }: TextareaAutosizeProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
declare const TextareaAutosize: ({ className, placeholder, minRows, maxRows, text, onChange, disabled }: TextareaAutosizeProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
11
|
export default TextareaAutosize;
|
|
@@ -4,6 +4,7 @@ export interface CacheButtonProps {
|
|
|
4
4
|
onClick: (cancelLoading: ZeroFuncType) => void;
|
|
5
5
|
label: string;
|
|
6
6
|
isHighlighted: boolean;
|
|
7
|
+
disabled?: boolean;
|
|
7
8
|
}
|
|
8
|
-
declare function CacheButton({ id, onClick, label, isHighlighted }: CacheButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
declare function CacheButton({ id, onClick, label, isHighlighted, disabled }: CacheButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
9
10
|
export default CacheButton;
|
|
@@ -2,6 +2,7 @@ import { SetDateTime } from './util';
|
|
|
2
2
|
interface DatePickerProps {
|
|
3
3
|
value: string;
|
|
4
4
|
setValue: SetDateTime;
|
|
5
|
+
disabled?: boolean;
|
|
5
6
|
}
|
|
6
|
-
declare function DatePicker({ value, setValue }: DatePickerProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
declare function DatePicker({ value, setValue, disabled }: DatePickerProps): import("react/jsx-runtime").JSX.Element;
|
|
7
8
|
export default DatePicker;
|
|
@@ -2,6 +2,7 @@ import { DateTime, SetDateTime } from './util';
|
|
|
2
2
|
interface DateTimePickerProps {
|
|
3
3
|
value: DateTime;
|
|
4
4
|
setValue: SetDateTime;
|
|
5
|
+
disabled?: boolean;
|
|
5
6
|
}
|
|
6
|
-
declare function DateTimePicker({ value, setValue }: DateTimePickerProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
declare function DateTimePicker({ value, setValue, disabled }: DateTimePickerProps): import("react/jsx-runtime").JSX.Element;
|
|
7
8
|
export default DateTimePicker;
|
|
@@ -2,6 +2,7 @@ import { DateTime, SetDateTime } from './util';
|
|
|
2
2
|
interface MonthPickerProps {
|
|
3
3
|
value: DateTime;
|
|
4
4
|
setValue: SetDateTime;
|
|
5
|
+
disabled?: boolean;
|
|
5
6
|
}
|
|
6
|
-
declare function MonthPicker({ value, setValue }: MonthPickerProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
declare function MonthPicker({ value, setValue, disabled }: MonthPickerProps): import("react/jsx-runtime").JSX.Element;
|
|
7
8
|
export default MonthPicker;
|
|
@@ -2,6 +2,7 @@ import { SetDateTime, DateTime } from './util';
|
|
|
2
2
|
interface TimePickerProps {
|
|
3
3
|
value: DateTime;
|
|
4
4
|
setValue: SetDateTime;
|
|
5
|
+
disabled?: boolean;
|
|
5
6
|
}
|
|
6
|
-
declare function TimePicker({ value, setValue }: TimePickerProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
declare function TimePicker({ value, setValue, disabled }: TimePickerProps): import("react/jsx-runtime").JSX.Element;
|
|
7
8
|
export default TimePicker;
|