@oub/fusion 0.2.63 → 0.2.65

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 (27) hide show
  1. package/dist/components/common/bars/footer/FusionFooterBar.vue.d.ts +76 -0
  2. package/dist/components/common/bars/subheading-bar/FusionSubheadingBar.vue.d.ts +12 -0
  3. package/dist/components/common/card/FusionCard.vue.d.ts +1 -1
  4. package/dist/components/common/date-picker/FusionDatePicker.vue.d.ts +1 -1
  5. package/dist/components/common/key-value-pair/FusionKeyValuePair.vue.d.ts +41 -0
  6. package/dist/components/common/modal/FusionModal.vue.d.ts +78 -0
  7. package/dist/components/common/modal/modal-footer/FusionModalFooter.vue.d.ts +68 -0
  8. package/dist/components/common/modal/modal-header/FusionModalHeader.vue.d.ts +37 -0
  9. package/dist/components/form/button/FusionButton.vue.d.ts +1 -1
  10. package/dist/components/form/checkbox/FusionCheckbox.vue.d.ts +1 -1
  11. package/dist/components/form/checkbox/FusionCheckboxGroup.vue.d.ts +45 -0
  12. package/dist/components/form/icon-button/FusionIconButton.vue.d.ts +1 -1
  13. package/dist/components/form/input/FusionInput.vue.d.ts +1 -1
  14. package/dist/components/form/password-input/FusionPasswordInput.vue.d.ts +1 -1
  15. package/dist/components/form/phone/FusionPhoneInput.vue.d.ts +1 -1
  16. package/dist/components/form/radio/FusionRadio.vue.d.ts +2 -2
  17. package/dist/components/form/radio/FusionRadioGroup.vue.d.ts +45 -0
  18. package/dist/components/form/searchable-input/FusionSearchableInput.vue.d.ts +1 -1
  19. package/dist/components/form/select/FusionSelect.vue.d.ts +1 -1
  20. package/dist/components/form/textarea/FusionTextarea.vue.d.ts +1 -1
  21. package/dist/components/link/text/FusionTextLink.vue.d.ts +1 -1
  22. package/dist/fusion.js +3853 -3310
  23. package/dist/fusion.umd.cjs +3 -3
  24. package/dist/main.d.ts +8 -2
  25. package/dist/style.css +1 -1
  26. package/package.json +1 -1
  27. /package/dist/components/common/{toolbar → bars/toolbar}/FusionToolBar.vue.d.ts +0 -0
@@ -0,0 +1,76 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ hideCancelButton: {
3
+ type: BooleanConstructor;
4
+ default: boolean;
5
+ };
6
+ hideBackButton: {
7
+ type: BooleanConstructor;
8
+ default: boolean;
9
+ };
10
+ hideConfirmButton: {
11
+ type: BooleanConstructor;
12
+ default: boolean;
13
+ };
14
+ cancelButtonLabel: {
15
+ type: StringConstructor;
16
+ default: string;
17
+ };
18
+ backButtonLabel: {
19
+ type: StringConstructor;
20
+ default: string;
21
+ };
22
+ confirmButtonLabel: {
23
+ type: StringConstructor;
24
+ default: string;
25
+ };
26
+ mobileBreakpoint: {
27
+ type: NumberConstructor;
28
+ default: number;
29
+ };
30
+ }, unknown, {
31
+ isMobile: boolean;
32
+ }, {}, {
33
+ checkMobileView(): void;
34
+ }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("cancel" | "back" | "confirm")[], "cancel" | "back" | "confirm", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
35
+ hideCancelButton: {
36
+ type: BooleanConstructor;
37
+ default: boolean;
38
+ };
39
+ hideBackButton: {
40
+ type: BooleanConstructor;
41
+ default: boolean;
42
+ };
43
+ hideConfirmButton: {
44
+ type: BooleanConstructor;
45
+ default: boolean;
46
+ };
47
+ cancelButtonLabel: {
48
+ type: StringConstructor;
49
+ default: string;
50
+ };
51
+ backButtonLabel: {
52
+ type: StringConstructor;
53
+ default: string;
54
+ };
55
+ confirmButtonLabel: {
56
+ type: StringConstructor;
57
+ default: string;
58
+ };
59
+ mobileBreakpoint: {
60
+ type: NumberConstructor;
61
+ default: number;
62
+ };
63
+ }>> & {
64
+ onCancel?: ((...args: any[]) => any) | undefined;
65
+ onBack?: ((...args: any[]) => any) | undefined;
66
+ onConfirm?: ((...args: any[]) => any) | undefined;
67
+ }, {
68
+ hideCancelButton: boolean;
69
+ hideBackButton: boolean;
70
+ hideConfirmButton: boolean;
71
+ cancelButtonLabel: string;
72
+ backButtonLabel: string;
73
+ confirmButtonLabel: string;
74
+ mobileBreakpoint: number;
75
+ }, {}>;
76
+ export default _default;
@@ -0,0 +1,12 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ label: {
3
+ type: StringConstructor;
4
+ required: true;
5
+ };
6
+ }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
7
+ label: {
8
+ type: StringConstructor;
9
+ required: true;
10
+ };
11
+ }>>, {}, {}>;
12
+ export default _default;
@@ -45,9 +45,9 @@ declare const _default: import("vue").DefineComponent<{
45
45
  }>> & {
46
46
  "onUpdate:selected"?: ((...args: any[]) => any) | undefined;
47
47
  }, {
48
+ disabled: boolean;
48
49
  shadow: boolean;
49
50
  variant: string;
50
- disabled: boolean;
51
51
  selected: boolean;
52
52
  selectable: boolean;
53
53
  }, {}>;
