@omnia/fx 8.0.173-dev → 8.0.175-dev

Sign up to get free protection for your applications and to get access to all the features.
Files changed (32) hide show
  1. package/internal-do-not-import-from-here/core/services/ServiceLocator.d.ts +1 -0
  2. package/internal-do-not-import-from-here/services/FileStorageService.d.ts +5 -1
  3. package/internal-do-not-import-from-here/ux/aurora/components/colorpickerV2/ColorPicker.d.ts +45 -24
  4. package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +341 -0
  5. package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +341 -0
  6. package/internal-do-not-import-from-here/ux/directives/Directives.d.ts +5 -1
  7. package/internal-do-not-import-from-here/ux/directives/motion/Motion.d.ts +1 -0
  8. package/internal-do-not-import-from-here/ux/models/MotionDirective.d.ts +6 -0
  9. package/internal-do-not-import-from-here/ux/models/index.d.ts +1 -0
  10. package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +9 -9
  11. package/internal-do-not-import-from-here/ux/oxide/icon/Icon.d.ts +9 -9
  12. package/internal-do-not-import-from-here/ux/oxide/inputfield/InputField.d.ts +13 -492
  13. package/internal-do-not-import-from-here/ux/oxide/slidepanel/SlidePanel.d.ts +2 -2
  14. package/internal-do-not-import-from-here/ux/use/UseInterSectionObserver.d.ts +0 -1
  15. package/internal-do-not-import-from-here/ux/velcron/blocks/velcron/useVelcronStateManager.d.ts +4 -1
  16. package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/VelcronContentEditor.d.ts +50 -0
  17. package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/DefinitionToolbar.d.ts +8 -3
  18. package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/stores/ContentEditorStore.d.ts +10 -0
  19. package/internal-do-not-import-from-here/ux/velcron/core/models/Effects.d.ts +324 -0
  20. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +4 -1
  21. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronState.d.ts +15 -23
  22. package/internal-do-not-import-from-here/ux/velcron/core/models/index.d.ts +1 -0
  23. package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/VelcronEditorBuilder.d.ts +3 -1
  24. package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/old/state/VelcronColorSchemaBuilder.d.ts +2 -2
  25. package/internal-do-not-import-from-here/ux/velcron/renderer/editors/BlueprintEditor.d.ts +1 -22
  26. package/internal-do-not-import-from-here/ux/velcron/renderer/editors/MarkdownEditor.d.ts +22 -1
  27. package/internal-do-not-import-from-here/ux/velcron/renderer/editors/SliderEditor.d.ts +22 -1
  28. package/internal-do-not-import-from-here/ux/velcron/renderer/editors/SwitchEditor.d.ts +22 -0
  29. package/internal-do-not-import-from-here/ux/velcron/renderer/editors/TextEditor.d.ts +22 -1
  30. package/internal-do-not-import-from-here/ux/velcron/renderer/editors/TypographyEditor.d.ts +22 -1
  31. package/internal-do-not-import-from-here/ux/velcron/stores/useVelcronStateManager.d.ts +4 -1
  32. package/package.json +2 -2
@@ -2,9 +2,13 @@ import { DirectiveDefinition } from "@omnia/fx-models";
2
2
  import { DirectiveBinding, VNode } from "vue";
3
3
  import { SubscriptionHandler } from "@omnia/fx";
4
4
  type SetupDirectiveContext<T> = {
5
+ onCreated(fn: (el: any, binding: DirectiveBinding<T>, vnode: VNode) => void): void;
6
+ onbeforeMount(fn: (el: any, binding: DirectiveBinding<T>, vnode: VNode) => void): void;
5
7
  onMounted(fn: (el: any, binding: DirectiveBinding<T>, vnode: VNode) => void): void;
8
+ onBeforeUpdate(fn: (el: any, binding: DirectiveBinding<T>, vnode: VNode, prevVnode: VNode) => void): void;
9
+ onUpdated(fn: (el: any, binding: DirectiveBinding<T>, vnode: VNode, prevVnode: VNode) => void): void;
10
+ onBeforeUnmount(fn: (el: any, binding: DirectiveBinding<T>, vnode: VNode, prevVnode: VNode) => void): void;
6
11
  onUnmounted(fn: (el: any, binding: DirectiveBinding<T>, vnode: VNode) => void): void;
7
- onUpdated(fn: (el: any, binding: DirectiveBinding<T>, vnode: VNode, prevVnode: VNode) => void): any;
8
12
  subscriptions: SubscriptionHandler;
9
13
  };
10
14
  export declare function defineVueDirective<T>(setup: (ctx: SetupDirectiveContext<T>) => void): () => ReturnType<DirectiveDefinition<T>>;
@@ -0,0 +1,6 @@
1
+ import { MotionDirective } from "@vueuse/motion";
2
+ declare module "@omnia/fx-models/ux/Directive" {
3
+ interface Directives {
4
+ motion: typeof MotionDirective;
5
+ }
6
+ }
@@ -53,6 +53,7 @@ export * from "./DataTable";
53
53
  export * from "./Directives";
54
54
  export * from "./MultiTextInputItem";
55
55
  export * from "./TypographyEditorModel";
56
+ export * from "./MotionDirective";
56
57
  export { ValidationOnDefinitions, type IValidationRuleBuilder, type IValidator, type ValidationRule, type ValidationResult } from "./Validation";
57
58
  export type { ValidationOnTypes } from "./Validation";
58
59
  export * from "./SpecialUserConfiguration";
@@ -16,9 +16,9 @@ declare const _default: {
16
16
  type: import("vue").PropType<ButtonBlueprint>;
17
17
  };
