@coreui/angular-pro 5.4.1 → 5.4.3
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.
- package/README.md +25 -11
- package/fesm2022/coreui-angular-pro.mjs +986 -963
- package/fesm2022/coreui-angular-pro.mjs.map +1 -1
- package/lib/calendar/calendar/calendar.component.d.ts +0 -1
- package/lib/date-range-picker/date-range-picker/date-range-picker.component.d.ts +46 -37
- package/lib/smart-table/smart-table-head/smart-table-head.component.d.ts +1 -1
- package/package.json +9 -9
|
@@ -46,7 +46,6 @@ export declare class CalendarComponent implements OnInit, AfterViewInit {
|
|
|
46
46
|
*/
|
|
47
47
|
readonly endDateModel: import("@angular/core").ModelSignal<string | number | Date | null>;
|
|
48
48
|
readonly endDate: import("@angular/core").Signal<Date | null>;
|
|
49
|
-
readonly datesEffect: import("@angular/core").EffectRef;
|
|
50
49
|
/**
|
|
51
50
|
* Sets the day of start week.
|
|
52
51
|
* - 0 - Sunday,
|
|
@@ -15,24 +15,24 @@ export declare class DateRangePickerComponent implements OnInit, OnDestroy, Cont
|
|
|
15
15
|
/**
|
|
16
16
|
* Set the format of day name.
|
|
17
17
|
* @default 'numeric'
|
|
18
|
-
* @
|
|
18
|
+
* @return DayFormatType
|
|
19
19
|
*/
|
|
20
20
|
readonly dayFormat: import("@angular/core").InputSignal<DayFormatType>;
|
|
21
21
|
/**
|
|
22
22
|
* The number of calendars that render on desktop devices.
|
|
23
|
-
* @
|
|
23
|
+
* @return number
|
|
24
24
|
* @default 2
|
|
25
25
|
*/
|
|
26
26
|
readonly calendars: import("@angular/core").InputSignalWithTransform<number, unknown>;
|
|
27
27
|
/**
|
|
28
28
|
* Toggle visibility or set the content of the cleaner button.
|
|
29
|
-
* @
|
|
29
|
+
* @return boolean
|
|
30
30
|
* @default true
|
|
31
31
|
*/
|
|
32
32
|
readonly cleaner: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
33
33
|
/**
|
|
34
34
|
* Determine if the dropdown should be closed after value setting.
|
|
35
|
-
* @
|
|
35
|
+
* @return boolean
|
|
36
36
|
* @default false
|
|
37
37
|
*/
|
|
38
38
|
readonly closeOnSelect: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
@@ -45,7 +45,7 @@ export declare class DateRangePickerComponent implements OnInit, OnDestroy, Cont
|
|
|
45
45
|
readonly format: import("@angular/core").InputSignal<string | undefined>;
|
|
46
46
|
/**
|
|
47
47
|
* Toggle visibility or set the content of the input indicator.
|
|
48
|
-
* @
|
|
48
|
+
* @return boolean
|
|
49
49
|
* @default true
|
|
50
50
|
*/
|
|
51
51
|
readonly indicator: import("@angular/core").InputSignal<boolean>;
|
|
@@ -61,14 +61,14 @@ export declare class DateRangePickerComponent implements OnInit, OnDestroy, Cont
|
|
|
61
61
|
readonly inputDateParse: import("@angular/core").InputSignal<((date: string | Date) => Date) | undefined>;
|
|
62
62
|
/**
|
|
63
63
|
* Toggle the readonly state for the component.
|
|
64
|
-
* @
|
|
64
|
+
* @return boolean
|
|
65
65
|
* @default false
|
|
66
66
|
*/
|
|
67
67
|
readonly inputReadOnlyInput: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
68
68
|
readonly inputReadOnly: import("@angular/core").Signal<boolean>;
|
|
69
69
|
/**
|
|
70
70
|
* Reorder year-month navigation, and render year first.
|
|
71
|
-
* @
|
|
71
|
+
* @return boolean
|
|
72
72
|
* @default false
|
|
73
73
|
*/
|
|
74
74
|
readonly navYearFirst: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
@@ -79,70 +79,69 @@ export declare class DateRangePickerComponent implements OnInit, OnDestroy, Cont
|
|
|
79
79
|
readonly placeholder: import("@angular/core").InputSignal<string | string[]>;
|
|
80
80
|
/**
|
|
81
81
|
* Predefined date ranges the user can select from.
|
|
82
|
-
* @
|
|
82
|
+
* @return ICalendarRanges
|
|
83
83
|
*/
|
|
84
84
|
readonly ranges: import("@angular/core").InputSignal<ICalendarRanges | undefined>;
|
|
85
85
|
/**
|
|
86
86
|
* Sets the color context of the cancel button to one of CoreUI’s themed colors.
|
|
87
|
-
* @
|
|
87
|
+
* @return 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light' | string
|
|
88
88
|
* @default 'secondary'
|
|
89
89
|
*/
|
|
90
90
|
readonly rangesButtonsColor: import("@angular/core").InputSignal<string>;
|
|
91
91
|
/**
|
|
92
92
|
* Size the ranges button small or large.
|
|
93
|
-
* @
|
|
93
|
+
* @return 'sm' | 'lg' | ''
|
|
94
94
|
*/
|
|
95
95
|
readonly rangesButtonsSize: import("@angular/core").InputSignal<"" | "sm" | "lg">;
|
|
96
96
|
/**
|
|
97
97
|
* Set the ranges button variant to an outlined button or a ghost button.
|
|
98
|
-
* @
|
|
98
|
+
* @return 'outline' | 'ghost' | undefined
|
|
99
99
|
*/
|
|
100
100
|
readonly rangesButtonsVariant: import("@angular/core").InputSignal<"ghost" | "outline">;
|
|
101
101
|
/**
|
|
102
102
|
* Default icon or character that separates two dates.
|
|
103
|
-
* @
|
|
103
|
+
* @return boolean
|
|
104
104
|
* @default true
|
|
105
105
|
*/
|
|
106
106
|
readonly separator: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
107
107
|
/**
|
|
108
108
|
* Size the component small or large.
|
|
109
|
-
* @
|
|
109
|
+
* @return 'sm' | 'lg' | undefined
|
|
110
110
|
* @default undefined
|
|
111
111
|
*/
|
|
112
112
|
readonly size: import("@angular/core").InputSignal<"sm" | "lg" | undefined>;
|
|
113
113
|
/**
|
|
114
114
|
* Provide an additional time selection by adding select boxes to choose time.
|
|
115
|
-
* @
|
|
115
|
+
* @return boolean
|
|
116
116
|
* @default false
|
|
117
117
|
*/
|
|
118
118
|
readonly timepickerInput: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
119
119
|
get timepicker(): boolean;
|
|
120
120
|
/**
|
|
121
121
|
* Toggle visual validation feedback.
|
|
122
|
-
* @
|
|
122
|
+
* @return boolean | undefined
|
|
123
123
|
* @default undefined
|
|
124
124
|
*/
|
|
125
125
|
readonly valid: import("@angular/core").InputSignal<boolean | undefined>;
|
|
126
126
|
/**
|
|
127
127
|
* Toggle the visibility of the dropdown date-picker component.
|
|
128
|
-
* @
|
|
128
|
+
* @return boolean
|
|
129
129
|
* @default false
|
|
130
130
|
*/
|
|
131
131
|
readonly visibleInput: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
132
|
-
readonly visibleInputEffect: import("@angular/core").EffectRef;
|
|
133
132
|
readonly visible: import("@angular/core").WritableSignal<boolean>;
|
|
134
133
|
readonly startDateModel: import("@angular/core").ModelSignal<Date | null>;
|
|
135
|
-
readonly dateModelEffect: import("@angular/core").EffectRef;
|
|
136
134
|
readonly startDate: import("@angular/core").Signal<Date | null>;
|
|
137
135
|
readonly startDateChange: import("rxjs").Observable<Date | null>;
|
|
138
136
|
readonly endDateModel: import("@angular/core").ModelSignal<Date | null>;
|
|
139
137
|
readonly endDate: import("@angular/core").Signal<Date | null>;
|
|
140
138
|
readonly endDateChange: import("rxjs").Observable<Date | null>;
|
|
141
|
-
|
|
139
|
+
readonly calendarDateInput: import("@angular/core").InputSignalWithTransform<Date, number | Date>;
|
|
140
|
+
readonly calendarDate: import("@angular/core").WritableSignal<Date>;
|
|
142
141
|
readonly disabledDates: import("@angular/core").InputSignal<(Date | Date[])[]>;
|
|
143
142
|
/**
|
|
144
143
|
* Set first day of week.
|
|
145
|
-
* @
|
|
144
|
+
* @return DaysOfWeek
|
|
146
145
|
* @default 1 (Monday)
|
|
147
146
|
*/
|
|
148
147
|
readonly firstDayOfWeek: import("@angular/core").InputSignal<DaysOfWeek>;
|
|
@@ -151,71 +150,82 @@ export declare class DateRangePickerComponent implements OnInit, OnDestroy, Cont
|
|
|
151
150
|
readonly minDate: import("@angular/core").InputSignal<Date | null>;
|
|
152
151
|
/**
|
|
153
152
|
* Show calendar navigation.
|
|
154
|
-
* @
|
|
153
|
+
* @return boolean
|
|
155
154
|
* @default true
|
|
156
155
|
*/
|
|
157
156
|
readonly navigation: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
158
157
|
/**
|
|
159
158
|
* Allow range selection.
|
|
160
|
-
* @
|
|
159
|
+
* @return boolean
|
|
161
160
|
* @default true
|
|
162
161
|
*/
|
|
163
162
|
readonly rangeInput: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
164
163
|
readonly range: import("@angular/core").Signal<boolean>;
|
|
165
164
|
readonly dateFilter: import("@angular/core").InputSignal<DateFilterType | undefined>;
|
|
166
165
|
readonly disabledInput: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
167
|
-
readonly disabledEffect: import("@angular/core").EffectRef;
|
|
168
166
|
readonly disabled: import("@angular/core").Signal<boolean>;
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
167
|
+
readonly valueModel: import("@angular/core").ModelSignal<Date | {
|
|
168
|
+
startDate?: Date | null;
|
|
169
|
+
endDate?: Date | null;
|
|
170
|
+
} | null>;
|
|
171
|
+
set value(value: {
|
|
172
|
+
startDate: Date | null;
|
|
173
|
+
endDate: Date | null;
|
|
174
|
+
});
|
|
175
|
+
get value(): Date | {
|
|
176
|
+
startDate: Date | null;
|
|
177
|
+
endDate: Date | null;
|
|
178
|
+
} | null;
|
|
172
179
|
/**
|
|
173
180
|
* Set length or format of day name.
|
|
174
|
-
* @
|
|
181
|
+
* @return WeekdayFormatType
|
|
175
182
|
* @default 'short'
|
|
176
183
|
*/
|
|
177
184
|
readonly weekdayFormat: import("@angular/core").InputSignal<WeekdayFormatType>;
|
|
178
185
|
/**
|
|
179
186
|
* Optional popper Options object
|
|
180
|
-
* @
|
|
187
|
+
* @return Partial<Options>
|
|
181
188
|
*/
|
|
182
189
|
readonly popperjsOptions: import("@angular/core").InputSignal<Partial<Options>>;
|
|
183
190
|
/**
|
|
184
191
|
* Set whether days in adjacent months shown before or after the current month are selectable. This only applies if the `showAdjacentDays` option is set to true.
|
|
185
|
-
* @
|
|
192
|
+
* @return boolean
|
|
186
193
|
* @default false
|
|
187
194
|
* @since 4.4.10
|
|
188
195
|
*/
|
|
189
196
|
readonly selectAdjacentDays: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
190
197
|
/**
|
|
191
198
|
* Set whether to display dates in adjacent months (non-selectable) at the start and end of the current month.
|
|
192
|
-
* @
|
|
199
|
+
* @return boolean
|
|
193
200
|
* @default true
|
|
194
201
|
* @since 4.4.10
|
|
195
202
|
*/
|
|
196
203
|
readonly showAdjacentDays: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
197
204
|
/**
|
|
198
205
|
* Specify the type of date selection as day, week, month, or year.
|
|
199
|
-
* @
|
|
206
|
+
* @return 'day' | 'week' | 'month' | 'year'
|
|
200
207
|
* @default 'day'
|
|
201
208
|
* @since 5.0.0
|
|
202
209
|
*/
|
|
203
210
|
readonly selectionType: import("@angular/core").InputSignal<SelectionType>;
|
|
204
211
|
/**
|
|
205
212
|
* Set whether to display week numbers in the calendar.
|
|
206
|
-
* @
|
|
213
|
+
* @return boolean
|
|
207
214
|
* @default false
|
|
208
215
|
* @since 5.0.0
|
|
209
216
|
*/
|
|
210
217
|
readonly showWeekNumber: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
211
218
|
/**
|
|
212
219
|
* Label displayed over week numbers in the calendar.
|
|
213
|
-
* @
|
|
220
|
+
* @return string
|
|
214
221
|
* @default undefined
|
|
215
222
|
* @since 5.0.0
|
|
216
223
|
*/
|
|
217
224
|
readonly weekNumbersLabel: import("@angular/core").InputSignal<string | undefined>;
|
|
218
|
-
readonly valueChange: import("@angular/core").OutputEmitterRef<Date |
|
|
225
|
+
readonly valueChange: import("@angular/core").OutputEmitterRef<Date | {
|
|
226
|
+
startDate?: Date | null;
|
|
227
|
+
endDate?: Date | null;
|
|
228
|
+
} | null | undefined>;
|
|
219
229
|
readonly calendarCellHover: import("@angular/core").OutputEmitterRef<Date | null>;
|
|
220
230
|
readonly calendarDateChange: import("@angular/core").OutputEmitterRef<Date>;
|
|
221
231
|
readonly startDateElementRef: import("@angular/core").Signal<ElementRef<HTMLInputElement> | undefined>;
|
|
@@ -235,7 +245,7 @@ export declare class DateRangePickerComponent implements OnInit, OnDestroy, Cont
|
|
|
235
245
|
readonly dateRangeGroup: FormGroup;
|
|
236
246
|
readonly inputStartHoverValue: import("@angular/core").WritableSignal<Date | null>;
|
|
237
247
|
readonly inputEndHoverValue: import("@angular/core").WritableSignal<Date | null>;
|
|
238
|
-
|
|
248
|
+
readonly datePickerClasses: import("@angular/core").Signal<Record<string, boolean>>;
|
|
239
249
|
formatDate(date: Date | null | undefined): string;
|
|
240
250
|
ngOnInit(): void;
|
|
241
251
|
ngOnDestroy(): void;
|
|
@@ -261,6 +271,5 @@ export declare class DateRangePickerComponent implements OnInit, OnDestroy, Cont
|
|
|
261
271
|
handleStartTimeChange(time: Date | undefined): void;
|
|
262
272
|
handleEndTimeChange(time: Date | undefined): void;
|
|
263
273
|
static ɵfac: i0.ɵɵFactoryDeclaration<DateRangePickerComponent, never>;
|
|
264
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DateRangePickerComponent, "c-date-range-picker", ["cDateRangePicker"], { "dayFormat": { "alias": "dayFormat"; "required": false; "isSignal": true; }; "calendars": { "alias": "calendars"; "required": false; "isSignal": true; }; "cleaner": { "alias": "cleaner"; "required": false; "isSignal": true; }; "closeOnSelect": { "alias": "closeOnSelect"; "required": false; "isSignal": true; }; "format": { "alias": "format"; "required": false; "isSignal": true; }; "indicator": { "alias": "indicator"; "required": false; "isSignal": true; }; "inputDateFormat": { "alias": "inputDateFormat"; "required": false; "isSignal": true; }; "inputDateParse": { "alias": "inputDateParse"; "required": false; "isSignal": true; }; "inputReadOnlyInput": { "alias": "inputReadOnly"; "required": false; "isSignal": true; }; "navYearFirst": { "alias": "navYearFirst"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "ranges": { "alias": "ranges"; "required": false; "isSignal": true; }; "rangesButtonsColor": { "alias": "rangesButtonsColor"; "required": false; "isSignal": true; }; "rangesButtonsSize": { "alias": "rangesButtonsSize"; "required": false; "isSignal": true; }; "rangesButtonsVariant": { "alias": "rangesButtonsVariant"; "required": false; "isSignal": true; }; "separator": { "alias": "separator"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "timepickerInput": { "alias": "timepicker"; "required": false; "isSignal": true; }; "valid": { "alias": "valid"; "required": false; "isSignal": true; }; "visibleInput": { "alias": "visibleInput"; "required": false; "isSignal": true; }; "startDateModel": { "alias": "startDate"; "required": false; "isSignal": true; }; "endDateModel": { "alias": "endDate"; "required": false; "isSignal": true; }; "
|
|
265
|
-
static ngAcceptInputType_calendarDate: Date | number;
|
|
274
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DateRangePickerComponent, "c-date-range-picker", ["cDateRangePicker"], { "dayFormat": { "alias": "dayFormat"; "required": false; "isSignal": true; }; "calendars": { "alias": "calendars"; "required": false; "isSignal": true; }; "cleaner": { "alias": "cleaner"; "required": false; "isSignal": true; }; "closeOnSelect": { "alias": "closeOnSelect"; "required": false; "isSignal": true; }; "format": { "alias": "format"; "required": false; "isSignal": true; }; "indicator": { "alias": "indicator"; "required": false; "isSignal": true; }; "inputDateFormat": { "alias": "inputDateFormat"; "required": false; "isSignal": true; }; "inputDateParse": { "alias": "inputDateParse"; "required": false; "isSignal": true; }; "inputReadOnlyInput": { "alias": "inputReadOnly"; "required": false; "isSignal": true; }; "navYearFirst": { "alias": "navYearFirst"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "ranges": { "alias": "ranges"; "required": false; "isSignal": true; }; "rangesButtonsColor": { "alias": "rangesButtonsColor"; "required": false; "isSignal": true; }; "rangesButtonsSize": { "alias": "rangesButtonsSize"; "required": false; "isSignal": true; }; "rangesButtonsVariant": { "alias": "rangesButtonsVariant"; "required": false; "isSignal": true; }; "separator": { "alias": "separator"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "timepickerInput": { "alias": "timepicker"; "required": false; "isSignal": true; }; "valid": { "alias": "valid"; "required": false; "isSignal": true; }; "visibleInput": { "alias": "visibleInput"; "required": false; "isSignal": true; }; "startDateModel": { "alias": "startDate"; "required": false; "isSignal": true; }; "endDateModel": { "alias": "endDate"; "required": false; "isSignal": true; }; "calendarDateInput": { "alias": "calendarDate"; "required": false; "isSignal": true; }; "disabledDates": { "alias": "disabledDates"; "required": false; "isSignal": true; }; "firstDayOfWeek": { "alias": "firstDayOfWeek"; "required": false; "isSignal": true; }; "locale": { "alias": "locale"; "required": false; "isSignal": true; }; "maxDate": { "alias": "maxDate"; "required": false; "isSignal": true; }; "minDate": { "alias": "minDate"; "required": false; "isSignal": true; }; "navigation": { "alias": "navigation"; "required": false; "isSignal": true; }; "rangeInput": { "alias": "range"; "required": false; "isSignal": true; }; "dateFilter": { "alias": "dateFilter"; "required": false; "isSignal": true; }; "disabledInput": { "alias": "disabled"; "required": false; "isSignal": true; }; "valueModel": { "alias": "value"; "required": false; "isSignal": true; }; "weekdayFormat": { "alias": "weekdayFormat"; "required": false; "isSignal": true; }; "popperjsOptions": { "alias": "popperOptions"; "required": false; "isSignal": true; }; "selectAdjacentDays": { "alias": "selectAdjacentDays"; "required": false; "isSignal": true; }; "showAdjacentDays": { "alias": "showAdjacentDays"; "required": false; "isSignal": true; }; "selectionType": { "alias": "selectionType"; "required": false; "isSignal": true; }; "showWeekNumber": { "alias": "showWeekNumber"; "required": false; "isSignal": true; }; "weekNumbersLabel": { "alias": "weekNumbersLabel"; "required": false; "isSignal": true; }; }, { "startDateModel": "startDateChange"; "endDateModel": "endDateChange"; "valueModel": "valueChange"; "valueChange": "valueChange"; "calendarCellHover": "calendarCellHover"; "calendarDateChange": "calendarDateChange"; }, ["contentTemplates"], ["*"], true, never>;
|
|
266
275
|
}
|
|
@@ -24,7 +24,7 @@ export declare class SmartTableHeadComponent implements OnInit {
|
|
|
24
24
|
readonly selectable: import("@angular/core").InputSignalWithTransform<boolean | undefined, unknown>;
|
|
25
25
|
readonly selectAll: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
26
26
|
set selectedAll(value: boolean | 'indeterminate');
|
|
27
|
-
get selectedAll(): boolean |
|
|
27
|
+
get selectedAll(): boolean | "indeterminate";
|
|
28
28
|
readonly showGroups: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
29
29
|
readonly sorterValue: import("@angular/core").InputSignal<ISorterValue | undefined>;
|
|
30
30
|
set columnFilterTemplates(value: any);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coreui/angular-pro",
|
|
3
|
-
"version": "5.4.
|
|
3
|
+
"version": "5.4.3",
|
|
4
4
|
"description": "CoreUI Pro Components Library for Angular",
|
|
5
5
|
"copyright": "Copyright 2025 creativeLabs Łukasz Holeczek",
|
|
6
6
|
"homepage": "https://coreui.io/angular",
|
|
@@ -22,15 +22,15 @@
|
|
|
22
22
|
},
|
|
23
23
|
"sideEffects": false,
|
|
24
24
|
"peerDependencies": {
|
|
25
|
-
"@angular/animations": "^19.
|
|
26
|
-
"@angular/cdk": "^19.1
|
|
27
|
-
"@angular/common": "^19.
|
|
28
|
-
"@angular/core": "^19.
|
|
29
|
-
"@angular/forms": "^19.
|
|
30
|
-
"@angular/router": "^19.
|
|
25
|
+
"@angular/animations": "^19.2.0",
|
|
26
|
+
"@angular/cdk": "^19.2.1",
|
|
27
|
+
"@angular/common": "^19.2.0",
|
|
28
|
+
"@angular/core": "^19.2.0",
|
|
29
|
+
"@angular/forms": "^19.2.0",
|
|
30
|
+
"@angular/router": "^19.2.0",
|
|
31
31
|
"@coreui/coreui-pro": "~5.10.0",
|
|
32
|
-
"@coreui/icons-angular": "~5.4.
|
|
33
|
-
"rxjs": "^7.8.
|
|
32
|
+
"@coreui/icons-angular": "~5.4.3",
|
|
33
|
+
"rxjs": "^7.8.2"
|
|
34
34
|
},
|
|
35
35
|
"repository": {
|
|
36
36
|
"type": "git",
|