@omnia/fx 8.0.343-dev → 8.0.345-dev

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.
Files changed (39) hide show
  1. package/internal-do-not-import-from-here/ux/DefineVueTypings.d.ts +1 -1
  2. package/internal-do-not-import-from-here/ux/admin/system/submenu/seo/loc/localize.d.ts +1 -0
  3. package/internal-do-not-import-from-here/ux/admin/system/submenu/seo/services/SeoService.d.ts +1 -1
  4. package/internal-do-not-import-from-here/ux/admin/system/submenu/seo/store/SeoManagerStore.d.ts +2 -2
  5. package/internal-do-not-import-from-here/ux/aurora/components/buttonstyle/ButtonStylePicker.d.ts +4 -0
  6. package/internal-do-not-import-from-here/ux/aurora/components/colorschemapicker/ColorSchemaPicker.d.ts +10 -0
  7. package/internal-do-not-import-from-here/ux/aurora/components/colorschemapicker/ColorSchemaViewer.d.ts +1 -1
  8. package/internal-do-not-import-from-here/ux/aurora/components/demo/DemoBlock.d.ts +0 -0
  9. package/internal-do-not-import-from-here/ux/aurora/components/textstylepicker/TextStylePicker.css.d.ts +2 -1
  10. package/internal-do-not-import-from-here/ux/aurora/components/themepreview/ComponentPreview_bak.d.ts +15 -0
  11. package/internal-do-not-import-from-here/ux/aurora/components/typography/TypographyPicker.css.d.ts +0 -1
  12. package/internal-do-not-import-from-here/ux/aurora/components/typography/TypographyPicker.d.ts +2 -0
  13. package/internal-do-not-import-from-here/ux/docs/Docs.d.ts +5 -0
  14. package/internal-do-not-import-from-here/ux/docs/designpatterns/PatternDesicriptions.d.ts +3 -0
  15. package/internal-do-not-import-from-here/ux/docs/designpatterns/SelectionPatterns.d.ts +2 -0
  16. package/internal-do-not-import-from-here/ux/docs/designpatterns/index.d.ts +1 -0
  17. package/internal-do-not-import-from-here/ux/identities/IdentityRenderer.d.ts +5 -0
  18. package/internal-do-not-import-from-here/ux/models/SeoInfo.d.ts +3 -0
  19. package/internal-do-not-import-from-here/ux/oxide/form/Form.d.ts +1 -1
  20. package/internal-do-not-import-from-here/ux/oxide/list/ListItem.d.ts +2 -2
  21. package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/NavigationDrawer.d.ts +0 -2
  22. package/internal-do-not-import-from-here/ux/oxide/picker/Picker.d.ts +2 -1
  23. package/internal-do-not-import-from-here/ux/oxide/picker/PickerSelection.d.ts +1 -1
  24. package/internal-do-not-import-from-here/ux/oxide/selectionpicker/InputSelect.d.ts +6 -0
  25. package/internal-do-not-import-from-here/ux/oxide/selectionpicker/InputSelect.stylex.d.ts +1 -0
  26. package/internal-do-not-import-from-here/ux/oxide/selectionpicker/docs/ExampleComponents.d.ts +1 -0
  27. package/internal-do-not-import-from-here/ux/oxide/selectionpicker/docs/SampleComponent.d.ts +2 -0
  28. package/internal-do-not-import-from-here/ux/oxide/selectionpicker/docs/index.d.ts +1 -0
  29. package/internal-do-not-import-from-here/ux/oxide/snackbar/Snackbar.d.ts +1 -1
  30. package/internal-do-not-import-from-here/ux/oxide/stepper/Stepper.d.ts +0 -2
  31. package/internal-do-not-import-from-here/ux/oxide/treeview/OTreeViewV3.d.ts +0 -2
  32. package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.d.ts +0 -2
  33. package/internal-do-not-import-from-here/ux/use/UseDraggable.d.ts +0 -2
  34. package/internal-do-not-import-from-here/ux/user/UserTokenProvider.d.ts +4 -0
  35. package/internal-do-not-import-from-here/ux/user/loc/localize.d.ts +3 -0
  36. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +2 -1
  37. package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronData.d.ts +1 -0
  38. package/internal-do-not-import-from-here/wctypings.d.ts +18 -0
  39. package/package.json +2 -2
