@omnia/fx 8.0.120-dev → 8.0.122-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 (92) hide show
  1. package/internal-do-not-import-from-here/manifests/omnia.fx.ux.manifest.json +1 -1
  2. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/Template.d.ts +1 -1
  3. package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaEditor.d.ts +45 -5
  4. package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaPicker.d.ts +117 -91
  5. package/internal-do-not-import-from-here/ux/fileuploader/FileUploader.d.ts +26 -0
  6. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutBlockRenderer.d.ts +32 -4
  7. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionRenderer.d.ts +32 -4
  8. package/internal-do-not-import-from-here/ux/mediapickerV2/Utils/getMediaProvider.d.ts +8 -0
  9. package/internal-do-not-import-from-here/ux/mediapickerV2/Utils/index.d.ts +1 -0
  10. package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/MediaPicker.css.d.ts +2 -0
  11. package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/MediaPicker.d.ts +75 -50
  12. package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/components/MediaGallerySelector.css.d.ts +1 -0
  13. package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/core/MediaFileProcessor.d.ts +2 -2
  14. package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/core/MediaPickerImageHandler.d.ts +2 -0
  15. package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/core/utils.d.ts +1 -1
  16. package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/types.d.ts +2 -0
  17. package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/gallery/ImageHandler.d.ts +12 -0
  18. package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/gallery/VideoHandler.d.ts +9 -0
  19. package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/gallery/index.d.ts +2 -0
  20. package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/imagetransformer/cropByRatio.d.ts +24 -0
  21. package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/imagetransformer/filter.d.ts +11 -0
  22. package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/imagetransformer/flip.d.ts +8 -0
  23. package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/imagetransformer/index.d.ts +4 -0
  24. package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/imagetransformer/utils.d.ts +13 -0
  25. package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/index.d.ts +3 -0
  26. package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/provider/BaseImageHandler.d.ts +47 -0
  27. package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/provider/BaseVideoHandler.d.ts +36 -0
  28. package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/provider/index.d.ts +2 -0
  29. package/internal-do-not-import-from-here/ux/mediapickerV2/imagegrid/ImageGrid.d.ts +22 -0
  30. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/cropper/ImageCropper.d.ts +6 -38
  31. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/editor/ImageEditor.css.d.ts +1 -0
  32. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/editor/ImageEditorCanvas.d.ts +51 -66
  33. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/filters/ImageFilters.d.ts +5 -20
  34. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/ImageTransformer.d.ts +4 -19
  35. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Utils/cropUtils.d.ts +21 -0
  36. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Utils/index.d.ts +2 -0
  37. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Utils/transformUtils.d.ts +7 -0
  38. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/loc/localize.d.ts +2 -0
  39. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/store/ImageTransformerStore.d.ts +236 -0
  40. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/store/index.d.ts +1 -0
  41. package/internal-do-not-import-from-here/ux/mediapickerV2/interfaces/IImageTransformHandler.d.ts +16 -0
  42. package/internal-do-not-import-from-here/ux/mediapickerV2/interfaces/IMediaPickerGalleryHandler.d.ts +10 -0
  43. package/internal-do-not-import-from-here/ux/mediapickerV2/interfaces/IMediaPickerProviderMediaHandler.d.ts +56 -0
  44. package/internal-do-not-import-from-here/ux/mediapickerV2/interfaces/index.d.ts +3 -0
  45. package/internal-do-not-import-from-here/ux/mediapickerV2/mediaprovider/MediaProvider.css.d.ts +0 -2
  46. package/internal-do-not-import-from-here/ux/mediapickerV2/mediaprovider/MediaProvider.d.ts +53 -0
  47. package/internal-do-not-import-from-here/ux/mediapickerV2/stores/MediaPickerCommonStore.d.ts +84 -0
  48. package/internal-do-not-import-from-here/ux/mediapickerV2/stores/MediaPickerGalleryStore.d.ts +190 -0
  49. package/internal-do-not-import-from-here/ux/mediapickerV2/stores/ProviderStore.d.ts +241 -0
  50. package/internal-do-not-import-from-here/ux/mediapickerV2/stores/constants.d.ts +2 -0
  51. package/internal-do-not-import-from-here/ux/mediapickerV2/stores/index.d.ts +5 -3
  52. package/internal-do-not-import-from-here/ux/mediapickerV2/stores/types.d.ts +55 -0
  53. package/internal-do-not-import-from-here/ux/mediapickerproviders/Youtube/YouTubeProvider.d.ts +48 -0
  54. package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider-v2/BingProvider.d.ts +4 -395
  55. package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider-v2/handler.d.ts +9 -0
  56. package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider-v2/searchFilters.d.ts +19 -0
  57. package/internal-do-not-import-from-here/ux/mediapickerproviders/mycomputerprovider/MyComputerProvider.css.d.ts +4 -0
  58. package/internal-do-not-import-from-here/ux/mediapickerproviders/pexelsprovider-V2/PexelProvider.d.ts +4 -395
  59. package/internal-do-not-import-from-here/ux/multitextinput/MultiTextInput.d.ts +7 -3
  60. package/internal-do-not-import-from-here/ux/organizationtree/OrganizationTree.css.d.ts +9 -1
  61. package/internal-do-not-import-from-here/ux/organizationtree/OrganizationTree.d.ts +68 -31
  62. package/internal-do-not-import-from-here/ux/organizationtree/reportees/Reportees.d.ts +63 -18
  63. package/internal-do-not-import-from-here/ux/oxide/column/ColumnGrid.d.ts +1 -1
  64. package/internal-do-not-import-from-here/ux/oxide/image/Image.d.ts +21 -0
  65. package/internal-do-not-import-from-here/ux/persona/Persona.css.d.ts +7 -1
  66. package/internal-do-not-import-from-here/ux/persona/Persona.d.ts +71 -26
  67. package/internal-do-not-import-from-here/ux/theming-v2/themeprovider/ThemeProvider.d.ts +707 -681
  68. package/internal-do-not-import-from-here/wctypings.d.ts +149 -101
  69. package/package.json +2 -2
  70. package/internal-do-not-import-from-here/ux/depricated-mediapicker/components/ImageSelector.css.d.ts +0 -6
  71. package/internal-do-not-import-from-here/ux/depricated-mediapicker/components/ImageSelector.d.ts +0 -30
  72. package/internal-do-not-import-from-here/ux/imagegrid/ImageGrid copy.d.ts +0 -1
  73. package/internal-do-not-import-from-here/ux/imagegrid/ImageGrid.css.d.ts +0 -1
  74. package/internal-do-not-import-from-here/ux/imagegrid/ImageGrid.d.ts +0 -138
  75. package/internal-do-not-import-from-here/ux/imagegrid/loc/index.d.ts +0 -1
  76. package/internal-do-not-import-from-here/ux/imagegrid/loc/localize.d.ts +0 -8
  77. package/internal-do-not-import-from-here/ux/mediapickerV2/imagegrid/index.d.ts +0 -0
  78. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/Interfaces.d.ts +0 -0
  79. package/internal-do-not-import-from-here/ux/mediapickerV2/stores/MediaGalleryStore.d.ts +0 -59
  80. package/internal-do-not-import-from-here/ux/mediapickerV2/stores/MediaPickerEditorStore.d.ts +0 -159
  81. package/internal-do-not-import-from-here/ux/mediapickerV2/stores/MediaPickerProviderStore.d.ts +0 -116
  82. package/internal-do-not-import-from-here/ux/mediapickerproviders/Youtube/IYouTubeProvider.d.ts +0 -0
  83. package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider-v2/BingProvider_old.d.ts +0 -0
  84. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/GridViewMediaProviderComponent.css.d.ts +0 -0
  85. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/GridViewMediaProviderComponent.d.ts +0 -0
  86. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/MediaProviderComponentBase.css.d.ts +0 -0
  87. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/MediaProviderComponentBase.d.ts +0 -0
  88. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/MultiSelectMediaProviderComponentBase.d.ts +0 -0
  89. package/internal-do-not-import-from-here/ux/organizationtree/IOrganizationTree.d.ts +0 -22
  90. package/internal-do-not-import-from-here/ux/organizationtree/reportees/IReportees.d.ts +0 -21
  91. package/internal-do-not-import-from-here/ux/persona/IPersona.d.ts +0 -23
  92. /package/internal-do-not-import-from-here/ux/{imagegrid → mediapickerV2}/index.d.ts +0 -0