18
18
  animation: {
19
- type: import("vue").PropType<"flip" | "spin" | "beat" | "bounce">;
19
+ type: import("vue").PropType<"flip" | "bounce" | "spin" | "beat">;
20
20
  } & {
21
- type: import("vue").PropType<"flip" | "spin" | "beat" | "bounce">;
21
+ type: import("vue").PropType<"flip" | "bounce" | "spin" | "beat">;
22
22
  };
23
23
  stacked: {
24
24
  type: import("vue").PropType<boolean>;
@@ -147,9 +147,9 @@ declare const _default: {
147
147
  type: import("vue").PropType<ButtonBlueprint>;
148
148
  };
149
149
  animation: {
150
- type: import("vue").PropType<"flip" | "spin" | "beat" | "bounce">;
150
+ type: import("vue").PropType<"flip" | "bounce" | "spin" | "beat">;
151
151
  } & {
152
- type: import("vue").PropType<"flip" | "spin" | "beat" | "bounce">;
152
+ type: import("vue").PropType<"flip" | "bounce" | "spin" | "beat">;
153
153
  };
154
154
  stacked: {
155
155
  type: import("vue").PropType<boolean>;
@@ -287,9 +287,9 @@ declare const _default: {
287
287
  type: import("vue").PropType<ButtonBlueprint>;
288
288
  };
289
289
  animation: {
290
- type: import("vue").PropType<"flip" | "spin" | "beat" | "bounce">;
290
+ type: import("vue").PropType<"flip" | "bounce" | "spin" | "beat">;
291
291
  } & {
292
- type: import("vue").PropType<"flip" | "spin" | "beat" | "bounce">;
292
+ type: import("vue").PropType<"flip" | "bounce" | "spin" | "beat">;
293
293
  };
294
294
  stacked: {
295
295
  type: import("vue").PropType<boolean>;
@@ -424,9 +424,9 @@ declare const _default: {
424
424
  type: import("vue").PropType<ButtonBlueprint>;
425
425
  };
426
426
  animation: {
427
- type: import("vue").PropType<"flip" | "spin" | "beat" | "bounce">;
427
+ type: import("vue").PropType<"flip" | "bounce" | "spin" | "beat">;
428
428
  } & {
429
- type: import("vue").PropType<"flip" | "spin" | "beat" | "bounce">;
429
+ type: import("vue").PropType<"flip" | "bounce" | "spin" | "beat">;
430
430
  };
431
431
  stacked: {
432
432
  type: import("vue").PropType<boolean>;
@@ -553,7 +553,7 @@ declare const _default: {
553
553
  target?: "_blank" | "_self" | "_parent" | "_top" | "framename";
554
554
  href?: string;
555
555
  size?: "small" | "default" | "large" | "x-large" | "x-small";
556
- animation?: "flip" | "spin" | "beat" | "bounce";
556
+ animation?: "flip" | "bounce" | "spin" | "beat";
557
557
  tooltip?: ButtonTooltipOptions;
558
558
  active?: boolean;
559
559
  disabled?: boolean;
@@ -20,9 +20,9 @@ declare const _default: {
20
20
  type: import("vue").PropType<number>;
21
21
  };
22
22
  animation: {
23
- type: import("vue").PropType<"flip" | "spin" | "beat" | "bounce">;
23
+ type: import("vue").PropType<"flip" | "bounce" | "spin" | "beat">;
24
24
  } & {
25
- type: import("vue").PropType<"flip" | "spin" | "beat" | "bounce">;
25
+ type: import("vue").PropType<"flip" | "bounce" | "spin" | "beat">;
26
26
  };
27
27
  size: {
28
28
  type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
@@ -86,9 +86,9 @@ declare const _default: {
86
86
  type: import("vue").PropType<number>;
87
87
  };
88
88
  animation: {
89
- type: import("vue").PropType<"flip" | "spin" | "beat" | "bounce">;
89
+ type: import("vue").PropType<"flip" | "bounce" | "spin" | "beat">;
90
90
  } & {
91
- type: import("vue").PropType<"flip" | "spin" | "beat" | "bounce">;
91
+ type: import("vue").PropType<"flip" | "bounce" | "spin" | "beat">;
92
92
  };
93
93
  size: {
94
94
  type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
@@ -161,9 +161,9 @@ declare const _default: {
161
161
  type: import("vue").PropType<number>;
162
162
  };
163
163
  animation: {
164
- type: import("vue").PropType<"flip" | "spin" | "beat" | "bounce">;
164
+ type: import("vue").PropType<"flip" | "bounce" | "spin" | "beat">;
165
165
  } & {
166
- type: import("vue").PropType<"flip" | "spin" | "beat" | "bounce">;
166
+ type: import("vue").PropType<"flip" | "bounce" | "spin" | "beat">;
167
167
  };
168
168
  size: {
169
169
  type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
@@ -233,9 +233,9 @@ declare const _default: {
233
233
  type: import("vue").PropType<number>;
234
234
  };
235
235
  animation: {
236
- type: import("vue").PropType<"flip" | "spin" | "beat" | "bounce">;
236
+ type: import("vue").PropType<"flip" | "bounce" | "spin" | "beat">;
237
237
  } & {
238
- type: import("vue").PropType<"flip" | "spin" | "beat" | "bounce">;
238
+ type: import("vue").PropType<"flip" | "bounce" | "spin" | "beat">;
239
239
  };
240
240
  size: {
241
241
  type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
@@ -288,7 +288,7 @@ declare const _default: {
288
288
  container?: boolean;
289
289
  class?: String | String[];
290
290
  size?: "small" | "default" | "large" | "x-large" | "x-small";
291
- animation?: "flip" | "spin" | "beat" | "bounce";
291
+ animation?: "flip" | "bounce" | "spin" | "beat";
292
292
  disabled?: boolean;
293
293
  colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
294
294
  colorType?: "base" | "onBase" | "container" | "onContainer";