@@ -37,7 +37,7 @@ export type DefineVModel<TName extends string, TType, Required extends boolean =
37
37
  export type ItemValueType<T, TReturn = any> = keyof T | ((item: T) => TReturn);
38
38
  export type ItemType<T> = T extends readonly (infer U)[] ? U : never;
39
39
  export type SelectItemKey<T = Record<string, any>> = boolean | null | undefined | string | readonly (string | number)[] | ((item: T, fallback?: any) => any);
40
- export type DefinePropTheming = DefineProp<"colorSchemaType", ColorSchemaTypes | ColorSchemaType> & DefineProp<"container", boolean> & DefineProp<"colors", ColorSchemaStoreType>;
40
+ export type DefinePropTheming = DefineProp<"colorSchemaType", ColorSchemaTypes | ColorSchemaType> & DefineProp<"colors", ColorSchemaStoreType>;
41
41
  type BuildVModelName<TName extends string, TPropType, Required extends boolean = false> = Required extends false ? {
42
42
  [key in VModelEmitsInJsxElement<TName>]: {
43
43
  type: PropType<(value: TPropType) => any | void>;
@@ -8,6 +8,7 @@ export declare namespace OmniaSEOManagerLocalize {
8
8
  SnapshotDuration: string;
9
9
  LastCrawlAt: string;
10
10
  Path: string;
11
+ Size: string;
11
12
  };
12
13
  ReCrawl: string;
13
14
  TriggerCrawlSuccess: string;
@@ -4,5 +4,5 @@ import { SeoBasicInfo, SeoDetail } from "@omnia/fx/ux";
4
4
  export declare function useSeoService(): {
5
5
  fetchAll: (itemQuery: ItemQuery) => Promise<ItemQueryResult<SeoBasicInfo>>;
6
6
  getNewSnapShot: (path: string) => Promise<void>;
7
- getDetail: (path: string) => Promise<ApiResponse<SeoDetail>>;
7
+ getDetail: (path: string) => Promise<ApiResponse<SeoDetail[]>>;
8
8
  };
@@ -8,7 +8,7 @@ export declare const useSEOManager: () => {
8
8
  get: {
9
9
  readonly snapshotInfos: SeoBasicInfo[];
10
10
  readonly snapshotInfo: SeoBasicInfo;
11
- readonly snapshotDetail: SeoDetail;
11
+ readonly snapshotDetail: SeoDetail[];
12
12
  readonly dateFormat: string;
13
13
  readonly regionalSettings: TenantRegionalSettings;
14
14
  readonly itemLimit: number;
@@ -25,7 +25,7 @@ export declare const useSEOManager: () => {
25
25
  * Trigger omnia to try to get new snapshot of this page
26
26
  */
27
27
  forceGetNewSnapshot(snapshotInfo: SeoBasicInfo): Promise<void>;
28
- getSeoDetailAsync(path: string): Promise<SeoDetail>;
28
+ getSeoDetailAsync(path: string): Promise<SeoDetail[]>;
29
29
  ensureLoadSnapshotDetail(): Promise<void>;
30
30
  }>;
31
31
  } & {
@@ -7,6 +7,10 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
7
7
  modelValue?: ButtonBlueprint | ButtonBlueprintVariant;
8
8
  } & {
9
9
  label?: string;
10
+ } & {
11
+ placeholder?: string;
12
+ } & {
13
+ toned?: boolean;
10
14
  } & {
11
15
  customStyling?: boolean;
12
16
  } & {
@@ -15,6 +15,9 @@ declare const _default: {
15
15
  title: {
16
16
  type: import("vue").PropType<string>;
17
17
  };
18
+ placeholder: {
19
+ type: import("vue").PropType<string>;
20
+ };
18
21
  label: {
19
22
  type: import("vue").PropType<string>;
20
23
  };
@@ -148,6 +151,9 @@ declare const _default: {
148
151
  title: {
149
152
  type: import("vue").PropType<string>;
150
153
  };
154
+ placeholder: {
155
+ type: import("vue").PropType<string>;
156
+ };
151
157
  label: {
152
158
  type: import("vue").PropType<string>;
153
159
  };
@@ -274,6 +280,9 @@ declare const _default: {
274
280
  title: {
275
281
  type: import("vue").PropType<string>;
276
282
  };
283
+ placeholder: {
284
+ type: import("vue").PropType<string>;
285
+ };
277
286
  label: {
278
287
  type: import("vue").PropType<string>;
279
288
  };
@@ -468,6 +477,7 @@ declare const _default: {
468
477
  colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
469
478
  "v-model"?: "background" | "primary" | "secondary" | "accent1" | ColorSchema | "accent2" | "accent3" | "accent4" | "accent5" | "accent6" | "accent7" | "accent8" | "accent9" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic" | ColorSchemaTypes;
470
479
  toned?: boolean;
480
+ placeholder?: string;
471
481
  defaultColorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "accent6" | "accent7" | "accent8" | "accent9" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
472
482
  enableDynamicColor?: boolean;
473
483
  customSchema?: boolean;
@@ -1,5 +1,5 @@
1
1
  import { ColorSchema } from "@omnia/fx-models";
2
- type Variant = "default" | "toolbar" | "palette" | "card-preview" | "button";
2
+ type Variant = "default" | "toolbar" | "palette" | "card-preview" | "button" | "swatch";
3
3
  declare const _default: {
4
4
  new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
5
5
  class: {
@@ -1,3 +1,4 @@
1
1
  export declare const TextStylePickerStyles: {
2
- selector: (dark: boolean) => string;
2
+ pickerTop: string;
3
+ pickerBottom: string;
3
4
  };
@@ -0,0 +1,15 @@
1
+ import { ThemeContextType, ResolvedThemeDefinition } from "@omnia/fx-models";
2
+ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
3
+ "emit:update:modelValue": (value: ResolvedThemeDefinition) => void;
4
+ } & {
5
+ "v-model"?: ResolvedThemeDefinition;
6
+ } & {
7
+ modelValue?: ResolvedThemeDefinition;
8
+ } & {
9
+ themeType?: ThemeContextType;
10
+ } & {
11
+ hideColorSchemas?: boolean;
12
+ } & {
13
+ toned?: boolean;
14
+ }>) => any;
15
+ export default _default;
@@ -1,5 +1,4 @@
1
1
  export declare const TypographyPickerStyles: {
2
- selector: (dark: boolean) => string;
3
2
  container: string;
4
3
  colorPreview: (color: string, border?: string) => string;
5
4
  lastElement: string;
@@ -20,6 +20,8 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
20
20
  toned?: boolean;
21
21
  } & {
22
22
  label?: string;
23
+ } & {
24
+ placeholder?: string;
23
25
  } & {
24
26
  sampleText?: string;
25
27
  } & DefineSlot<"activator", () => VNode>>) => any;
@@ -38,6 +38,7 @@ export declare const builtInDocumeantionAreas: {
38
38
  velcron: DocumentationArea;
39
39
  bestPractice: DocumentationArea;
40
40
  theming: DocumentationArea;
41
+ patterns: DocumentationArea;
41
42
  };
42
43
  export declare const builtInDocumentationCategories: {
43
44
  containment: DocumentationCategory;
@@ -70,6 +71,10 @@ export declare const bestPracticesCategories: {
70
71
  export declare const themingCategories: {
71
72
  preview: DocumentationCategory;
72
73
  };
74
+ export declare const designPatternCategories: {
75
+ blades: DocumentationCategory;
76
+ selection: DocumentationCategory;
77
+ };
73
78
  export interface ComponentSpecRegistration {
74
79
  spec: DocumentationSpec;
75
80
  category: DocumentationCategory;
@@ -0,0 +1,3 @@
1
+ export declare const patterns: {
2
+ selectionWithBlade: import("@omnia/fx/ux").DocumentationSpec;
3
+ };
@@ -0,0 +1,2 @@
1
+ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<Record<string, any>>) => any;
2
+ export default _default;
@@ -0,0 +1 @@
1
+ export declare const spec: import("@omnia/fx/ux").DocumentationSpec;
@@ -9,6 +9,7 @@ export declare const identityRendererStyles: {
9
9
  };
10
10
  };
11
11
  smallPresenceStatus: {
12
+ width: string;
12
13
  $nest: {
13
14
  ".v-badge__badge": {
14
15
  padding: string;
@@ -72,6 +73,7 @@ declare const _default: {
72
73
  };
73
74
  };
74
75
  smallPresenceStatus: {
76
+ width: string;
75
77
  $nest: {
76
78
  ".v-badge__badge": {
77
79
  padding: string;
@@ -161,6 +163,7 @@ declare const _default: {
161
163
  };
162
164
  };
163
165
  smallPresenceStatus: {
166
+ width: string;
164
167
  $nest: {
165
168
  ".v-badge__badge": {
166
169
  padding: string;
@@ -247,6 +250,7 @@ declare const _default: {
247
250
  };
248
251
  };
249
252
  smallPresenceStatus: {
253
+ width: string;
250
254
  $nest: {
251
255
  ".v-badge__badge": {
252
256
  padding: string;
@@ -294,6 +298,7 @@ declare const _default: {
294
298
  };
295
299
  };
296
300
  smallPresenceStatus: {
301
+ width: string;
297
302
  $nest: {
298
303
  ".v-badge__badge": {
299
304
  padding: string;
@@ -1,4 +1,5 @@
1
1
  export interface SeoBasicInfo {
2
+ clusteredId: number;
2
3
  path: string;
3
4
  crawlCount: number;
4
5
  version: number;
@@ -12,7 +13,9 @@ export interface SeoSnapShotInfo {
12
13
  url: string;
13
14
  }
14
15
  export interface SeoDetail {
16
+ clusteredId: number;
15
17
  path: string;
18
+ size: number;
16
19
  metadata: SeoMetadata;
17
20
  crawlServices: Record<string, number>;
18
21
  thumbnail: string;
@@ -1,4 +1,4 @@
1
1
  import { DefinePropTheming, DefineProp } from "@omnia/fx/ux";
2
- type FormProps = DefinePropTheming & DefineProp<"class", String | String[]> & DefineProp<"label", string, false, null>;
2
+ type FormProps = DefinePropTheming & DefineProp<"class", String | String[]> & DefineProp<"label", string, false, null> & DefineProp<"toned", boolean, false, null>;
3
3
  declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<FormProps>) => any;
4
4
  export default _default;
@@ -7,10 +7,10 @@ type ListItemSlot = {
7
7
  isIndeterminate: boolean;
8
8
  select: (value: boolean) => void;
9
9
  };
10
- export type OListItemProps = DefinePropTheming & DefineProp<"class", String | String[]> & DefineProp<"icon", ButtonIconOptions, false, null, "The icon of the component."> & DefineProp<"title", VNodeChild, false, false, "The title of the component."> & DefineProp<"subtitle", VNodeChild, false, false, "Specify a subtitle text for the component."> & DefineProp<"active", boolean, false, false, "Controls the active state of the item. This is typically used to highlight the component."> & DefineProp<"disabled", boolean, false, null, "Removed the ability to interact with the component."> & DefineProp<"variant", OListItemVariants, false, null, "Applies a distinct style to the component."> & DefineSlot<"append", (item: ListItemSlot) => VNodeChild, "Adds an item inside the input and after input content."> & DefineSlot<"prepend", (item: ListItemSlot) => VNodeChild, "Adds an item outside the input and before input content."> & DefineSlot<"default", (item: ListItemSlot) => VNodeChild, "The default Vue slot."> & DefineSlot<"title", (value: {
10
+ export type OListItemProps = DefinePropTheming & DefineProp<"class", String | String[]> & DefineProp<"icon", ButtonIconOptions, false, null, "The icon of the component."> & DefineProp<"title", VNodeChild, false, false, "The title of the component."> & DefineProp<"subtitle", VNodeChild, false, false, "Specify a subtitle text for the component."> & DefineProp<"active", boolean, false, false, "Controls the active state of the item. This is typically used to highlight the component."> & DefineProp<"selected", boolean, null, null, "Controls the active state of the item. This is typically used to highlight the component."> & DefineProp<"disabled", boolean, false, null, "Removed the ability to interact with the component."> & DefineProp<"variant", OListItemVariants, false, null, "Applies a distinct style to the component."> & DefineSlot<"append", (item: ListItemSlot) => VNodeChild, "Adds an item inside the input and after input content."> & DefineSlot<"prepend", (item: ListItemSlot) => VNodeChild, "Adds an item outside the input and before input content."> & DefineSlot<"default", (item: ListItemSlot) => VNodeChild, "The default Vue slot."> & DefineSlot<"title", (value: {
11
11
  title: string | number;
12
12
  }) => VNodeChild, "Slot for the component’s title content."> & DefineSlot<"subtitle", (value: {
13
13
  subtitle: string | number;
14
- }) => VNodeChild, "Slot for the component’s subtitle content."> & DefineEmit<"click:delete", (e: MouseEvent) => VNodeChild, "Emit a delete event."> & DefineEmit<"click:navigate", (e: MouseEvent) => VNodeChild, "Emit a navigate event.">;
14
+ }) => VNodeChild, "Slot for the component’s subtitle content."> & DefineEmit<"click:delete", (e: MouseEvent) => VNodeChild, "Emit a delete event."> & DefineEmit<"click:navigate", (e: MouseEvent) => VNodeChild, "Emit a navigate event."> & DefineEmit<"click:select", (e: MouseEvent) => VNodeChild, "Emit a navigate event.">;
15
15
  declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<OListItemProps>) => any;
16
16
  export default _default;
@@ -1,7 +1,5 @@
1
1
  declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
2
2
  colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "accent6" | "accent7" | "accent8" | "accent9" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic" | import("@omnia/fx-models").ColorSchemaTypes;
3
- } & {
4
- container?: boolean;
5
3
  } & {
6
4
  colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
7
5
  } & {
@@ -1,6 +1,7 @@
1
1
  import { DefineProp, DefinePropTheming, DefineSlot, DefineVModel } from "@omnia/fx/ux";
2
2
  import { InputBlueprint } from "@omnia/fx/models";
3
3
  import { VNodeChild } from "vue";
4
- type PickerProps = DefinePropTheming & DefineVModel<"", any, false, null, false, "The v-model of the component"> & DefineProp<"class", String | String[]> & DefineProp<"label", string, false, null, "Sets the text of the component."> & DefineProp<"placeholder", string, false, null, "Sets the placeholder of the component."> & DefineProp<"blueprint", InputBlueprint, false, null, "Sets a custom blueprint for the text."> & DefineProp<"disabled", boolean, false, null, "Sets the component to disabled"> & DefineProp<"toned", boolean, false, null, "Sets the component to disabled"> & DefineProp<"fullWidthSelection", boolean, false, null, "If the selected component takes over selection"> & DefineProp<"visibleOnContentClick", boolean, false, null, "Sets the component to disabled"> & DefineSlot<"selectionRenderer", () => VNodeChild> & DefineSlot<"activator", () => VNodeChild>;
4
+ type PickerVariant = "dialog" | "picker";
5
+ type PickerProps = DefinePropTheming & DefineVModel<"", any, false, null, false, "The v-model of the component"> & DefineProp<"class", String | String[]> & DefineProp<"variant", PickerVariant> & DefineProp<"label", string, false, null, "Sets the text of the component."> & DefineProp<"placeholder", string, false, null, "Sets the placeholder of the component."> & DefineProp<"blueprint", InputBlueprint, false, null, "Sets a custom blueprint for the text."> & DefineProp<"disabled", boolean, false, null, "Sets the component to disabled"> & DefineProp<"toned", boolean, false, null, "Sets the component to disabled"> & DefineProp<"visibleOnContentClick", boolean, false, null, "Sets the component to disabled"> & DefineSlot<"selectionRenderer", () => VNodeChild> & DefineSlot<"activator", () => VNodeChild>;
5
6
  declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<PickerProps>) => any;
6
7
  export default _default;
@@ -1,5 +1,5 @@
1
1
  import { DefineEmit, DefineProp, DefinePropTheming, DefineVModel } from "@omnia/fx/ux";
2
2
  import { InputBlueprint } from "@omnia/fx/models";
3
- type PickerSelectionProps = DefinePropTheming & DefineVModel<"", any, false, null, false, "The v-model of the component"> & DefineProp<"class", String | String[]> & DefineProp<"label", string, false, null, "Sets the text of the component."> & DefineProp<"blueprint", InputBlueprint, false, null, "Sets a custom blueprint for the text."> & DefineProp<"disabled", boolean, false, null, "Sets the component to disabled"> & DefineProp<"clearable", boolean, false, null, "If a clear icon can be shown"> & DefineProp<"toned", boolean, false, null, "Sets the component to disabled"> & DefineEmit<"click:clear", () => void>;
3
+ type PickerSelectionProps = DefinePropTheming & DefineVModel<"", any, false, null, false, "The v-model of the component"> & DefineProp<"class", String | String[]> & DefineProp<"label", string, false, null, "Sets the text of the component."> & DefineProp<"blueprint", InputBlueprint, false, null, "Sets a custom blueprint for the text."> & DefineProp<"grid", boolean, false, null, "Sets the component to disabled"> & DefineProp<"disabled", boolean, false, null, "Sets the component to disabled"> & DefineProp<"clearable", boolean, false, null, "If a clear icon can be shown"> & DefineProp<"toned", boolean, false, null, "Sets the component to disabled"> & DefineEmit<"click:clear", () => void>;
4
4
  declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<PickerSelectionProps>) => any;
5
5
  export default _default;
@@ -0,0 +1,6 @@
1
+ import { InputSelectItem } from "@omnia/fx-models";
2
+ import { DefineProp, DefinePropTheming, DefineSlot, DefineVModel } from "@omnia/fx/ux";
3
+ import { VNodeChild } from "vue";
4
+ type BaseProps = DefinePropTheming & DefineVModel<"", Array<InputSelectItem>, false, null, true, "The v-model of the component"> & DefineProp<"toned", boolean, false, null, "Sets the component to toned"> & DefineProp<"multiple", boolean, false, null, "If it is allowed to select multiple or single"> & DefineSlot<"selectionRender", (item: InputSelectItem, index: Number) => VNodeChild> & DefineSlot<"settingsRender", (item: InputSelectItem) => VNodeChild> & DefineSlot<"chipRenderer", (item: InputSelectItem, index: Number) => VNodeChild> & DefineProp<"label", string, null, null, "The label of the component"> & DefineProp<"items", Array<InputSelectItem>, false, null, "Items to select from">;
5
+ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<BaseProps>) => any;
6
+ export default _default;
@@ -0,0 +1 @@
1
+ export declare const SelectionPickerStyles: {};
@@ -0,0 +1 @@
1
+ export declare const ExampleComponents: import("@omnia/fx/ux").DocumentationSpec;
@@ -0,0 +1,2 @@
1
+ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<Record<string, any>>) => any;
2
+ export default _default;
@@ -0,0 +1 @@
1
+ export declare const spec: import("@omnia/fx/ux").DocumentationSpec;
@@ -1,4 +1,4 @@
1
1
  import { DefineProp, DefinePropTheming, DefineVModel } from "@omnia/fx/ux";
2
- type SnackbarProps = DefinePropTheming & DefineProp<"class", String | String[]> & DefineVModel<"", boolean, false, null, true, "The v-model of the component"> & DefineProp<"text", string, false, null, "The text to be displayed in the snack bar.">;
2
+ type SnackbarProps = DefinePropTheming & DefineProp<"class", String | String[]> & DefineVModel<"", boolean, false, null, true, "The v-model of the component"> & DefineProp<"text", string, false, null, "The text to be displayed in the snack bar."> & DefineProp<"timeout", string | number, false, 1500, "Time (in milliseconds) to wait until snackbar is automatically hidden. Use -1 to keep open indefinitely.">;
3
3
  declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<SnackbarProps>) => any;
4
4
  export default _default;
@@ -1,7 +1,5 @@
1
1
  declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
2
2
  colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "accent6" | "accent7" | "accent8" | "accent9" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic" | import("@omnia/fx-models").ColorSchemaTypes;
3
- } & {
4
- container?: boolean;
5
3
  } & {
6
4
  colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
7
5
  } & {
@@ -11,8 +11,6 @@ type TreewViewItemSlot<T> = {
11
11
  };
12
12
  declare const _default: <T extends Object>(props: import("@omnia/fx/ux").ConstructComponentProps<{
13
13
  colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "accent6" | "accent7" | "accent8" | "accent9" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic" | import("@omnia/fx-models").ColorSchemaTypes;
14
- } & {
15
- container?: boolean;
16
14
  } & {
17
15
  colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
18
16
  } & {
@@ -12,8 +12,6 @@ export interface TreeViewPagingModel {
12
12
  }
13
13
  declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
14
14
  colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "accent6" | "accent7" | "accent8" | "accent9" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic" | import("@omnia/fx-models").ColorSchemaTypes;
15
- } & {
16
- container?: boolean;
17
15
  } & {
18
16
  colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
19
17
  } & {
@@ -8,8 +8,6 @@ export declare function useDraggable(): {
8
8
  Draggable: DraggableComponentTypings;
9
9
  readonly DraggableIcon: (props: ConstructComponentProps<{
10
10
  colorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "accent6" | "accent7" | "accent8" | "accent9" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic" | import("@omnia/fx-models").ColorSchemaTypes;
11
- } & {
12
- container?: boolean;
13
11
  } & {
14
12
  colors?: import("..").ColorSchemaStoreType;
15
13
  } & {
@@ -0,0 +1,4 @@
1
+ import { TokenDefinition } from "@omnia/fx-models";
2
+ export declare class UserTokenDefinition extends TokenDefinition<string> {
3
+ prefixToken: string;
4
+ }
@@ -35,5 +35,8 @@ export declare namespace UserPropertyProviderLocalization {
35
35
  TimeProperty: string;
36
36
  UserIdentityProperty: string;
37
37
  };
38
+ Tokens: {
39
+ Username: string;
40
+ };
38
41
  }
39
42
  }
@@ -237,7 +237,7 @@ export interface VelcronPosition extends VelcronDimensions {
237
237
  export type VelcronOverflowValues = "visible" | "hidden" | "scroll" | "auto";
238
238
  export interface VelcronFlexColumnDefinition extends VelcronDefinition, VelcronColorStyling, VelcronDefinitionHasEffects, VelcronDefinitionHasOverflow {
239
239
  type: "column";
240
- events?: VelcronOnPressEvent;
240
+ events?: VelcronOnPressEvent & VelcronOnPressOutsideEvent & VelcronOnPointerEnterEvent & VelcronOnPointerLeaveEvent;
241
241
  grow?: number;
242
242
  blueprint?: ContainerFillBlueprint | BlueprintVariant;
243
243
  alignY?: VelcronVerticalAlignments;
@@ -258,6 +258,7 @@ export interface VelcronTextDefinition extends VelcronDefinition, VelcronColorSt
258
258
  value?: VelcronBindableProp;
259
259
  placeholder?: VelcronBindableProp;
260
260
  lineClamp?: VelcronBindableProp<number>;
261
+ mode?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
261
262
  noWrap?: VelcronBindableProp<boolean>;
262
263
  wordBreak?: VelcronBindableProp<"none">;
263
264
  align?: VelcronHorizontalAlignments;
@@ -21,6 +21,7 @@ export declare class VelcronData {
21
21
  static evaluateArray(template: string, renderContext: VelcronRenderContext): Array<any> | null;
22
22
  static evaluateBoolean(template: string | Boolean, renderContext: VelcronRenderContext): boolean | null;
23
23
  static tryParseBoolean(bool: any): ParseResult<boolean | null>;
24
+ static tryParseNumber(value: any): ParseResult<number | null>;
24
25
  static isString(text: any): text is string;
25
26
  static isBoolean(value: any): value is boolean;
26
27
  static isNumber(value: any): value is number;
@@ -144,6 +144,7 @@ import wcbd6cd82aabef42e7bf60679c7d5fb470 from './ux/wizard/WizardComponent';
144
144
  import wcde36ccd3a3064b0ea8f5865e65521e41 from '../../fx-sp/internal-do-not-import-from-here/ux/appwithspaliasinput/AppWithSharePointAliasInput';
145
145
  import wc28d15a1179a04eaa9f2e82abe15f7177 from '../../fx-sp/internal-do-not-import-from-here/ux/filterengine/TaxonomyPropertyRenderer';
146
146
  import wcb1fca92af8524970b426823cf7ef65b5 from '../../fx-sp/internal-do-not-import-from-here/ux/filterengine/SelectionsAreaTaxonomyRenderer';
147
+ import wc4584d438a74748ab9ae5f9f4f431673f from '../../fx-sp/internal-do-not-import-from-here/ux/listtree/ListTree';
147
148
  import wc8000658f96504040b6194f7e887665a7 from '../../fx-sp/internal-do-not-import-from-here/ux/queryfilterbuilder/QueryFilterBuilder';
148
149
  import wccff151bfd6e24f2fbacd02bba0fffe1f from '../../fx-sp/internal-do-not-import-from-here/ux/targetingfilter/TargetingFilter';
149
150
  import wcdae567bb2f1846abad5c0adaa64945cf from '../../fx-sp/internal-do-not-import-from-here/ux/termitem/SharePointTermItemComponent';
@@ -303,6 +304,7 @@ import wc8a82f6b541cc49b2ade3e5b880fd3a58 from './ux/oxide/rangeslider/RangeSlid
303
304
  import wc4c41fd8799ae43468150fd47661e8100 from './ux/oxide/rating/Rating';
304
305
  import wc177587e103904861b5d4d491388a01b1 from './ux/oxide/scrollcontainer/ScrollContainer';
305
306
  import wc578e2a4d5cd247a4b1291911256253a7 from './ux/oxide/select/Select';
307
+ import wcb433dc66d68f4a47997e8934e9afda22 from './ux/oxide/selectionpicker/InputSelect';
306
308
  import wc2ade92721b3c426fac97c63026f77351 from './ux/oxide/skeletonloader/SkeletonLoader';
307
309
  import wc8b0bddecd5d74fcba7aac87913137ca3 from './ux/oxide/slidepanel/SlidePanel';
308
310
  import wcd5ff31018df44196a5c6ab219bab4c25 from './ux/oxide/slidepanel/Slide';
@@ -2132,6 +2134,15 @@ declare global {
2132
2134
  $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
2133
2135
  };
2134
2136
  } : typeof wc07fdbc119d7742769eafe5f45ce14e18;
2137
+ "list": {
2138
+ "tree": typeof wc4584d438a74748ab9ae5f9f4f431673f extends {
2139
+ propsDefinition: infer TProp;
2140
+ } ? {
2141
+ new (...args: any[]): {
2142
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
2143
+ };
2144
+ } : typeof wc4584d438a74748ab9ae5f9f4f431673f;
2145
+ };
2135
2146
  "term": {
2136
2147
  "item": typeof wcdae567bb2f1846abad5c0adaa64945cf extends {
2137
2148
  propsDefinition: infer TProp;
@@ -5002,6 +5013,13 @@ declare global {
5002
5013
  $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
5003
5014
  };
5004
5015
  } : typeof wc51871a0562b54e25bcaf95beba7470c6;
5016
+ "select": typeof wcb433dc66d68f4a47997e8934e9afda22 extends {
5017
+ propsDefinition: infer TProp;
5018
+ } ? {
5019
+ new (...args: any[]): {
5020
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
5021
+ };
5022
+ } : typeof wcb433dc66d68f4a47997e8934e9afda22;
5005
5023
  };
5006
5024
  "layout": typeof wc428e436c13dc457898a408786361c9b1 extends {
5007
5025
  propsDefinition: infer TProp;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.343-dev",
4
+ "version": "8.0.345-dev",
5
5
  "description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -20,7 +20,7 @@
20
20
  ],
21
21
  "author": "Omnia Digital Workplace AB",
22
22
  "dependencies": {
23
- "@omnia/fx-models": "8.0.343-dev",
23
+ "@omnia/fx-models": "8.0.345-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.11.7",