@aures5g/vue-component-library 3.26.0 → 3.41.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.
Files changed (33) hide show
  1. package/dist/TableSelectionCheckbox-Bd72Q-xQ.js +36 -0
  2. package/dist/TableSelectionFilter-DoENxTY_.js +61 -0
  3. package/dist/UICheckbox-CO51kllT.js +77 -0
  4. package/dist/UIMenu-DSRikXGe.js +1683 -0
  5. package/dist/src/components/datePicker/CalendarMenuDropdown.vue.d.ts +21 -0
  6. package/dist/src/components/datePicker/CalendarMenuDropdownList.vue.d.ts +18 -0
  7. package/dist/src/components/datePicker/UIDatePicker.vue.d.ts +16 -0
  8. package/dist/src/components/dropdown/UIDropdown.vue.d.ts +5 -4
  9. package/dist/src/components/iconButton/UIIconButton.vue.d.ts +1 -1
  10. package/dist/src/components/labelValueList/UILabelSubValue.vue.d.ts +18 -0
  11. package/dist/src/components/labelValueList/UILabelSubValueList.vue.d.ts +13 -0
  12. package/dist/src/components/menu/UIMenu.vue.d.ts +16 -1
  13. package/dist/src/components/segmentedButton/SegmentedButtonCore.vue.d.ts +1 -1
  14. package/dist/src/components/slider/UISlider.vue.d.ts +14 -0
  15. package/dist/src/components/table/TableHeaderCell.vue.d.ts +1 -1
  16. package/dist/src/components/table/TableHeaderRow.vue.d.ts +1 -1
  17. package/dist/src/components/table/TableSelectionCheckbox.vue.d.ts +1 -1
  18. package/dist/src/components/table/UITable.vue.d.ts +15 -3
  19. package/dist/src/components/table/UITableCard.vue.d.ts +3 -3
  20. package/dist/src/components/table/uiTable.types.d.ts +2 -2
  21. package/dist/src/components/table/uiTable.utils.d.ts +3 -4
  22. package/dist/src/components/tag/UITag.vue.d.ts +1 -1
  23. package/dist/src/config/acbs.d.ts +10 -7
  24. package/dist/src/index.d.ts +5 -1
  25. package/dist/src/utils/array.d.ts +1 -0
  26. package/dist/vue-component-library.css +3 -1
  27. package/dist/vue-component-library.js +9242 -7488
  28. package/dist/vue-component-library.umd.cjs +68 -77
  29. package/package.json +55 -44
  30. package/dist/TableSelectionCheckbox-SJcj9lTW.js +0 -42
  31. package/dist/TableSelectionFilter-DMPQAER-.js +0 -70
  32. package/dist/UIBadge-CC6Xl4yz.js +0 -4
  33. package/dist/UITag-D-L9r4Bf.js +0 -4