@@ -151,11 +151,11 @@ declare const _default: import("vue").DefineComponent<{
151
151
  }, {
152
152
  dataTest: string;
153
153
  disabled: boolean;
154
+ required: boolean;
154
155
  modelValue: string | Date;
155
156
  placeholder: string;
156
157
  minDate: string;
157
158
  maxDate: string;
158
- required: boolean;
159
159
  format: string;
160
160
  clearable: boolean;
161
161
  autocomplete: string;
@@ -0,0 +1,41 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ keyText: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
6
+ valueText: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ };
10
+ orientation: {
11
+ type: StringConstructor;
12
+ default: string;
13
+ };
14
+ secondaryValueText: {
15
+ type: StringConstructor;
16
+ default: string;
17
+ };
18
+ }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
19
+ keyText: {
20
+ type: StringConstructor;
21
+ default: string;
22
+ };
23
+ valueText: {
24
+ type: StringConstructor;
25
+ default: string;
26
+ };
27
+ orientation: {
28
+ type: StringConstructor;
29
+ default: string;
30
+ };
31
+ secondaryValueText: {
32
+ type: StringConstructor;
33
+ default: string;
34
+ };
35
+ }>>, {
36
+ keyText: string;
37
+ valueText: string;
38
+ orientation: string;
39
+ secondaryValueText: string;
40
+ }, {}>;
41
+ export default _default;
@@ -0,0 +1,78 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ title: {
3
+ type: StringConstructor;
4
+ required: true;
5
+ };
6
+ mobileBreakpoint: {
7
+ type: NumberConstructor;
8
+ default: number;
9
+ };
10
+ cancelButtonLabel: {
11
+ type: StringConstructor;
12
+ default: string;
13
+ };
14
+ confirmButtonLabel: {
15
+ type: StringConstructor;
16
+ default: string;
17
+ };
18
+ hideCancel: {
19
+ type: BooleanConstructor;
20
+ default: boolean;
21
+ };
22
+ hideConfirm: {
23
+ type: BooleanConstructor;
24
+ default: boolean;
25
+ };
26
+ }, unknown, {
27
+ isMobile: boolean;
28
+ headerShadow: boolean;
29
+ footerShadow: boolean;
30
+ contentRef: HTMLElement | null;
31
+ modalDialog: HTMLElement | null;
32
+ modalHeadingId: string;
33
+ previousActiveElement: HTMLElement | null;
34
+ }, {}, {
35
+ closeModal(): void;
36
+ cancelModal(): void;
37
+ confirmModal(): void;
38
+ checkMobileView(): void;
39
+ handleScroll(): void;
40
+ onKeyDown(event: KeyboardEvent): void;
41
+ focusModal(): void;
42
+ }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "cancel" | "confirm")[], "close" | "cancel" | "confirm", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
43
+ title: {
44
+ type: StringConstructor;
45
+ required: true;
46
+ };
47
+ mobileBreakpoint: {
48
+ type: NumberConstructor;
49
+ default: number;
50
+ };
51
+ cancelButtonLabel: {
52
+ type: StringConstructor;
53
+ default: string;
54
+ };
55
+ confirmButtonLabel: {
56
+ type: StringConstructor;
57
+ default: string;
58
+ };
59
+ hideCancel: {
60
+ type: BooleanConstructor;
61
+ default: boolean;
62
+ };
63
+ hideConfirm: {
64
+ type: BooleanConstructor;
65
+ default: boolean;
66
+ };
67
+ }>> & {
68
+ onClose?: ((...args: any[]) => any) | undefined;
69
+ onCancel?: ((...args: any[]) => any) | undefined;
70
+ onConfirm?: ((...args: any[]) => any) | undefined;
71
+ }, {
72
+ cancelButtonLabel: string;
73
+ confirmButtonLabel: string;
74
+ mobileBreakpoint: number;
75
+ hideCancel: boolean;
76
+ hideConfirm: boolean;
77
+ }, {}>;
78
+ export default _default;
@@ -0,0 +1,68 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ hideCancel: {
3
+ type: BooleanConstructor;
4
+ default: boolean;
5
+ };
6
+ hideConfirm: {
7
+ type: BooleanConstructor;
8
+ default: boolean;
9
+ };
10
+ cancelButtonLabel: {
11
+ type: StringConstructor;
12
+ default: string;
13
+ };
14
+ confirmButtonLabel: {
15
+ type: StringConstructor;
16
+ default: string;
17
+ };
18
+ hasShadow: {
19
+ type: BooleanConstructor;
20
+ default: boolean;
21
+ };
22
+ mobileBreakpoint: {
23
+ type: NumberConstructor;
24
+ default: number;
25
+ };
26
+ }, unknown, {
27
+ isMobile: boolean;
28
+ }, {}, {
29
+ handleCancel(): void;
30
+ handleConfirm(): void;
31
+ checkMobileView(): void;
32
+ }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("cancel" | "confirm")[], "cancel" | "confirm", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
33
+ hideCancel: {
34
+ type: BooleanConstructor;
35
+ default: boolean;
36
+ };
37
+ hideConfirm: {
38
+ type: BooleanConstructor;
39
+ default: boolean;
40
+ };
41
+ cancelButtonLabel: {
42
+ type: StringConstructor;
43
+ default: string;
44
+ };
45
+ confirmButtonLabel: {
46
+ type: StringConstructor;
47
+ default: string;
48
+ };
49
+ hasShadow: {
50
+ type: BooleanConstructor;
51
+ default: boolean;
52
+ };
53
+ mobileBreakpoint: {
54
+ type: NumberConstructor;
55
+ default: number;
56
+ };
57
+ }>> & {
58
+ onCancel?: ((...args: any[]) => any) | undefined;
59
+ onConfirm?: ((...args: any[]) => any) | undefined;
60
+ }, {
61
+ cancelButtonLabel: string;
62
+ confirmButtonLabel: string;
63
+ mobileBreakpoint: number;
64
+ hasShadow: boolean;
65
+ hideCancel: boolean;
66
+ hideConfirm: boolean;
67
+ }, {}>;
68
+ export default _default;
@@ -0,0 +1,37 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ title: {
3
+ type: StringConstructor;
4
+ required: true;
5
+ };
6
+ hasShadow: {
7
+ type: BooleanConstructor;
8
+ default: boolean;
9
+ };
10
+ id: {
11
+ type: StringConstructor;
12
+ default: null;
13
+ };
14
+ }, unknown, unknown, {
15
+ headingId(): string;
16
+ }, {
17
+ closeModal(): void;
18
+ }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], "close", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
19
+ title: {
20
+ type: StringConstructor;
21
+ required: true;
22
+ };
23
+ hasShadow: {
24
+ type: BooleanConstructor;
25
+ default: boolean;
26
+ };
27
+ id: {
28
+ type: StringConstructor;
29
+ default: null;
30
+ };
31
+ }>> & {
32
+ onClose?: ((...args: any[]) => any) | undefined;
33
+ }, {
34
+ id: string;
35
+ hasShadow: boolean;
36
+ }, {}>;
37
+ export default _default;
@@ -99,9 +99,9 @@ declare const _default: import("vue").DefineComponent<{
99
99
  variantType: keyof FusionButtonVariantType;
100
100
  dataTest: string;
101
101
  type: "button" | "submit" | "reset" | undefined;
102
- disabled: boolean;
103
102
  variantStyle: keyof FusionButtonVariantStyle;
104
103
  size: keyof FusionButtonSize;
105
104
  loading: boolean;
105
+ disabled: boolean;
106
106
  }, {}>;
