@speckle/ui-components 2.18.10 → 2.18.12

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.
@@ -1,6 +1,12 @@
1
1
  declare const _default: import("vue").DefineComponent<{
2
2
  modelValue: import("vue").PropType<boolean>;
3
+ icons: {
4
+ type: import("vue").PropType<boolean>;
5
+ };
3
6
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
4
7
  modelValue: import("vue").PropType<boolean>;
8
+ icons: {
9
+ type: import("vue").PropType<boolean>;
10
+ };
5
11
  }>>, {}, {}>;
6
12
  export default _default;
@@ -26,3 +26,11 @@ export type AsyncWritableComputedRef<T> = ComputedRef<T> & {
26
26
  * @param params
27
27
  */
28
28
  export declare function writableAsyncComputed<T>(params: AsyncWritableComputedOptions<T>): AsyncWritableComputedRef<T>;
29
+ /**
30
+ * Build promise that can be resolved/rejected manually outside of the promise's execution scope
31
+ */
32
+ export declare const buildManualPromise: <T>() => {
33
+ promise: Promise<T>;
34
+ resolve: (value: T) => void;
35
+ reject: (reason?: any) => void;
36
+ };