@@ -0,0 +1,21 @@
1
+ type __VLS_Props = {
2
+ label: string;
3
+ disabled?: boolean;
4
+ showArrows?: boolean;
5
+ showDropdown?: boolean;
6
+ };
7
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
+ open: (args_0: void) => any;
9
+ moveLeft: (args_0: void) => any;
10
+ moveRight: (args_0: void) => any;
11
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
12
+ onOpen?: ((args_0?: void | undefined) => any) | undefined;
13
+ onMoveLeft?: ((args_0?: void | undefined) => any) | undefined;
14
+ onMoveRight?: ((args_0?: void | undefined) => any) | undefined;
15
+ }>, {
16
+ disabled: boolean;
17
+ showArrows: boolean;
18
+ showDropdown: boolean;
19
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
20
+ declare const _default: typeof __VLS_export;
21
+ export default _default;
@@ -0,0 +1,18 @@
1
+ type __VLS_Props = {
2
+ list: {
3
+ value: number;
4
+ label: string;
5
+ }[];
6
+ bigRow: boolean;
7
+ };
8
+ type __VLS_ModelProps = {
9
+ modelValue?: number;
10
+ };
11
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
12
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
13
+ "update:modelValue": (value: number) => any;
14
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
15
+ "onUpdate:modelValue"?: ((value: number) => any) | undefined;
16
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
+ declare const _default: typeof __VLS_export;
18
+ export default _default;
@@ -0,0 +1,16 @@
1
+ import type { CommonFormFieldProp } from '@/components/form/commonFormFieldProps';
2
+ type __VLS_Props = {
3
+ label: string;
4
+ color: CommonFormFieldProp['color'];
5
+ };
6
+ type __VLS_ModelProps = {
7
+ modelValue?: string;
8
+ };
9
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
10
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
11
+ "update:modelValue": (value: string) => any;
12
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
13
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
14
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
+ declare const _default: typeof __VLS_export;
16
+ export default _default;
@@ -10,10 +10,11 @@ declare const __VLS_export: <T extends Record<string, unknown>>(__VLS_props: Non
10
10
  actionLabel?: string;
11
11
  actionLeadingIcon?: FontAwesomeIconProps["icon"];
12
12
  actionTrailingIcon?: FontAwesomeIconProps["icon"];
13
+ cyPrefix?: string;
13
14
  } & {
14
- modelValue?: T[keyof T];
15
+ modelValue?: T[keyof T] | null;
15
16
  }) & {
16
- "onUpdate:modelValue"?: ((value: T[keyof T]) => any) | undefined;
17
+ "onUpdate:modelValue"?: ((value: T[keyof T] | null) => any) | undefined;
17
18
  onAction?: (() => any) | undefined;
18
19
  }> & (typeof globalThis extends {
19
20
  __VLS_PROPS_FALLBACK: infer P;
@@ -26,9 +27,9 @@ declare const __VLS_export: <T extends Record<string, unknown>>(__VLS_props: Non
26
27
  tags?(): VNode;
27
28
  action?(): VNode;
28
29
  };
29
- emit: ((e: "action") => void) & ((event: "update:modelValue", value: T[keyof T]) => void);
30
+ emit: ((e: "action") => void) & ((event: "update:modelValue", value: T[keyof T] | null) => void);
30
31
  }>) => import("vue").VNode & {
31
- __ctx?: Awaited<typeof __VLS_setup>;
32
+ __ctx?: NonNullable<Awaited<typeof __VLS_setup>>;
32
33
  };
33
34
  declare const _default: typeof __VLS_export;
34
35
  export default _default;
@@ -13,10 +13,10 @@ type __VLS_Slots = {} & {
13
13
  default?: (props: typeof __VLS_1) => any;
14
14
  };
15
15
  declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
16
+ size: ButtonSizes;
16
17
  icon: FontAwesomeIconProps["icon"];
17
18
  placement: ComponentPlacements;
18
19
  badge: boolean | number | string;
19
- size: ButtonSizes;
20
20
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
21
21
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
22
22
  declare const _default: typeof __VLS_export;
@@ -0,0 +1,18 @@
1
+ import type { VNode } from 'vue';
2
+ type __VLS_Props = {
3
+ label?: string;
4
+ value?: string;
5
+ };
6
+ type __VLS_Slots = {
7
+ label?(): VNode;
8
+ value?(): VNode;
9
+ };
10
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
11
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
12
+ declare const _default: typeof __VLS_export;
13
+ export default _default;
14
+ type __VLS_WithSlots<T, S> = T & {
15
+ new (): {
16
+ $slots: S;
17
+ };
18
+ };
@@ -0,0 +1,13 @@
1
+ import type { VNode } from 'vue';
2
+ type __VLS_Slots = {
3
+ default?(): VNode;
4
+ };
5
+ declare const __VLS_base: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
6
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
7
+ declare const _default: typeof __VLS_export;
8
+ export default _default;
9
+ type __VLS_WithSlots<T, S> = T & {
10
+ new (): {
11
+ $slots: S;
12
+ };
13
+ };
@@ -1,5 +1,5 @@
1
1
  import { type FontAwesomeIconProps } from '@fortawesome/vue-fontawesome';
