@speckle/ui-components 2.22.6 → 2.23.0

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,7 @@
1
1
  type Props = {
2
2
  value: string;
3
3
  isMultiline?: boolean;
4
+ isIconButton?: boolean;
4
5
  rows?: number;
5
6
  };
6
7
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
@@ -1,6 +1,7 @@
1
1
  import type { PropType } from 'vue';
2
2
  import type { MaybeAsync, Optional } from '@speckle/shared';
3
3
  import type { RuleExpression } from 'vee-validate';
4
+ import type { LabelPosition } from '../../../composables/form/input';
4
5
  declare const _default: <SingleItem extends string | number | Record<string, unknown>>(__VLS_props: {
5
6
  size?: Optional<"sm" | "base" | "lg" | "xl">;
6
7
  readonly label: string;
@@ -17,6 +18,7 @@ declare const _default: <SingleItem extends string | number | Record<string, unk
17
18
  rules?: RuleExpression<SingleItem | SingleItem[] | undefined>;
18
19
  validateOnMount?: boolean | undefined;
19
20
  showRequired?: boolean | undefined;
21
+ labelPosition?: LabelPosition | undefined;
20
22
  validateOnValueUpdate?: boolean | undefined;
21
23
  search?: boolean | undefined;
22
24
  help?: Optional<string>;
@@ -77,6 +79,7 @@ declare const _default: <SingleItem extends string | number | Record<string, unk
77
79
  rules?: RuleExpression<SingleItem | SingleItem[] | undefined>;
78
80
  validateOnMount?: boolean | undefined;
79
81
  showRequired?: boolean | undefined;
82
+ labelPosition?: LabelPosition | undefined;
80
83
  validateOnValueUpdate?: boolean | undefined;
81
84
  search?: boolean | undefined;
82
85
  help?: Optional<string>;
@@ -141,6 +144,7 @@ declare const _default: <SingleItem extends string | number | Record<string, unk
141
144
  rules?: RuleExpression<SingleItem | SingleItem[] | undefined>;
142
145
  validateOnMount?: boolean | undefined;
143
146
  showRequired?: boolean | undefined;
147
+ labelPosition?: LabelPosition | undefined;
144
148
  validateOnValueUpdate?: boolean | undefined;
145
149
  search?: boolean | undefined;
146
150
  help?: Optional<string>;
@@ -1,5 +1,8 @@
1
1
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
2
2
  collapsed: import("vue").PropType<boolean>;
3
+ tag: {
4
+ type: import("vue").PropType<string>;
5
+ };
3
6
  title: {
4
7
  type: import("vue").PropType<string>;
5
8
  };
@@ -14,6 +17,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
14
17
  };
15
18
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
16
19
  collapsed: import("vue").PropType<boolean>;
20
+ tag: {
21
+ type: import("vue").PropType<string>;
22
+ };
17
23
  title: {
18
24
  type: import("vue").PropType<string>;
19
25
  };