@@ -1,4 +1,4 @@
1
- import { ColorSchemaTypes, ThemeDefinitionV2 } from "@omnia/fx-models";
1
+ import { ColorSchema, ColorSchemaTypes, ThemeDefinitionV2 } from "@omnia/fx-models";
2
2
  import { VNodeChild } from "vue";
3
3
  declare const _default: {
4
4
  new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
@@ -19,71 +19,77 @@ declare const _default: {
19
19
  type: import("vue").PropType<ThemeDefinitionV2>;
20
20
  };
21
21
  "onUpdate:modelValue": {
22
- type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
22
+ type: import("vue").PropType<(value: "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
23
23
  };
24
24
  "v-model": {
25
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
25
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
26
26
  required: false;
27
27
  };
28
28
  modelValue: {
29
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
29
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
30
30
  required: false;
31
31
  };
32
32
  name: <TName extends string>(n?: TName) => { [key in import("../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
33
- type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
33
+ type: import("vue").PropType<(value: "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
34
34
  }; } & { [key_1 in import("../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
35
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
35
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
36
36
  required: false;
37
37
  }; } & { [key_2 in import("../DefineVueTypings").VModelKeyNameInProps<TName>]: {
38
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
38
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
39
39
  required: false;
40
40
  }; } & {
41
- require(): import("../DefineVueTypings").DefinePropModelRequire<TName, "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
41
+ require(): import("../DefineVueTypings").DefinePropModelRequire<TName, "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
42
42
  "onUpdate:modelValue": {
43
- type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
43
+ type: import("vue").PropType<(value: "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
44
44
  };
45
45
  } & {
46
46
  "v-model": {
47
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
47
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
48
48
  required: false;
49
49
  };
50
50
  } & {
51
51
  modelValue: {
52
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
52
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
53
53
  required: false;
54
54
  };
55
55
  }>;
56
- defaultValue(value?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
56
+ defaultValue(value?: "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
57
57
  "onUpdate:modelValue": {
58
- type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
58
+ type: import("vue").PropType<(value: "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
59
59
  };
60
60
  } & {
61
61
  "v-model": {
62
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
62
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
63
63
  required: false;
64
64
  };
65
65
  } & {
66
66
  modelValue: {
67
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
67
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
68
68
  required: false;
69
69
  };
70
70
  }, false>;
71
- doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
71
+ doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
72
72
  "onUpdate:modelValue": {
73
- type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
73
+ type: import("vue").PropType<(value: "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
74
74
  };
75
75
  } & {
76
76
  "v-model": {
77
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
77
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
78
78
  required: false;
79
79
  };
80
80
  } & {
81
81
  modelValue: {
82
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
82
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
83
83
  required: false;
84
84
  };
85
85
  }>;
86
86
  };
87
+ "custom-schema": {
88
+ type: import("vue").PropType<boolean>;
89
+ };
90
+ customSchema: {
91
+ type: import("vue").PropType<boolean>;
92
+ };
87
93
  colorSchemaType?: any;
88
94
  container?: any;
89
95
  colors?: any;
@@ -117,71 +123,77 @@ declare const _default: {
117
123
  type: import("vue").PropType<ThemeDefinitionV2>;
118
124
  };
119
125
  "onUpdate:modelValue": {
120
- type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
126
+ type: import("vue").PropType<(value: "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
121
127
  };
122
128
  "v-model": {
123
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
129
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
124
130
  required: false;
125
131
  };
126
132
  modelValue: {
127
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
133
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
128
134
  required: false;
129
135
  };
130
136
  name: <TName extends string>(n?: TName) => { [key in import("../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
131
- type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
137
+ type: import("vue").PropType<(value: "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
132
138
  }; } & { [key_1 in import("../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
133
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
139
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
134
140
  required: false;
135
141
  }; } & { [key_2 in import("../DefineVueTypings").VModelKeyNameInProps<TName>]: {
136
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
142
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
137
143
  required: false;
138
144
  }; } & {
139
- require(): import("../DefineVueTypings").DefinePropModelRequire<TName, "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
145
+ require(): import("../DefineVueTypings").DefinePropModelRequire<TName, "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
140
146
  "onUpdate:modelValue": {
141
- type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
147
+ type: import("vue").PropType<(value: "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
142
148
  };
143
149
  } & {
144
150
  "v-model": {
145
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
151
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
146
152
  required: false;
147
153
  };
148
154
  } & {
149
155
  modelValue: {
150
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
156
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
151
157
  required: false;
152
158
  };
153
159
  }>;
154
- defaultValue(value?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
160
+ defaultValue(value?: "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
155
161
  "onUpdate:modelValue": {
156
- type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
162
+ type: import("vue").PropType<(value: "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
157
163
  };
158
164
  } & {
159
165
  "v-model": {
160
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
166
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
161
167
  required: false;
162
168
  };
163
169
  } & {
164
170
  modelValue: {
165
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
171
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
166
172
  required: false;
167
173
  };
168
174
  }, false>;
169
- doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
175
+ doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
170
176
  "onUpdate:modelValue": {
171
- type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
177
+ type: import("vue").PropType<(value: "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
172
178
  };
173
179
  } & {
174
180
  "v-model": {
175
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
181
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
176
182
  required: false;
177
183
  };
178
184
  } & {
179
185
  modelValue: {
180
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
186
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
181
187
  required: false;
182
188
  };
183
189
  }>;
184
190
  };
191
+ "custom-schema": {
192
+ type: import("vue").PropType<boolean>;
193
+ };
194
+ customSchema: {
195
+ type: import("vue").PropType<boolean>;
196
+ };
185
197
  colorSchemaType?: any;
186
198
  container?: any;
187
199
  colors?: any;
@@ -222,71 +234,77 @@ declare const _default: {
222
234
  type: import("vue").PropType<ThemeDefinitionV2>;
223
235
  };
224
236
  "onUpdate:modelValue": {
225
- type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
237
+ type: import("vue").PropType<(value: "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
226
238
  };
227
239
  "v-model": {
228
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
240
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
229
241
  required: false;
230
242
  };
231
243
  modelValue: {
232
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
244
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
233
245
  required: false;
234
246
  };
235
247
  name: <TName extends string>(n?: TName) => { [key in import("../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
236
- type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
248
+ type: import("vue").PropType<(value: "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
237
249
  }; } & { [key_1 in import("../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
238
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
250
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
239
251
  required: false;
240
252
  }; } & { [key_2 in import("../DefineVueTypings").VModelKeyNameInProps<TName>]: {
241
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
253
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
242
254
  required: false;
243
255
  }; } & {
244
- require(): import("../DefineVueTypings").DefinePropModelRequire<TName, "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
256
+ require(): import("../DefineVueTypings").DefinePropModelRequire<TName, "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
245
257
  "onUpdate:modelValue": {
246
- type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
258
+ type: import("vue").PropType<(value: "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
247
259
  };
248
260
  } & {
249
261
  "v-model": {
250
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
262
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
251
263
  required: false;
252
264
  };
253
265
  } & {
254
266
  modelValue: {
255
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
267
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
256
268
  required: false;
257
269
  };
258
270
  }>;
259
- defaultValue(value?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
271
+ defaultValue(value?: "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
260
272
  "onUpdate:modelValue": {
261
- type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
273
+ type: import("vue").PropType<(value: "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
262
274
  };
263
275
  } & {
264
276
  "v-model": {
265
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
277
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
266
278
  required: false;
267
279
  };
268
280
  } & {
269
281
  modelValue: {
270
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
282
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
271
283
  required: false;
272
284
  };
273
285
  }, false>;
274
- doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
286
+ doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
275
287
  "onUpdate:modelValue": {
276
- type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
288
+ type: import("vue").PropType<(value: "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
277
289
  };
278
290
  } & {
279
291
  "v-model": {
280
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
292
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
281
293
  required: false;
282
294
  };
283
295
  } & {
284
296
  modelValue: {
285
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
297
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
286
298
  required: false;
287
299
  };
288
300
  }>;
289
301
  };
302
+ "custom-schema": {
303
+ type: import("vue").PropType<boolean>;
304
+ };
305
+ customSchema: {
306
+ type: import("vue").PropType<boolean>;
307
+ };
290
308
  colorSchemaType?: any;
291
309
  container?: any;
292
310
  colors?: any;
@@ -324,71 +342,77 @@ declare const _default: {
324
342
  type: import("vue").PropType<ThemeDefinitionV2>;
325
343
  };
326
344
  "onUpdate:modelValue": {
327
- type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
345
+ type: import("vue").PropType<(value: "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
328
346
  };
329
347
  "v-model": {
330
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
348
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
331
349
  required: false;
332
350
  };
333
351
  modelValue: {
334
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
352
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
335
353
  required: false;
336
354
  };
337
355
  name: <TName extends string>(n?: TName) => { [key in import("../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
338
- type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
356
+ type: import("vue").PropType<(value: "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
339
357
  }; } & { [key_1 in import("../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
340
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
358
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
341
359
  required: false;
342
360
  }; } & { [key_2 in import("../DefineVueTypings").VModelKeyNameInProps<TName>]: {
343
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
361
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
344
362
  required: false;
345
363
  }; } & {
346
- require(): import("../DefineVueTypings").DefinePropModelRequire<TName, "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
364
+ require(): import("../DefineVueTypings").DefinePropModelRequire<TName, "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
347
365
  "onUpdate:modelValue": {
348
- type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
366
+ type: import("vue").PropType<(value: "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
349
367
  };
350
368
  } & {
351
369
  "v-model": {
352
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
370
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
353
371
  required: false;
354
372
  };
355
373
  } & {
356
374
  modelValue: {
357
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
375
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
358
376
  required: false;
359
377
  };
360
378
  }>;
361
- defaultValue(value?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
379
+ defaultValue(value?: "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
362
380
  "onUpdate:modelValue": {
363
- type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
381
+ type: import("vue").PropType<(value: "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
364
382
  };
365
383
  } & {
366
384
  "v-model": {
367
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
385
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
368
386
  required: false;
369
387
  };
370
388
  } & {
371
389
  modelValue: {
372
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
390
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
373
391
  required: false;
374
392
  };
375
393
  }, false>;
376
- doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
394
+ doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
377
395
  "onUpdate:modelValue": {
378
- type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
396
+ type: import("vue").PropType<(value: "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
379
397
  };
380
398
  } & {
381
399
  "v-model": {
382
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
400
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
383
401
  required: false;
384
402
  };
385
403
  } & {
386
404
  modelValue: {
387
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
405
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
388
406
  required: false;
389
407
  };
390
408
  }>;
391
409
  };
410
+ "custom-schema": {
411
+ type: import("vue").PropType<boolean>;
412
+ };
413
+ customSchema: {
414
+ type: import("vue").PropType<boolean>;
415
+ };
392
416
  colorSchemaType?: any;
393
417
  container?: any;
394
418
  colors?: any;
@@ -416,61 +440,61 @@ declare const _default: {
416
440
  } & {
417
441
  name?: {
418
442
  [x: `onUpdate:${string}`]: {
419
- type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
443
+ type: import("vue").PropType<(value: "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
420
444
  };
421
445
  } & {
422
446
  [x: `v-model:${string}`]: {
423
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
447
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
424
448
  required: false;
425
449
  };
426
450
  } & {
427
451
  [x: string]: {
428
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
452
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
429
453
  required: false;
430
454
  };
431
455
  } & {
432
- require(): import("../DefineVueTypings").DefinePropModelRequire<string, "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
456
+ require(): import("../DefineVueTypings").DefinePropModelRequire<string, "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
433
457
  "onUpdate:modelValue": {
434
- type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
458
+ type: import("vue").PropType<(value: "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
435
459
  };
436
460
  } & {
437
461
  "v-model": {
438
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
462
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
439
463
  required: false;
440
464
  };
441
465
  } & {
442
466
  modelValue: {
443
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
467
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
444
468
  required: false;
445
469
  };
446
470
  }>;
447
- defaultValue(value?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes): import("../DefineVueTypings").DefinePropModelDefaultValue<string, "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
471
+ defaultValue(value?: "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes): import("../DefineVueTypings").DefinePropModelDefaultValue<string, "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
448
472
  "onUpdate:modelValue": {
449
- type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
473
+ type: import("vue").PropType<(value: "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
450
474
  };
451
475
  } & {
452
476
  "v-model": {
453
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
477
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
454
478
  required: false;
455
479
  };
456
480
  } & {
457
481
  modelValue: {
458
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
482
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
459
483
  required: false;
460
484
  };
461
485
  }, false>;
462
- doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<string, "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
486
+ doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<string, "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, {
463
487
  "onUpdate:modelValue": {
464
- type: import("vue").PropType<(value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
488
+ type: import("vue").PropType<(value: "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any>;
465
489
  };
466
490
  } & {
467
491
  "v-model": {
468
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
492
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
469
493
  required: false;
470
494
  };
471
495
  } & {
472
496
  modelValue: {
473
- type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
497
+ type: import("vue").PropType<"info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
474
498
  required: false;
475
499
  };
476
500
  }>;
@@ -478,15 +502,17 @@ declare const _default: {
478
502
  label?: string;
479
503
  class?: String | String[];
480
504
  themeDefinition?: ThemeDefinitionV2;
481
- "v-model"?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes;
482
- "onUpdate:modelValue"?: (value: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any;
483
- modelValue?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes;
505
+ "v-model"?: "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes;
506
+ "onUpdate:modelValue"?: (value: "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => any;
507
+ modelValue?: "info" | "error" | ColorSchema | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes;
484
508
  "v-slots"?: {
485
509
  default?: import("../DefineVueTypings").Slot<any[]>;
486
510
  } & {
487
511
  activator?: () => VNodeChild;
488
512
  };
489
513
  "theme-definition"?: ThemeDefinitionV2;
514
+ customSchema?: boolean;
515
+ "custom-schema"?: boolean;
490
516
  }>, "onUpdate:modelValue" | "onColor:enter" | "onColor:leave"> & {
491
517
  "onUpdate:modelValue"?: (colorSchemaType: ColorSchemaTypes) => any;
492
518
  "onColor:enter"?: (colorSchemaType: ColorSchemaTypes) => any;
@@ -8,6 +8,12 @@ declare const _default: {
8
8
  } & {
9
9
  activator?: Func<[VNodeChild]>;
10
10
  }>;
11
+ "hide-file-list": {
12
+ type: import("vue").PropType<boolean>;
13
+ };
14
+ hideFileList: {
15
+ type: import("vue").PropType<boolean>;
16
+ };
11
17
  "hide-overlay-icon": {
12
18
  type: import("vue").PropType<boolean>;
13
19
  };
@@ -56,6 +62,12 @@ declare const _default: {
56
62
  } & {
57
63
  activator?: Func<[VNodeChild]>;
58
64
  }>;
65
+ "hide-file-list": {
66
+ type: import("vue").PropType<boolean>;
67
+ };
68
+ hideFileList: {
69
+ type: import("vue").PropType<boolean>;
70
+ };
59
71
  "hide-overlay-icon": {
60
72
  type: import("vue").PropType<boolean>;
61
73
  };
@@ -106,6 +118,12 @@ declare const _default: {
106
118
  } & {
107
119
  activator?: Func<[VNodeChild]>;
108
120
  }>;
121
+ "hide-file-list": {
122
+ type: import("vue").PropType<boolean>;
123
+ };
124
+ hideFileList: {
125
+ type: import("vue").PropType<boolean>;
126
+ };
109
127
  "hide-overlay-icon": {
110
128
  type: import("vue").PropType<boolean>;
111
129
  };
@@ -153,6 +171,12 @@ declare const _default: {
153
171
  } & {
154
172
  activator?: Func<[VNodeChild]>;
155
173
  }>;
174
+ "hide-file-list": {
175
+ type: import("vue").PropType<boolean>;
176
+ };
177
+ hideFileList: {
178
+ type: import("vue").PropType<boolean>;
179
+ };
156
180
  "hide-overlay-icon": {
157
181
  type: import("vue").PropType<boolean>;
158
182
  };
@@ -212,6 +236,8 @@ declare const _default: {
212
236
  "limited-file-types"?: string[];
213
237
  "limited-file-size"?: number;
214
238
  "hide-overlay-icon"?: boolean;
239
+ hideFileList?: boolean;
240
+ "hide-file-list"?: boolean;
215
241
  }>, "onDoc$" | "onFileChanged"> & {
216
242
  onDoc$?: (description?: string) => any;
217
243
  onFileChanged?: (allFiles: FileUploaderItemHandler[]) => any;