2
- type __VLS_Props = {
2
+ type Props = {
3
3
  title?: string;
4
4
  size: 'small' | 'middle' | 'large';
5
5
  items: {
@@ -10,14 +10,29 @@ type __VLS_Props = {
10
10
  trailingIcon?: FontAwesomeIconProps['icon'];
11
11
  }[];
12
12
  };
13
+ type __VLS_Props = Props;
13
14
  type __VLS_ModelProps = {
14
15
  modelValue?: string | null;
15
16
  };
16
17
  type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
17
18
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
18
19
  "update:modelValue": (value: string | null) => any;
20
+ itemClick: (payload: {
21
+ label: string;
22
+ value: string;
23
+ disabled?: boolean;
24
+ leadingIcon?: FontAwesomeIconProps["icon"];
25
+ trailingIcon?: FontAwesomeIconProps["icon"];
26
+ }) => any;
19
27
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
20
28
  "onUpdate:modelValue"?: ((value: string | null) => any) | undefined;
29
+ onItemClick?: ((payload: {
30
+ label: string;
31
+ value: string;
32
+ disabled?: boolean;
33
+ leadingIcon?: FontAwesomeIconProps["icon"];
34
+ trailingIcon?: FontAwesomeIconProps["icon"];
35
+ }) => any) | undefined;
21
36
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
22
37
  declare const _default: typeof __VLS_export;
23
38
  export default _default;
@@ -23,8 +23,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
23
23
  "onUpdate:modelValue"?: ((payload: ModelValue) => any) | undefined;
24
24
  }>, {
25
25
  label: string;
26
- icon: FontAwesomeIconProps["icon"];
27
26
  value: ButtonValue;
27
+ icon: FontAwesomeIconProps["icon"];
28
28
  part: "start" | "middle" | "end";
29
29
  modelValue: ModelValue;
30
30
  multiple: boolean;
@@ -0,0 +1,14 @@
1
+ type __VLS_Props = {
2
+ steps: number[];
3
+ };
4
+ type __VLS_ModelProps = {
5
+ modelValue?: [number | undefined, number | undefined] | never[];
6
+ };
7
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
8
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
+ "update:modelValue": (value: never[] | [number | undefined, number | undefined]) => any;
10
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
11
+ "onUpdate:modelValue"?: ((value: never[] | [number | undefined, number | undefined]) => any) | undefined;
12
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
13
+ declare const _default: typeof __VLS_export;
14
+ export default _default;
@@ -9,7 +9,7 @@ type __VLS_Props = {
9
9
  isSortable?: boolean;
10
10
  hasHeaderFilter?: boolean;
11
11
  icon?: FontAwesomeIconProps['icon'];
12
- isSorted: false | SortDirections;
12
+ sort?: SortDirections;
13
13
  hasActiveFilter: boolean;
14
14
  };
15
15
  declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
@@ -1,5 +1,5 @@
1
1
  import { type SortDirections } from './uiTable.const';
2
- import { type Field } from '@/index';
2
+ import { type Field } from '@/components/table/uiTable.types';
3
3
  type __VLS_Props = {
4
4
  fields: Field[];
5
5
  mode: 'divider-only' | 'in-container';
@@ -2,7 +2,7 @@ type __VLS_Props = {
2
2
  value: unknown;
3
3
  };
4
4
  type __VLS_ModelProps = {
5
- modelValue?: 'all' | unknown[];
5
+ modelValue: 'all' | unknown[];
6
6
  };
7
7
  type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
8
8
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -11,6 +11,8 @@ type __VLS_Props = {
11
11
  getRowStyle?: (item: Record<string, unknown>) => StyleValue;
12
12
  isLoading?: boolean;
13
13
  showSelection?: boolean;
14
+ showLoadMore?: boolean;
15
+ loadMoreIntersectionMargin?: string;
14
16
  };
15
17
  type __VLS_Slots = {
16
18
  headerFilterOverlay?(props: {
@@ -65,10 +67,11 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
65
67
  field: string;
66
68
  direction: SortDirections;
67
69
  } | null) => any;
68
- "update:activeRow": (value: number) => any;
69
- } & {
70
70
  rowClick: (payload: RowClickPayload) => any;
71
71
  rowDblclick: (payload: RowClickPayload) => any;
72
+ loadMore: (args_0: void) => any;
73
+ rowFocus: (payload: RowClickPayload<FocusEvent>) => any;
74
+ "update:activeRow": (value: number) => any;
72
75
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
73
76
  "onUpdate:selection"?: ((value: unknown[] | "all") => any) | undefined;
74
77
  "onUpdate:sort"?: ((value: {
@@ -77,8 +80,17 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
77
80
  } | null) => any) | undefined;
78
81
  onRowClick?: ((payload: RowClickPayload) => any) | undefined;
79
82
  onRowDblclick?: ((payload: RowClickPayload) => any) | undefined;
83
+ onLoadMore?: ((args_0?: void | undefined) => any) | undefined;
84
+ onRowFocus?: ((payload: RowClickPayload<FocusEvent>) => any) | undefined;
80
85
  "onUpdate:activeRow"?: ((value: number) => any) | undefined;
81
- }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
86
+ }>, {
87
+ showSelection: boolean;
88
+ getRowClass: (item: Record<string, unknown>) => ClassValue;
89
+ getRowStyle: (item: Record<string, unknown>) => StyleValue;
90
+ isLoading: boolean;
91
+ showLoadMore: boolean;
92
+ loadMoreIntersectionMargin: string;
93
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
82
94
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
83
95
  declare const _default: typeof __VLS_export;
84
96
  export default _default;
@@ -15,13 +15,13 @@ type __VLS_Slots = {
15
15
  major?(): VNode;
16
16
  };
17
17
  type __VLS_ModelProps = {
18
- 'selection'?: unknown[] | 'all';
18
+ 'selection': unknown[] | 'all';
19
19
  };
20
20
  type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
21
21
  declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
22
- "update:selection": (value: unknown[] | "all" | undefined) => any;
22
+ "update:selection": (value: unknown[] | "all") => any;
23
23
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
24
- "onUpdate:selection"?: ((value: unknown[] | "all" | undefined) => any) | undefined;
24
+ "onUpdate:selection"?: ((value: unknown[] | "all") => any) | undefined;
25
25
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
26
26
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
27
27
  declare const _default: typeof __VLS_export;
@@ -15,8 +15,8 @@ export type Field = {
15
15
  cellComponent?: Component;
16
16
  filterComponent?: Component;
17
17
  };
18
- export type RowClickPayload = {
19
- originalEvent: MouseEvent | KeyboardEvent;
18
+ export type RowClickPayload<T extends Event = MouseEvent | KeyboardEvent> = {
19
+ originalEvent: T;
20
20
  data: Record<string, unknown>;
21
21
  index: number;
22
22
  };
@@ -1,12 +1,11 @@
1
- import { type Ref, type TemplateRef } from 'vue';
1
+ import { type Ref, type TemplateRef, type MaybeRef } from 'vue';
2
2
  import type { Field } from './uiTable.types';
3
3
  export declare function useHeaderFilter(filterOverlayRef: TemplateRef<HTMLDivElement>): {
4
4
  headerFilterOverlayActive: Ref<string | false, string | false>;
5
5
  handleOnClose: () => void;
6
6
  openFilterOverlay: (field: string, e: Event) => void;
7
7
  };
8
- export declare function useTableColumnWidth(wrapperRef: TemplateRef<HTMLDivElement>, fields: Ref<Field[]>): {
9
- defaultColWidth: import("vue").ComputedRef<number>;
8
+ export declare function useTableColumnWidth(fields: Ref<Field[]>): {
10
9
  colWidth: Record<string, number>;
11
10
  resize: (fieldName: string, width: number) => void;
12
11
  getColumnWidth: (fieldName: string) => {
@@ -16,6 +15,6 @@ export declare function useTableColumnWidth(wrapperRef: TemplateRef<HTMLDivEleme
16
15
  };
17
16
  handleMousedown: (event: MouseEvent, fieldName: string) => void;
18
17
  };
19
- export declare function useTableKeyboardMovement(rowsRefs: TemplateRef<HTMLDivElement[]>, activeRow: Ref<number>): {
18
+ export declare function useTableKeyboardMovement(itemsCount: MaybeRef<number>, activeRow: Ref<number>): {
20
19
  handleUpAndDownMovement: (e: KeyboardEvent) => void;
21
20
  };
@@ -14,8 +14,8 @@ type __VLS_Slots = {} & {
14
14
  };
15
15
  declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
16
16
  label: string;
17
- icon: FontAwesomeIconProps["icon"];
18
17
  size: TagSizes;
18
+ icon: FontAwesomeIconProps["icon"];
19
19
  actionIcon: boolean;
20
20
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
21
21
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
@@ -1,16 +1,19 @@
1
+ import { type MaybeRef } from 'vue';
1
2
  import { type PrimeVueConfiguration } from 'primevue/config';
2
3
  type PluginOptions = {
3
4
  registerTooltip?: boolean;
4
5
  /** @deprecated overflow-tooltip and tooltip directives were merged into one */
5
6
  registerOverflowTooltip?: boolean;
6
7
  locale?: {
7
- copied?: string;
8
- mandatory?: string;
9
- expand?: string;
10
- collapse?: string;
11
- tableCheckFiltered?: string;
12
- tableCheckAll?: string;
13
- tableCheckReset?: string;
8
+ ok?: MaybeRef<string>;
9
+ cancel?: MaybeRef<string>;
10
+ copied?: MaybeRef<string>;
11
+ mandatory?: MaybeRef<string>;
12
+ expand?: MaybeRef<string>;
13
+ collapse?: MaybeRef<string>;
14
+ tableCheckFiltered?: MaybeRef<string>;
15
+ tableCheckAll?: MaybeRef<string>;
16
+ tableCheckReset?: MaybeRef<string>;
14
17
  };
15
18
  primevue?: PrimeVueConfiguration;
16
19
  };
@@ -35,9 +35,13 @@ import type { Field, RowClickPayload, FilterComponentProps, CellComponentProps }
35
35
  import { Tooltip } from './directives/tooltip';
36
36
  import UILabelValueList from '@/components/labelValueList/UILabelValueList.vue';
37
37
  import UILabelValue from '@/components/labelValueList/UILabelValue.vue';
38
+ import UILabelSubValueList from '@/components/labelValueList/UILabelSubValueList.vue';
39
+ import UILabelSubValue from '@/components/labelValueList/UILabelSubValue.vue';
38
40
  import UIMenu from '@/components/menu/UIMenu.vue';
39
41
  import UITabButtons from '@/components/tabButton/UITabButtons.vue';
40
42
  import UISearchBar from './components/searchBar/UISearchBar.vue';
43
+ import UISlider from './components/slider/UISlider.vue';
44
+ import UIDatePicker from '@/components/datePicker/UIDatePicker.vue';
41
45
  export { ACBSPlugin, useACBSConfig, UIButton, UINavbar, UITag, UIBadge, UICopy, UITabs, UIIconButton, UIToggleButton, UIRadioButton, UICheckbox, UIInputChip, UIFilterChip, UITextField, UITextArea, UIRichTooltip, UISnackbar, UIListItem, UIList, UIContextPanel, UIToolbar, UILanguagePicker, UIDivider, UISwitch, UIDropdown, UIInfoStrip, UIInfoStripSecondaryBox, UIPersonList, UIBrandLogo, UIFab, UISegmentedButton, UITable, type Field, type RowClickPayload, type FilterComponentProps, type CellComponentProps, Tooltip,
42
46
  /** @deprecated overflow-tooltip and tooltip directives were merged into one */
43
- Tooltip as OverflowTooltip, UILabelValueList, UILabelValue, UIMenu, UITabButtons, UISearchBar, };
47
+ Tooltip as OverflowTooltip, UILabelValueList, UILabelValue, UILabelSubValueList, UILabelSubValue, UIMenu, UITabButtons, UISearchBar, UISlider, UIDatePicker, };
@@ -0,0 +1 @@
1
+ export declare function safeIndexOutOfBound(array: unknown[], index: number): number;