skedyul 0.2.8 → 0.2.10
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/.build-stamp +1 -1
- package/dist/config.d.ts +11 -1
- package/package.json +1 -1
package/dist/.build-stamp
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
1769297693044
|
package/dist/config.d.ts
CHANGED
|
@@ -346,8 +346,18 @@ export interface EmptyFormComponentDefinition extends FormV2StyleProps {
|
|
|
346
346
|
icon?: string;
|
|
347
347
|
};
|
|
348
348
|
}
|
|
349
|
+
/** Alert component definition for display-only informational content */
|
|
350
|
+
export interface AlertComponentDefinition extends FormV2StyleProps {
|
|
351
|
+
component: 'Alert';
|
|
352
|
+
props: {
|
|
353
|
+
title: string;
|
|
354
|
+
description: string;
|
|
355
|
+
icon?: string;
|
|
356
|
+
variant?: 'default' | 'destructive';
|
|
357
|
+
};
|
|
358
|
+
}
|
|
349
359
|
/** Union of all FormV2 component definitions */
|
|
350
|
-
export type FormV2ComponentDefinition = InputComponentDefinition | TextareaComponentDefinition | SelectComponentDefinition | ComboboxComponentDefinition | CheckboxComponentDefinition | DatePickerComponentDefinition | TimePickerComponentDefinition | FieldSettingComponentDefinition | ImageSettingComponentDefinition | FileSettingComponentDefinition | ListComponentDefinition | EmptyFormComponentDefinition;
|
|
360
|
+
export type FormV2ComponentDefinition = InputComponentDefinition | TextareaComponentDefinition | SelectComponentDefinition | ComboboxComponentDefinition | CheckboxComponentDefinition | DatePickerComponentDefinition | TimePickerComponentDefinition | FieldSettingComponentDefinition | ImageSettingComponentDefinition | FileSettingComponentDefinition | ListComponentDefinition | EmptyFormComponentDefinition | AlertComponentDefinition;
|
|
351
361
|
/** Layout column definition */
|
|
352
362
|
export interface FormLayoutColumnDefinition {
|
|
353
363
|
field: string;
|