107
107
  export default _default;
@@ -111,8 +111,8 @@ declare const _default: import("vue").DefineComponent<{
111
111
  value: string;
112
112
  disabled: boolean;
113
113
  error: boolean;
114
- tabIndex: number;
115
114
  helperText: string;
115
+ tabIndex: number;
116
116
  defaultValue: boolean;
117
117
  focusable: boolean;
118
118
  }, {}>;
@@ -0,0 +1,45 @@
1
+ import type { Checkbox } from '../../../../types/components/FusionCheckbox';
2
+ declare const _default: import("vue").DefineComponent<{
3
+ label: {
4
+ type: StringConstructor;
5
+ default: string;
6
+ };
7
+ helperText: {
8
+ type: StringConstructor;
9
+ default: string;
10
+ };
11
+ errorText: {
12
+ type: StringConstructor;
13
+ default: string;
14
+ };
15
+ checkboxes: {
16
+ type: () => Checkbox[];
17
+ required: true;
18
+ };
19
+ }, unknown, unknown, {}, {
20
+ updateValue(index: number, value: boolean): void;
21
+ }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:checkboxes"[], "update:checkboxes", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
22
+ label: {
23
+ type: StringConstructor;
24
+ default: string;
25
+ };
26
+ helperText: {
27
+ type: StringConstructor;
28
+ default: string;
29
+ };
30
+ errorText: {
31
+ type: StringConstructor;
32
+ default: string;
33
+ };
34
+ checkboxes: {
35
+ type: () => Checkbox[];
36
+ required: true;
37
+ };
38
+ }>> & {
39
+ "onUpdate:checkboxes"?: ((...args: any[]) => any) | undefined;
40
+ }, {
41
+ label: string;
42
+ helperText: string;
43
+ errorText: string;
44
+ }, {}>;
45
+ export default _default;
@@ -87,9 +87,9 @@ declare const _default: import("vue").DefineComponent<{
87
87
  variantType: keyof FusionButtonVariantType;
88
88
  dataTest: string;
89
89
  type: "button" | "submit" | "reset" | undefined;
90
- disabled: boolean;
91
90
  variantStyle: keyof FusionButtonVariantStyle;
92
91
  size: keyof FusionButtonSize;
93
92
  loading: boolean;
93
+ disabled: boolean;
94
94
  }, {}>;
