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 CHANGED
@@ -1 +1 @@
1
- 1769296939442
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skedyul",
3
- "version": "0.2.8",
3
+ "version": "0.2.10",
4
4
  "description": "The Skedyul SDK for Node.js",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",