@progressio_resources/gravity-design-system 3.0.40 → 3.0.42
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/esm2022/lib/components/gravity-calendar-next/components/days-calendar/days-calendar.component.mjs +212 -0
- package/esm2022/lib/components/gravity-calendar-next/gravity-calendar-next.component.mjs +52 -0
- package/esm2022/lib/components/gravity-calendar-next/shared/calendar.constants.mjs +13 -0
- package/esm2022/lib/components/gravity-calendar-next/shared/calendar.modal.mjs +2 -0
- package/esm2022/lib/components/gravity-calendar-v2/gravity-calendar-v2.component.mjs +1 -1
- package/esm2022/lib/components/gravity-dropdown-label/gravity-dropdown-label.component.mjs +5 -3
- package/esm2022/lib/components/gravity-dropdown-list/gravity-dropdown-list.component.mjs +34 -41
- package/esm2022/lib/gravity-design-system.module.mjs +12 -4
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/progressio_resources-gravity-design-system.mjs +313 -47
- package/fesm2022/progressio_resources-gravity-design-system.mjs.map +1 -1
- package/lib/components/gravity-calendar-next/components/days-calendar/days-calendar.component.d.ts +43 -0
- package/lib/components/gravity-calendar-next/gravity-calendar-next.component.d.ts +18 -0
- package/lib/components/gravity-calendar-next/shared/calendar.constants.d.ts +14 -0
- package/lib/components/gravity-calendar-next/shared/calendar.modal.d.ts +7 -0
- package/lib/components/gravity-dropdown-label/gravity-dropdown-label.component.d.ts +2 -1
- package/lib/components/gravity-dropdown-list/gravity-dropdown-list.component.d.ts +4 -1
- package/lib/gravity-design-system.module.d.ts +11 -9
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/src/lib/assets/icon-set/gt-icon-double-check/gt-icon-double-check-lg-24.svg +3 -0
- package/src/lib/assets/icon-set/gt-icon-double-check/gt-icon-double-check-md-16.svg +10 -0
- package/src/lib/assets/icon-set/gt-icon-double-check/gt-icon-double-check-sm-12.svg +10 -0
- package/src/lib/assets/icon-set/gt-icon-double-check/gt-icon-double-check-xl-32.svg +10 -0
- package/src/lib/assets/icon-set/gt-icon-published/gt-icon-published-lg-24.svg +10 -0
- package/src/lib/assets/icon-set/gt-icon-published/gt-icon-published-md-16.svg +10 -0
- package/src/lib/assets/icon-set/gt-icon-published/gt-icon-published-sm-12.svg +10 -0
- package/src/lib/assets/icon-set/gt-icon-published/gt-icon-published-xl-32.svg +10 -0
- package/src/lib/assets/json/icons.json +32 -0
package/lib/components/gravity-calendar-next/components/days-calendar/days-calendar.component.d.ts
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { CalendarDay } from "../../shared/calendar.modal";
|
|
2
|
+
import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DaysCalendarComponent implements OnChanges {
|
|
5
|
+
preSelectedDate: Date;
|
|
6
|
+
range: boolean;
|
|
7
|
+
disabled: boolean;
|
|
8
|
+
language: 'es' | 'en';
|
|
9
|
+
actionsSection: boolean;
|
|
10
|
+
navType: 'prev' | 'next' | 'both';
|
|
11
|
+
clearAction: EventEmitter<void>;
|
|
12
|
+
applyAction: EventEmitter<Date[] | Date>;
|
|
13
|
+
calendarResponse: EventEmitter<Date[] | Date>;
|
|
14
|
+
currentDate: Date;
|
|
15
|
+
hoveredDay: CalendarDay | null;
|
|
16
|
+
selectedDay: CalendarDay | null;
|
|
17
|
+
selectedRangeEnd: CalendarDay | null;
|
|
18
|
+
selectedRangeStart: CalendarDay | null;
|
|
19
|
+
get i18n(): {
|
|
20
|
+
readonly apply: "Apply";
|
|
21
|
+
readonly clear: "Clear selection";
|
|
22
|
+
} | {
|
|
23
|
+
readonly apply: "Aplicar";
|
|
24
|
+
readonly clear: "Limpiar selección";
|
|
25
|
+
};
|
|
26
|
+
get daysList(): string[];
|
|
27
|
+
get monthsList(): string[];
|
|
28
|
+
trackByWeek(index: number, _: any): number;
|
|
29
|
+
trackByDay(_: number, day: CalendarDay): string;
|
|
30
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
31
|
+
applySelectedDate(): void;
|
|
32
|
+
isDateSelected(): true | CalendarDay;
|
|
33
|
+
clearSelectedDate(): void;
|
|
34
|
+
isPreview(day: CalendarDay): boolean;
|
|
35
|
+
onHoverDay(day: CalendarDay): void;
|
|
36
|
+
clearHover(): void;
|
|
37
|
+
getDaySelectionClass(day: CalendarDay): string;
|
|
38
|
+
onSelectDay(day: CalendarDay): void;
|
|
39
|
+
changeMonth(offset: number): void;
|
|
40
|
+
getMonthGrid(): CalendarDay[][];
|
|
41
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DaysCalendarComponent, never>;
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DaysCalendarComponent, "days-calendar", never, { "preSelectedDate": { "alias": "preSelectedDate"; "required": false; }; "range": { "alias": "range"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "language": { "alias": "language"; "required": false; }; "actionsSection": { "alias": "actionsSection"; "required": false; }; "navType": { "alias": "navType"; "required": false; }; }, { "clearAction": "clearAction"; "applyAction": "applyAction"; "calendarResponse": "response"; }, never, never, false, never>;
|
|
43
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class GravityCalendarNextComponent {
|
|
4
|
+
selectedDate: Date[] | Date;
|
|
5
|
+
dual: boolean;
|
|
6
|
+
range: boolean;
|
|
7
|
+
language: 'es' | 'en';
|
|
8
|
+
preSelectedDate: Date | null;
|
|
9
|
+
state: 'active' | 'hidden' | 'disabled';
|
|
10
|
+
clearEvent: EventEmitter<void>;
|
|
11
|
+
applyEvent: EventEmitter<Date | Date[]>;
|
|
12
|
+
calendarResponse: EventEmitter<Date[] | Date>;
|
|
13
|
+
handleClear(): void;
|
|
14
|
+
handleApply(value: Date[] | Date): void;
|
|
15
|
+
handleCalendarResponse(value: Date[] | Date): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GravityCalendarNextComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GravityCalendarNextComponent, "gravity-calendar-next", never, { "dual": { "alias": "dual"; "required": false; }; "range": { "alias": "range"; "required": false; }; "language": { "alias": "language"; "required": false; }; "preSelectedDate": { "alias": "preSelectedDate"; "required": false; }; "state": { "alias": "state"; "required": false; }; }, { "clearEvent": "clear"; "applyEvent": "apply"; "calendarResponse": "response"; }, never, never, false, never>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare const DAYS_ES: string[];
|
|
2
|
+
export declare const DAYS_EN: string[];
|
|
3
|
+
export declare const MONTHS_ES: string[];
|
|
4
|
+
export declare const MONTHS_EN: string[];
|
|
5
|
+
export declare const CALENDAR_I18N: {
|
|
6
|
+
readonly en: {
|
|
7
|
+
readonly apply: "Apply";
|
|
8
|
+
readonly clear: "Clear selection";
|
|
9
|
+
};
|
|
10
|
+
readonly es: {
|
|
11
|
+
readonly apply: "Aplicar";
|
|
12
|
+
readonly clear: "Limpiar selección";
|
|
13
|
+
};
|
|
14
|
+
};
|
|
@@ -2,6 +2,7 @@ import { EventEmitter } from '@angular/core';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class GravityDropdownLabelComponent {
|
|
4
4
|
label: string;
|
|
5
|
+
fontClass: string;
|
|
5
6
|
isOpen: boolean;
|
|
6
7
|
stopPropagation: boolean;
|
|
7
8
|
size: 'sm' | 'md' | 'lg';
|
|
@@ -13,5 +14,5 @@ export declare class GravityDropdownLabelComponent {
|
|
|
13
14
|
oldIconsSize: "lg-24" | "md-16";
|
|
14
15
|
};
|
|
15
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<GravityDropdownLabelComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GravityDropdownLabelComponent, "gravity-dropdown-label", never, { "label": { "alias": "label"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "stopPropagation": { "alias": "stopPropagation"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "onClickLabel": "onClickLabel"; }, never, never, false, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GravityDropdownLabelComponent, "gravity-dropdown-label", never, { "label": { "alias": "label"; "required": false; }; "fontClass": { "alias": "fontClass"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "stopPropagation": { "alias": "stopPropagation"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "onClickLabel": "onClickLabel"; }, never, never, false, never>;
|
|
17
18
|
}
|
|
@@ -4,6 +4,9 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
export declare class GravityDropdownListComponent implements OnChanges {
|
|
5
5
|
private readonly filterByPipe;
|
|
6
6
|
private _eref;
|
|
7
|
+
get dropdownState(): boolean;
|
|
8
|
+
set dropdownState(value: boolean);
|
|
9
|
+
dropdownStateChange: EventEmitter<boolean>;
|
|
7
10
|
selectedItemsResponse: EventEmitter<any[] | any>;
|
|
8
11
|
clearable: boolean;
|
|
9
12
|
config?: {
|
|
@@ -47,5 +50,5 @@ export declare class GravityDropdownListComponent implements OnChanges {
|
|
|
47
50
|
getSpacingClass(size: string): "" | "gravity-margin-right-xxs" | "gravity-margin-right-xs" | "gravity-margin-right-sm" | "gravity-margin-right-md";
|
|
48
51
|
getLabelText(): string;
|
|
49
52
|
static ɵfac: i0.ɵɵFactoryDeclaration<GravityDropdownListComponent, never>;
|
|
50
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GravityDropdownListComponent, "gravity-dropdown-list", never, { "clearable": { "alias": "clearable"; "required": false; }; "config": { "alias": "config"; "required": false; }; "currentLang": { "alias": "currentLang"; "required": false; }; "customValues": { "alias": "customValues"; "required": false; }; "cypressTag": { "alias": "cypressTag"; "required": false; }; "hasError": { "alias": "hasError"; "required": false; }; "iconLeft": { "alias": "iconLeft"; "required": false; }; "isCurrency": { "alias": "isCurrency"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "isReadonly": { "alias": "isReadonly"; "required": false; }; "items": { "alias": "items"; "required": false; }; "label": { "alias": "label"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "required": { "alias": "required"; "required": false; }; "supportText": { "alias": "supportText"; "required": false; }; "labelSize": { "alias": "labelSize"; "required": false; }; "size": { "alias": "size"; "required": false; }; "inputType": { "alias": "inputType"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, { "selectedItemsResponse": "response"; }, never, never, false, never>;
|
|
53
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GravityDropdownListComponent, "gravity-dropdown-list", never, { "dropdownState": { "alias": "dropdownState"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "config": { "alias": "config"; "required": false; }; "currentLang": { "alias": "currentLang"; "required": false; }; "customValues": { "alias": "customValues"; "required": false; }; "cypressTag": { "alias": "cypressTag"; "required": false; }; "hasError": { "alias": "hasError"; "required": false; }; "iconLeft": { "alias": "iconLeft"; "required": false; }; "isCurrency": { "alias": "isCurrency"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "isReadonly": { "alias": "isReadonly"; "required": false; }; "items": { "alias": "items"; "required": false; }; "label": { "alias": "label"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "required": { "alias": "required"; "required": false; }; "supportText": { "alias": "supportText"; "required": false; }; "labelSize": { "alias": "labelSize"; "required": false; }; "size": { "alias": "size"; "required": false; }; "inputType": { "alias": "inputType"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, { "dropdownStateChange": "dropdownStateChange"; "selectedItemsResponse": "response"; }, never, never, false, never>;
|
|
51
54
|
}
|
|
@@ -57,16 +57,18 @@ import * as i55 from "./components/gravity-dropdown-label/gravity-dropdown-label
|
|
|
57
57
|
import * as i56 from "./components/gravity-navigation-card/gravity-navigation-card.component";
|
|
58
58
|
import * as i57 from "./components/gravity-generic-avatar-secondary/gravity-generic-avatar-secondary.component";
|
|
59
59
|
import * as i58 from "./components/gravity-backdrop/gravity-backdrop.component";
|
|
60
|
-
import * as i59 from "
|
|
61
|
-
import * as i60 from "
|
|
62
|
-
import * as i61 from "
|
|
63
|
-
import * as i62 from "
|
|
64
|
-
import * as i63 from "
|
|
65
|
-
import * as i64 from "
|
|
66
|
-
import * as i65 from "@
|
|
67
|
-
import * as i66 from "
|
|
60
|
+
import * as i59 from "./components/gravity-calendar-next/gravity-calendar-next.component";
|
|
61
|
+
import * as i60 from "./components/gravity-calendar-next/components/days-calendar/days-calendar.component";
|
|
62
|
+
import * as i61 from "angular-svg-icon";
|
|
63
|
+
import * as i62 from "angular-svg-icon-preloader";
|
|
64
|
+
import * as i63 from "ngx-bootstrap/datepicker";
|
|
65
|
+
import * as i64 from "@angular/common";
|
|
66
|
+
import * as i65 from "@angular/forms";
|
|
67
|
+
import * as i66 from "./vendor/gravity-tooltip/gravity-tooltip.module";
|
|
68
|
+
import * as i67 from "@ng-bootstrap/ng-bootstrap";
|
|
69
|
+
import * as i68 from "@angular/router";
|
|
68
70
|
export declare class GravityDesignSystemModule {
|
|
69
71
|
static ɵfac: i0.ɵɵFactoryDeclaration<GravityDesignSystemModule, never>;
|
|
70
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<GravityDesignSystemModule, [typeof i1.GravityAttachFileComponent, typeof i2.GravityAvatarStackComponent, typeof i3.GravityGenericAvatarComponent, typeof i4.GravityButtonComponent, typeof i5.GravityCalendarComponent, typeof i6.GravityCalendarV2Component, typeof i7.GravityCardListComponent, typeof i8.GravityCheckboxComponent, typeof i9.GravityCurrencyComponent, typeof i10.GravityCurrencyDisplayComponent, typeof i11.GravityDialogComponent, typeof i12.GravityDropdownListComponent, typeof i13.GravityDropdownListDisplayComponent, typeof i14.GravityIconButtonComponent, typeof i15.GravityIconComponent, typeof i16.GravityMultiLanguageComponent, typeof i17.GravityNetworkPillComponent, typeof i18.GravityNotificationComponent, typeof i19.GravityNotificationInstantContainerComponent, typeof i20.GravityOffcanvasComponent, typeof i21.GravityRadioButtonComponent, typeof i22.GravityStatusIndicatorComponent, typeof i23.GravityStepperComponent, typeof i24.GravitySwitchComponent, typeof i25.GravityTableComponent, typeof i26.GravityTextFieldComponent, typeof i27.GravityTextFieldNumberOnlyComponent, typeof i28.GravityTreeViewComponent, typeof i29.NodeComponent, typeof i30.NodeToggleComponent, typeof i31.NodeCheckboxComponent, typeof i32.NodeNameComponent, typeof i33.FilterByPipe, typeof i34.DateAbbreviationPipe, typeof i35.BsDatepickerDayDecoratorComponent, typeof i36.BsDatepickerNavigationViewComponent, typeof i37.BsDaysCalendarViewComponent, typeof i38.BsMonthCalendarViewComponent, typeof i39.BsYearsCalendarViewComponent, typeof i40.BsDatepickerContainerComponent, typeof i41.BsDatepickerDirective, typeof i42.BsDatepickerInlineContainerComponent, typeof i43.BsDatepickerInlineDirective, typeof i44.BsDaterangepickerContainerComponent, typeof i45.BsDaterangepickerDirective, typeof i46.BsDaterangepickerInlineContainerComponent, typeof i47.BsDaterangepickerInlineDirective, typeof i48.GravityModalComponent, typeof i49.GravityLinkComponent, typeof i50.GravityTabPrimaryComponent, typeof i51.GravityTabSecondaryComponent, typeof i52.GravityChipComponent, typeof i53.GravityEditableInputComponent, typeof i54.GravityCardButtonComponent, typeof i55.GravityDropdownLabelComponent, typeof i56.GravityNavigationCardComponent, typeof i57.GravityGenericAvatarSecondaryComponent, typeof i58.GravityBackdropComponent], [typeof
|
|
72
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<GravityDesignSystemModule, [typeof i1.GravityAttachFileComponent, typeof i2.GravityAvatarStackComponent, typeof i3.GravityGenericAvatarComponent, typeof i4.GravityButtonComponent, typeof i5.GravityCalendarComponent, typeof i6.GravityCalendarV2Component, typeof i7.GravityCardListComponent, typeof i8.GravityCheckboxComponent, typeof i9.GravityCurrencyComponent, typeof i10.GravityCurrencyDisplayComponent, typeof i11.GravityDialogComponent, typeof i12.GravityDropdownListComponent, typeof i13.GravityDropdownListDisplayComponent, typeof i14.GravityIconButtonComponent, typeof i15.GravityIconComponent, typeof i16.GravityMultiLanguageComponent, typeof i17.GravityNetworkPillComponent, typeof i18.GravityNotificationComponent, typeof i19.GravityNotificationInstantContainerComponent, typeof i20.GravityOffcanvasComponent, typeof i21.GravityRadioButtonComponent, typeof i22.GravityStatusIndicatorComponent, typeof i23.GravityStepperComponent, typeof i24.GravitySwitchComponent, typeof i25.GravityTableComponent, typeof i26.GravityTextFieldComponent, typeof i27.GravityTextFieldNumberOnlyComponent, typeof i28.GravityTreeViewComponent, typeof i29.NodeComponent, typeof i30.NodeToggleComponent, typeof i31.NodeCheckboxComponent, typeof i32.NodeNameComponent, typeof i33.FilterByPipe, typeof i34.DateAbbreviationPipe, typeof i35.BsDatepickerDayDecoratorComponent, typeof i36.BsDatepickerNavigationViewComponent, typeof i37.BsDaysCalendarViewComponent, typeof i38.BsMonthCalendarViewComponent, typeof i39.BsYearsCalendarViewComponent, typeof i40.BsDatepickerContainerComponent, typeof i41.BsDatepickerDirective, typeof i42.BsDatepickerInlineContainerComponent, typeof i43.BsDatepickerInlineDirective, typeof i44.BsDaterangepickerContainerComponent, typeof i45.BsDaterangepickerDirective, typeof i46.BsDaterangepickerInlineContainerComponent, typeof i47.BsDaterangepickerInlineDirective, typeof i48.GravityModalComponent, typeof i49.GravityLinkComponent, typeof i50.GravityTabPrimaryComponent, typeof i51.GravityTabSecondaryComponent, typeof i52.GravityChipComponent, typeof i53.GravityEditableInputComponent, typeof i54.GravityCardButtonComponent, typeof i55.GravityDropdownLabelComponent, typeof i56.GravityNavigationCardComponent, typeof i57.GravityGenericAvatarSecondaryComponent, typeof i58.GravityBackdropComponent, typeof i59.GravityCalendarNextComponent, typeof i60.DaysCalendarComponent], [typeof i61.AngularSvgIconModule, typeof i62.AngularSvgIconPreloaderModule, typeof i63.BsDatepickerModule, typeof i64.CommonModule, typeof i65.FormsModule, typeof i66.GravityTooltipModule, typeof i67.NgbDatepickerModule, typeof i67.NgbOffcanvasModule, typeof i67.NgbProgressbarModule, typeof i67.NgbToastModule, typeof i65.ReactiveFormsModule, typeof i68.RouterLink], [typeof i1.GravityAttachFileComponent, typeof i2.GravityAvatarStackComponent, typeof i3.GravityGenericAvatarComponent, typeof i4.GravityButtonComponent, typeof i5.GravityCalendarComponent, typeof i6.GravityCalendarV2Component, typeof i7.GravityCardListComponent, typeof i8.GravityCheckboxComponent, typeof i9.GravityCurrencyComponent, typeof i10.GravityCurrencyDisplayComponent, typeof i11.GravityDialogComponent, typeof i12.GravityDropdownListComponent, typeof i13.GravityDropdownListDisplayComponent, typeof i14.GravityIconButtonComponent, typeof i15.GravityIconComponent, typeof i16.GravityMultiLanguageComponent, typeof i17.GravityNetworkPillComponent, typeof i19.GravityNotificationInstantContainerComponent, typeof i20.GravityOffcanvasComponent, typeof i21.GravityRadioButtonComponent, typeof i22.GravityStatusIndicatorComponent, typeof i23.GravityStepperComponent, typeof i24.GravitySwitchComponent, typeof i25.GravityTableComponent, typeof i26.GravityTextFieldComponent, typeof i27.GravityTextFieldNumberOnlyComponent, typeof i66.GravityTooltipModule, typeof i28.GravityTreeViewComponent, typeof i48.GravityModalComponent, typeof i49.GravityLinkComponent, typeof i50.GravityTabPrimaryComponent, typeof i51.GravityTabSecondaryComponent, typeof i52.GravityChipComponent, typeof i53.GravityEditableInputComponent, typeof i54.GravityCardButtonComponent, typeof i56.GravityNavigationCardComponent, typeof i57.GravityGenericAvatarSecondaryComponent, typeof i58.GravityBackdropComponent, typeof i59.GravityCalendarNextComponent]>;
|
|
71
73
|
static ɵinj: i0.ɵɵInjectorDeclaration<GravityDesignSystemModule>;
|
|
72
74
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ export * from './lib/components/gravity-avatar-stack/gravity-avatar-stack.compon
|
|
|
4
4
|
export * from './lib/components/gravity-button/gravity-button.component';
|
|
5
5
|
export * from './lib/components/gravity-calendar/gravity-calendar.component';
|
|
6
6
|
export * from './lib/components/gravity-calendar-v2/gravity-calendar-v2.component';
|
|
7
|
+
export * from './lib/components/gravity-calendar-next/gravity-calendar-next.component';
|
|
7
8
|
export * from './lib/components/gravity-card-list/gravity-card-list.component';
|
|
8
9
|
export * from './lib/components/gravity-checkbox/gravity-checkbox.component';
|
|
9
10
|
export * from './lib/components/gravity-currency/gravity-currency.component';
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M14.4437 6.92894C14.8321 6.60779 15.4097 6.62395 15.7787 6.98265C16.1476 7.34145 16.1766 7.9153 15.8617 8.30785L15.7933 8.38402L6.31382 18.0022C6.12649 18.1922 5.87058 18.2997 5.60288 18.3C5.33514 18.3003 5.07772 18.1937 4.88999 18.0041L0.285495 13.3479L0.218112 13.2717C-0.0977168 12.8797 -0.0701502 12.306 0.29819 11.9465C0.666559 11.5871 1.24421 11.5702 1.63315 11.8909L1.70932 11.9592L5.59897 15.8928L14.3675 6.9973L14.4437 6.92894ZM22.2894 6.9973C22.6748 6.60625 23.3069 6.59979 23.7005 6.98265C24.094 7.36555 24.1005 7.99302 23.7152 8.38402L14.2357 18.0022C14.0483 18.1921 13.7915 18.2988 13.5238 18.2991C13.2561 18.2992 12.9995 18.1928 12.8119 18.0032L10.848 16.0178L10.7806 15.9416C10.4648 15.5497 10.4925 14.9759 10.8607 14.6164C11.229 14.2571 11.8067 14.2394 12.1957 14.5598L12.2718 14.6282L13.5208 15.8928L22.2894 6.9973Z" fill="var(--icon-color, #394C6E)"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_9890_982)">
|
|
3
|
+
<path d="M9.69728 4.71067C9.94658 4.54153 10.2883 4.56632 10.5117 4.78586C10.7349 5.0056 10.7666 5.34832 10.6035 5.60227L10.5215 5.70481L4.18751 12.2048C4.06612 12.3294 3.89909 12.3997 3.7256 12.4001C3.59558 12.4002 3.46852 12.3617 3.36232 12.2898L3.26173 12.2058L0.185557 9.06028L0.103526 8.95774C-0.0602927 8.70401 -0.0296123 8.36061 0.19337 8.14036C0.416371 7.92028 0.75816 7.89552 1.00782 8.06418L1.10939 8.14817L3.72267 10.821L9.59767 4.79563L9.69728 4.71067ZM14.8916 4.79563C15.1416 4.53944 15.5504 4.53504 15.8057 4.78586C16.0608 5.03701 16.0653 5.44837 15.8154 5.70481L9.48146 12.2048C9.36001 12.3294 9.19313 12.3998 9.01954 12.4001C8.88939 12.4002 8.76254 12.3608 8.65626 12.2888L8.55665 12.2058L7.24415 10.864L7.1631 10.7614C6.99965 10.5079 7.02942 10.1652 7.25196 9.94504C7.47505 9.72488 7.8177 9.69999 8.06739 9.86887L8.16798 9.95286L9.01661 10.821L14.8916 4.79563Z" fill="var(--icon-color, #394C6E)"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<clipPath id="clip0_9890_982">
|
|
7
|
+
<rect width="16" height="16" fill="white" transform="translate(0 0.5)"/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
</defs>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="12" height="13" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_9890_978)">
|
|
3
|
+
<path d="M7.19742 3.74713C7.3847 3.55688 7.69146 3.55344 7.88297 3.73932C8.07436 3.92589 8.07888 4.23219 7.89176 4.42291L3.13981 9.25495C3.04872 9.34758 2.92429 9.40023 2.7941 9.40045C2.66375 9.40057 2.5378 9.34851 2.44645 9.25592L0.139806 6.91608L0.0773064 6.84088C-0.0453844 6.65223 -0.0216282 6.39711 0.145666 6.23346C0.313123 6.06985 0.569764 6.05197 0.756994 6.1778L0.831213 6.23932L2.79215 8.2276L7.19742 3.74713ZM11.2443 3.6817C11.4312 3.55622 11.6862 3.57445 11.8537 3.73737C12.0213 3.90085 12.0457 4.15591 11.923 4.34479L11.8625 4.41999L7.11051 9.25202C7.01933 9.34475 6.89417 9.39741 6.76383 9.39752C6.66627 9.39752 6.57199 9.3681 6.49235 9.31452L6.41715 9.25299L5.43375 8.25592L5.37223 8.17877C5.24982 7.99021 5.27254 7.73588 5.43961 7.57233C5.60697 7.40878 5.86373 7.39009 6.05094 7.51569L6.12516 7.57819L6.76285 8.22467L11.1681 3.74518L11.2443 3.6817Z" fill="var(--icon-color, #394C6E)"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<clipPath id="clip0_9890_978">
|
|
7
|
+
<rect width="12" height="12" fill="white" transform="translate(0 0.5)"/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
</defs>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="32" height="33" viewBox="0 0 32 33" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_9890_990)">
|
|
3
|
+
<path d="M19.29 9.00085C19.7938 8.57903 20.5436 8.60046 21.0224 9.07116C21.5014 9.54218 21.5394 10.2954 21.1299 10.8104L21.042 10.9091L8.37205 23.91C8.12891 24.1593 7.79567 24.2994 7.44822 24.2997C7.14439 24.2998 6.8516 24.1933 6.62009 23.9999L6.52439 23.911L0.370094 17.619C-0.130382 17.1068 -0.122041 16.2832 0.387672 15.7801C0.897525 15.2775 1.71703 15.2839 2.21775 15.7958L7.44529 21.1434L19.1924 9.09069L19.29 9.00085ZM29.7812 9.09069C30.2812 8.57779 31.1006 8.56898 31.6113 9.07116C32.1219 9.57343 32.1308 10.397 31.6308 10.91L18.9609 23.91C18.7178 24.1594 18.3846 24.2993 18.0371 24.2997C17.7332 24.2999 17.4405 24.1933 17.209 23.9999L17.1133 23.911L14.4883 21.2274C13.9879 20.7153 13.9954 19.8926 14.5049 19.3895C15.0146 18.8868 15.8342 18.8934 16.3349 19.4051L18.0332 21.1424L29.7812 9.09069Z" fill="var(--icon-color, #394C6E)"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<clipPath id="clip0_9890_990">
|
|
7
|
+
<rect width="32" height="32" fill="white" transform="translate(0 0.5)"/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
</defs>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_9918_7772)">
|
|
3
|
+
<path d="M2.16125 0.505528C1.67751 0.555081 1.29995 0.9649 1.29995 1.46292V20.142C1.30025 20.673 1.7297 21.1035 2.2594 21.1038H5.18735V23.5382C5.18765 24.0691 5.61716 24.4996 6.1468 24.5H21.7394C22.2694 24.5 22.6997 24.0694 22.7 23.5382V5.28364L22.6944 5.18525C22.6453 4.70002 22.2364 4.32183 21.7394 4.32183H19.311V1.46292L19.3066 1.36453C19.2575 0.879302 18.8486 0.5 18.3516 0.5H2.2594L2.16125 0.505528ZM20.78 22.5764H7.10734V11.2557H11.716C12.2458 11.2556 12.6751 10.8239 12.6754 10.2928V6.24545H20.78V22.5764ZM18.85 13.0865C18.4948 12.7379 17.9379 12.722 17.5642 13.0345L17.4925 13.1009L12.371 18.3422L10.2393 16.1665L10.1665 16.1002C9.79226 15.7885 9.23631 15.8052 8.88176 16.1543C8.52775 16.5035 8.50065 17.0607 8.80456 17.4412L8.86963 17.5152L11.6895 20.3918C11.87 20.5758 12.1169 20.6793 12.3744 20.6793C12.6318 20.6791 12.8789 20.575 13.0592 20.3907L18.8644 14.4474L18.9294 14.3733C19.2326 13.9922 19.2048 13.435 18.85 13.0865ZM17.3921 4.32183H11.716L11.5406 4.3373C11.3685 4.36942 11.2061 4.44852 11.0741 4.56725L5.50606 9.57642C5.30356 9.75888 5.18739 10.0198 5.18735 10.2928V19.1802H3.21884V2.42473H17.3921V4.32183ZM10.7554 9.33099H8.65348L10.7554 7.43943V9.33099Z" fill="var(--icon-color, #394C6E)"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<clipPath id="clip0_9918_7772">
|
|
7
|
+
<rect width="24" height="24" fill="white" transform="translate(0 0.5)"/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
</defs>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_9918_7768)">
|
|
3
|
+
<path d="M1.48721 0.51219C1.20905 0.570553 1.00013 0.822589 0.999999 1.12391V13.6065C0.999999 13.9512 1.27339 14.2304 1.61091 14.2304H3.54999V15.8761C3.54999 16.2208 3.82343 16.5 4.1609 16.5H14.3891C14.7264 16.4998 15 16.2207 15 15.8761V3.67717L14.9881 3.55084C14.9309 3.26689 14.684 3.05346 14.3891 3.05326H12.7777V1.12391L12.7658 0.997576C12.7086 0.713629 12.4617 0.500196 12.1668 0.5H1.61091L1.48721 0.51219ZM13.7782 15.2522H4.77182V7.64891H7.81336C8.1506 7.64869 8.42521 7.36944 8.42536 7.025V4.30108H13.7782V15.2522ZM12.4804 8.9056C12.2694 8.69467 11.9466 8.67124 11.7111 8.83356L11.6166 8.91446L8.24415 12.4307L6.83243 10.9635L6.73694 10.8826C6.50129 10.7205 6.17834 10.7437 5.9676 10.9546C5.75689 11.166 5.72836 11.4956 5.88296 11.7392L5.96001 11.8379L7.81011 13.7606L7.90343 13.8404C8.00377 13.9095 8.12344 13.9468 8.24632 13.9467C8.41019 13.9464 8.56788 13.8791 8.68253 13.7595L12.4902 9.78771C12.7255 9.54147 12.721 9.14655 12.4804 8.9056ZM11.5559 3.05326H7.81336L7.70268 3.06324C7.59299 3.08396 7.4895 3.13586 7.40536 3.21284L3.75291 6.56067C3.62391 6.67898 3.55007 6.84794 3.54999 7.025V12.9826H2.22183V1.74782H11.5559V3.05326ZM7.20245 6.40109H5.75601L7.20245 5.0757V6.40109Z" fill="var(--icon-color, #394C6E)"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<clipPath id="clip0_9918_7768">
|
|
7
|
+
<rect width="16" height="16" fill="white" transform="translate(0 0.5)"/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
</defs>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="12" height="13" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_9918_7764)">
|
|
3
|
+
<path d="M0.883112 0.508866C0.664567 0.552573 0.500234 0.741753 0.499999 0.967676V10.3301C0.499999 10.5884 0.714783 10.7975 0.979743 10.7977H2.5031V12.0323C2.5031 12.2907 2.71902 12.4997 2.98398 12.5H11.0203C11.2855 12.5 11.5 12.2909 11.5 12.0323V2.88271L11.4909 2.78851C11.446 2.57539 11.2522 2.41504 11.0203 2.41504H9.75382V0.967676L9.74473 0.873476C9.6998 0.660358 9.50599 0.5 9.27408 0.5H0.979743L0.883112 0.508866ZM10.5405 11.5646H3.46372V5.86165H5.85335C6.11839 5.86165 6.33396 5.65229 6.33423 5.39398V3.35039H10.5405V11.5646ZM9.52077 6.80366C9.35506 6.64593 9.10198 6.62897 8.91711 6.75046L8.84208 6.81141L6.19212 9.44791L5.08258 8.34743L5.00868 8.28648C4.82349 8.1649 4.56946 8.18359 4.40389 8.34189C4.2387 8.50028 4.21585 8.74663 4.33681 8.92926L4.3982 9.00351L5.85107 10.4453C5.94146 10.535 6.06544 10.5851 6.1944 10.585C6.32316 10.5847 6.4465 10.5339 6.53659 10.4442L9.52873 7.46528L9.58898 7.39213C9.70999 7.20918 9.68656 6.96189 9.52077 6.80366ZM8.79434 2.41504H5.85335L5.76581 2.42279C5.6799 2.43848 5.59865 2.47709 5.53276 2.53472L2.66226 5.04488L2.59518 5.11803C2.53604 5.19726 2.50321 5.29434 2.5031 5.39398V9.86239H1.45949V1.43535H8.79434V2.41504ZM5.3736 4.92519H4.23791L5.3736 3.9311V4.92519Z" fill="var(--icon-color, #394C6E)"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<clipPath id="clip0_9918_7764">
|
|
7
|
+
<rect width="12" height="12" fill="white" transform="translate(0 0.5)"/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
</defs>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="32" height="33" viewBox="0 0 32 33" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_9918_7776)">
|
|
3
|
+
<path d="M2.63622 0.505541C1.99776 0.569358 1.5 1.10143 1.5 1.74782V26.7131C1.5 27.4024 2.06632 27.9609 2.76546 27.9609H6.78213V31.2522C6.78213 31.9415 7.34853 32.4999 8.04759 32.5H29.2345C29.9337 32.5 30.5 31.9416 30.5 31.2522V6.85434L30.4944 6.7269C30.4297 6.09735 29.8901 5.60652 29.2345 5.60652H25.8967V1.74782L25.8911 1.62038C25.8263 0.990823 25.2867 0.5 24.6312 0.5H2.76546L2.63622 0.505541ZM27.9691 30.0044H9.31418V14.7978H15.6145C16.3135 14.7978 16.8797 14.2391 16.88 13.55V8.10216H27.9691V30.0044ZM25.2808 17.3101C24.8124 16.8581 24.0789 16.8375 23.586 17.2425L23.4905 17.3289L16.5069 24.3626L13.5815 21.4259L13.4859 21.3395C12.9924 20.9351 12.2588 20.9576 11.7912 21.4104C11.3235 21.8634 11.2875 22.5866 11.6889 23.0804L11.7743 23.1757L15.6055 27.02L15.6988 27.1053C15.9254 27.2912 16.2128 27.3937 16.5102 27.3935C16.8499 27.393 17.175 27.2582 17.4127 27.0189L25.2999 19.0754L25.3853 18.9801C25.7859 18.4857 25.7492 17.7624 25.2808 17.3101ZM23.3658 5.60652H15.6145L15.4976 5.61096C15.2279 5.6356 14.9725 5.74593 14.7694 5.92568L7.20245 12.6202C6.93486 12.857 6.78213 13.1955 6.78213 13.55V25.4652H4.03093V2.99564H23.3658V5.60652ZM14.3491 12.3011H11.354L14.3491 9.6503V12.3011Z" fill="var(--icon-color, #394C6E)"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<clipPath id="clip0_9918_7776">
|
|
7
|
+
<rect width="32" height="32" fill="white" transform="translate(0 0.5)"/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
</defs>
|
|
10
|
+
</svg>
|
|
@@ -376,6 +376,22 @@
|
|
|
376
376
|
"iconName": "gt-icon-deposit-xl-32",
|
|
377
377
|
"iconPath": "/assets/gravity/icon-set/gt-icon-deposit/gt-icon-deposit-xl-32.svg"
|
|
378
378
|
},
|
|
379
|
+
{
|
|
380
|
+
"iconName": "gt-icon-double-check-lg-24",
|
|
381
|
+
"iconPath": "/assets/gravity/icon-set/gt-icon-double-check/gt-icon-double-check-lg-24.svg"
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"iconName": "gt-icon-double-check-md-16",
|
|
385
|
+
"iconPath": "/assets/gravity/icon-set/gt-icon-double-check/gt-icon-double-check-md-16.svg"
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
"iconName": "gt-icon-double-check-sm-12",
|
|
389
|
+
"iconPath": "/assets/gravity/icon-set/gt-icon-double-check/gt-icon-double-check-sm-12.svg"
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"iconName": "gt-icon-double-check-xl-32",
|
|
393
|
+
"iconPath": "/assets/gravity/icon-set/gt-icon-double-check/gt-icon-double-check-xl-32.svg"
|
|
394
|
+
},
|
|
379
395
|
{
|
|
380
396
|
"iconName": "gt-icon-download-lg-24",
|
|
381
397
|
"iconPath": "/assets/gravity/icon-set/gt-icon-download/gt-icon-download-lg-24.svg"
|
|
@@ -776,6 +792,22 @@
|
|
|
776
792
|
"iconName": "gt-icon-plus-xl-32",
|
|
777
793
|
"iconPath": "/assets/gravity/icon-set/gt-icon-plus/gt-icon-plus-xl-32.svg"
|
|
778
794
|
},
|
|
795
|
+
{
|
|
796
|
+
"iconName": "gt-icon-published-lg-24",
|
|
797
|
+
"iconPath": "/assets/gravity/icon-set/gt-icon-published/gt-icon-published-lg-24.svg"
|
|
798
|
+
},
|
|
799
|
+
{
|
|
800
|
+
"iconName": "gt-icon-published-md-16",
|
|
801
|
+
"iconPath": "/assets/gravity/icon-set/gt-icon-published/gt-icon-published-md-16.svg"
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
"iconName": "gt-icon-published-sm-12",
|
|
805
|
+
"iconPath": "/assets/gravity/icon-set/gt-icon-published/gt-icon-published-sm-12.svg"
|
|
806
|
+
},
|
|
807
|
+
{
|
|
808
|
+
"iconName": "gt-icon-published-xl-32",
|
|
809
|
+
"iconPath": "/assets/gravity/icon-set/gt-icon-published/gt-icon-published-xl-32.svg"
|
|
810
|
+
},
|
|
779
811
|
{
|
|
780
812
|
"iconName": "gt-icon-question-circle-lg-24",
|
|
781
813
|
"iconPath": "/assets/gravity/icon-set/gt-icon-question-circle/gt-icon-question-circle-lg-24.svg"
|