95
95
  export default _default;
@@ -153,9 +153,9 @@ declare const _default: import("vue").DefineComponent<{
153
153
  dataTest: string;
154
154
  type: string;
155
155
  disabled: boolean;
156
+ required: boolean;
156
157
  placeholder: string;
157
158
  readonly: boolean;
158
- required: boolean;
159
159
  autocomplete: string;
160
160
  helperLabel: string;
161
161
  errorLabel: string;
@@ -124,8 +124,8 @@ declare const _default: import("vue").DefineComponent<{
124
124
  input: string;
125
125
  dataTest: string;
126
126
  disabled: boolean;
127
- placeholder: string;
128
127
  required: boolean;
128
+ placeholder: string;
129
129
  autocomplete: string;
130
130
  helperLabel: string;
131
131
  errorLabel: string;
@@ -175,9 +175,9 @@ declare const _default: import("vue").DefineComponent<{
175
175
  id: string;
176
176
  dataTest: string;
177
177
  disabled: boolean;
178
+ required: boolean;
178
179
  placeholder: string;
179
180
  readonly: boolean;
180
- required: boolean;
181
181
  autocomplete: string;
182
182
  helperLabel: string;
183
183
  errorLabel: string;
@@ -99,9 +99,9 @@ declare const _default: import("vue").DefineComponent<{
99
99
  }, {
100
100
  dataTest: string;
101
101
  disabled: boolean;
102
- modelValue: string;
103
102
  required: boolean;
104
- helperLabel: string;
105
103
  error: boolean;
104
+ modelValue: string;
105
+ helperLabel: string;
106
106
  }, {}>;
107
107
  export default _default;
@@ -0,0 +1,45 @@
1
+ import type { Radio } from '../../../../types/components/FusionRadio';
2
+ declare const _default: import("vue").DefineComponent<{
3
+ label: {
4
+ type: StringConstructor;
5
+ default: string;
6
+ };
7
+ helperText: {
8
+ type: StringConstructor;
9
+ default: string;
10
+ };
11
+ errorText: {
12
+ type: StringConstructor;
13
+ default: string;
14
+ };
15
+ radios: {
16
+ type: () => Radio[];
17
+ required: true;
18
+ };
19
+ }, unknown, unknown, {}, {
20
+ updateValue(index: number, value: string): void;
21
+ }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:radios"[], "update:radios", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
22
+ label: {
23
+ type: StringConstructor;
24
+ default: string;
25
+ };
26
+ helperText: {
27
+ type: StringConstructor;
28
+ default: string;
29
+ };
30
+ errorText: {
31
+ type: StringConstructor;
32
+ default: string;
33
+ };
34
+ radios: {
35
+ type: () => Radio[];
36
+ required: true;
37
+ };
38
+ }>> & {
39
+ "onUpdate:radios"?: ((...args: any[]) => any) | undefined;
40
+ }, {
41
+ label: string;
42
+ helperText: string;
43
+ errorText: string;
44
+ }, {}>;
45
+ export default _default;
@@ -227,11 +227,11 @@ declare const _default: import("vue").DefineComponent<{
227
227
  title: string;
228
228
  dataTest: string;
229
229
  disabled: boolean;
230
+ required: boolean;
230
231
  searchText: string;
231
232
  modelValue: FusionSelectOption;
232
233
  placeholder: string;
233
234
  readonly: boolean;
234
- required: boolean;
235
235
  autocomplete: string;
236
236
  helperLabel: string;
237
237
  errorLabel: string;
@@ -224,11 +224,11 @@ declare const _default: import("vue").DefineComponent<{
224
224
  title: string;
225
225
  dataTest: string;
226
226
  disabled: boolean;
227
+ required: boolean;
227
228
  searchText: string;
228
229
  modelValue: FusionSelectOption;
229
230
  placeholder: string;
230
231
  readonly: boolean;
231
- required: boolean;
232
232
  autocomplete: string;
233
233
  helperLabel: string;
234
234
  errorLabel: string;
@@ -164,10 +164,10 @@ declare const _default: import("vue").DefineComponent<{
164
164
  }, {
165
165
  dataTest: string;
166
166
  disabled: boolean;
167
+ required: boolean;
167
168
  modelValue: string;
168
169
  placeholder: string;
169
170
  readonly: boolean;
170
- required: boolean;
171
171
  autocomplete: string;
172
172
  helperLabel: string;
173
173
  errorLabel: string;
@@ -113,9 +113,9 @@ declare const _default: import("vue").DefineComponent<{
113
113
  variantType: keyof VariantTypes;
114
114
  dataTest: string;
115
115
  target: string;
116
+ size: keyof Sizes;
116
117
  disabled: boolean;
117
118
  href: string;
118
- size: keyof Sizes;
119
119
  tabIndex: string;
120
120
  iconPlacement: keyof FusionTextLinkIconPlacement;
121
121
  elementType: FusionTextLinkElement;