design-angular-kit 1.0.2 → 1.0.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.
Files changed (34) hide show
  1. package/assets/i18n/en.json +6 -0
  2. package/assets/i18n/it.json +6 -0
  3. package/esm2022/lib/components/core/button/button.directive.mjs +12 -2
  4. package/esm2022/lib/components/core/popover/popover.directive.mjs +2 -2
  5. package/esm2022/lib/components/core/steppers/steppers-container/steppers-container.component.mjs +2 -2
  6. package/esm2022/lib/components/core/tab/tab-container/tab-container.component.mjs +15 -6
  7. package/esm2022/lib/components/core/timeline/timeline-item/timeline-item.component.mjs +76 -0
  8. package/esm2022/lib/components/core/timeline/timeline.component.mjs +36 -0
  9. package/esm2022/lib/components/core/timeline/timeline.module.mjs +18 -0
  10. package/esm2022/lib/components/form/input/input.component.mjs +4 -1
  11. package/esm2022/lib/components/navigation/back-button/back-button.component.mjs +2 -2
  12. package/esm2022/lib/components/navigation/header/header.component.mjs +10 -3
  13. package/esm2022/lib/components/utils/error-page/error-page.component.mjs +1 -1
  14. package/esm2022/lib/design-angular-kit.module.mjs +11 -5
  15. package/esm2022/lib/interfaces/core.mjs +1 -1
  16. package/esm2022/lib/interfaces/icon.mjs +2 -1
  17. package/esm2022/lib/utils/regex.mjs +5 -1
  18. package/esm2022/lib/validators/it-validators.mjs +8 -2
  19. package/esm2022/public_api.mjs +4 -1
  20. package/fesm2022/design-angular-kit.mjs +173 -17
  21. package/fesm2022/design-angular-kit.mjs.map +1 -1
  22. package/lib/components/core/button/button.directive.d.ts +6 -1
  23. package/lib/components/core/tab/tab-container/tab-container.component.d.ts +5 -2
  24. package/lib/components/core/timeline/timeline-item/timeline-item.component.d.ts +66 -0
  25. package/lib/components/core/timeline/timeline.component.d.ts +21 -0
  26. package/lib/components/core/timeline/timeline.module.d.ts +8 -0
  27. package/lib/components/navigation/header/header.component.d.ts +2 -0
  28. package/lib/design-angular-kit.module.d.ts +16 -15
  29. package/lib/interfaces/core.d.ts +17 -0
  30. package/lib/interfaces/icon.d.ts +1 -1
  31. package/lib/utils/regex.d.ts +4 -0
  32. package/lib/validators/it-validators.d.ts +4 -0
  33. package/package.json +1 -1
  34. package/public_api.d.ts +3 -0
@@ -30,6 +30,11 @@ export declare class ItButtonDirective {
30
30
  * @default false
31
31
  */
32
32
  disabled?: boolean;
33
+ /**
34
+ * The type attribute
35
+ * @default button
36
+ */
37
+ type: 'button' | 'reset' | 'submit';
33
38
  /**
34
39
  * The icon children
35
40
  * @default undefined
@@ -41,6 +46,6 @@ export declare class ItButtonDirective {
41
46
  protected onBlur(): void;
42
47
  protected get hostClasses(): string;
43
48
  static ɵfac: i0.ɵɵFactoryDeclaration<ItButtonDirective, [{ optional: true; host: true; }]>;
44
- static ɵdir: i0.ɵɵDirectiveDeclaration<ItButtonDirective, "[itButton]", ["itButton"], { "color": { "alias": "itButton"; "required": false; }; "size": { "alias": "size"; "required": false; }; "block": { "alias": "block"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, ["icons"], never, true, never>;
49
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ItButtonDirective, "[itButton]", ["itButton"], { "color": { "alias": "itButton"; "required": false; }; "size": { "alias": "size"; "required": false; }; "block": { "alias": "block"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, ["icons"], never, true, never>;
45
50
  static ngAcceptInputType_disabled: i1.BooleanInput;
46
51
  }
@@ -1,4 +1,4 @@
1
- import { AfterViewInit, OnDestroy, QueryList } from '@angular/core';
1
+ import { AfterViewInit, EventEmitter, OnDestroy, QueryList } from '@angular/core';
2
2
  import { ItTabItemComponent } from '../tab-item/tab-item.component';
3
3
  import { ItAbstractComponent } from '../../../../abstracts/abstract.component';
4
4
  import * as i0 from "@angular/core";
@@ -22,11 +22,14 @@ export declare class ItTabContainerComponent extends ItAbstractComponent impleme
22
22
  */
23
23
  tabs?: QueryList<ItTabItemComponent>;
24
24
  private tabNavLinks?;
25
+ tabSelected: EventEmitter<ItTabItemComponent>;
25
26
  private tabSubscriptions?;
27
+ constructor();
26
28
  ngAfterViewInit(): void;
27
29
  ngOnDestroy(): void;
30
+ onTab(tab: ItTabItemComponent): void;
28
31
  static ɵfac: i0.ɵɵFactoryDeclaration<ItTabContainerComponent, never>;
29
- static ɵcmp: i0.ɵɵComponentDeclaration<ItTabContainerComponent, "it-tab-container", never, { "auto": { "alias": "auto"; "required": false; }; "iconText": { "alias": "iconText"; "required": false; }; "dark": { "alias": "dark"; "required": false; }; }, {}, ["tabs"], never, true, never>;
32
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItTabContainerComponent, "it-tab-container", never, { "auto": { "alias": "auto"; "required": false; }; "iconText": { "alias": "iconText"; "required": false; }; "dark": { "alias": "dark"; "required": false; }; }, { "tabSelected": "tabSelected"; }, ["tabs"], never, true, never>;
30
33
  static ngAcceptInputType_auto: i1.BooleanInput;
31
34
  static ngAcceptInputType_iconText: i1.BooleanInput;
32
35
  static ngAcceptInputType_dark: i1.BooleanInput;
@@ -0,0 +1,66 @@
1
+ import { ItAbstractComponent } from '../../../../abstracts/abstract.component';
2
+ import { TimelinePINType } from '../../../../interfaces/core';
3
+ import { IconName } from '../../../../interfaces/icon';
4
+ import * as i0 from "@angular/core";
5
+ import * as i1 from "../../../../utils/coercion";
6
+ /**
7
+ * Timeline Item
8
+ * @description Represents a single event for Timeline component.
9
+ */
10
+ export declare class ItTimelineItemComponent extends ItAbstractComponent {
11
+ /**
12
+ * Timeline element title
13
+ */
14
+ title: string;
15
+ /**
16
+ * Timeline element text
17
+ */
18
+ text: string;
19
+ /**
20
+ * Timeline element signature
21
+ */
22
+ signature: string | undefined;
23
+ /**
24
+ * Timeline element reference date
25
+ */
26
+ eventDate: Date | undefined;
27
+ /**
28
+ * Timeline element reference date format
29
+ * @default dd/MM/yyyy
30
+ */
31
+ dateFormat: string;
32
+ /**
33
+ * Timeline element PIN text
34
+ */
35
+ pinText: string | undefined;
36
+ /**
37
+ * Timeline element PIN type
38
+ * @default none
39
+ */
40
+ pinType: TimelinePINType | undefined;
41
+ /**
42
+ * Timeline element PIN icon
43
+ * @default code-circle
44
+ */
45
+ pinIcon: IconName | undefined;
46
+ /**
47
+ * Timeline element category title
48
+ */
49
+ categoryTitle: string | undefined;
50
+ /**
51
+ * Timeline element category link
52
+ */
53
+ categoryLink: string | undefined;
54
+ /**
55
+ * Timeline element show detail link
56
+ * @default false
57
+ */
58
+ showReadMore: boolean;
59
+ /** Timeline element detail link
60
+ * @default #
61
+ */
62
+ readMoreLink: string | undefined;
63
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItTimelineItemComponent, never>;
64
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItTimelineItemComponent, "it-timeline-item", never, { "title": { "alias": "title"; "required": true; }; "text": { "alias": "text"; "required": true; }; "signature": { "alias": "signature"; "required": false; }; "eventDate": { "alias": "eventDate"; "required": false; }; "dateFormat": { "alias": "dateFormat"; "required": false; }; "pinText": { "alias": "pinText"; "required": true; }; "pinType": { "alias": "pinType"; "required": false; }; "pinIcon": { "alias": "pinIcon"; "required": false; }; "categoryTitle": { "alias": "categoryTitle"; "required": false; }; "categoryLink": { "alias": "categoryLink"; "required": false; }; "showReadMore": { "alias": "showReadMore"; "required": false; }; "readMoreLink": { "alias": "readMoreLink"; "required": false; }; }, {}, never, never, true, never>;
65
+ static ngAcceptInputType_showReadMore: i1.BooleanInput;
66
+ }
@@ -0,0 +1,21 @@
1
+ import { ItAbstractComponent } from '../../../abstracts/abstract.component';
2
+ import { TimelineElement } from '../../../interfaces/core';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * Timeline
6
+ * @description Build timeline for chronological representation of events.
7
+ */
8
+ export declare class ItTimelineComponent extends ItAbstractComponent {
9
+ /**
10
+ * Timeline elements array
11
+ * @default []
12
+ */
13
+ timelineElements: TimelineElement[];
14
+ /**
15
+ * Default date format for timeline element reference date
16
+ * @default dd/MM/yyyy
17
+ */
18
+ dateFormat: string;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItTimelineComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItTimelineComponent, "it-timeline", never, { "timelineElements": { "alias": "timelineElements"; "required": false; }; "dateFormat": { "alias": "dateFormat"; "required": false; }; }, {}, never, never, true, never>;
21
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./timeline.component";
3
+ import * as i2 from "./timeline-item/timeline-item.component";
4
+ export declare class ItTimelineModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItTimelineModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ItTimelineModule, never, [typeof i1.ItTimelineComponent, typeof i2.ItTimelineItemComponent], [typeof i1.ItTimelineComponent, typeof i2.ItTimelineItemComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<ItTimelineModule>;
8
+ }
@@ -13,6 +13,7 @@ export declare class ItHeaderComponent implements AfterViewInit, OnChanges {
13
13
  loginClick: EventEmitter<Event>;
14
14
  searchClick: EventEmitter<Event>;
15
15
  private headerWrapper?;
16
+ private itNavBarComponent?;
16
17
  megamenu?: boolean;
17
18
  expand?: boolean;
18
19
  private stickyHeader?;
@@ -22,6 +23,7 @@ export declare class ItHeaderComponent implements AfterViewInit, OnChanges {
22
23
  updateListeners(): void;
23
24
  protected emitLoginClick(event: Event): void;
24
25
  protected emitSearchClick(event: Event): void;
26
+ toggleCollapse(): void;
25
27
  static ɵfac: i0.ɵɵFactoryDeclaration<ItHeaderComponent, never>;
26
28
  static ɵcmp: i0.ɵɵComponentDeclaration<ItHeaderComponent, "it-header", never, { "light": { "alias": "light"; "required": false; }; "sticky": { "alias": "sticky"; "required": false; }; "showSlim": { "alias": "showSlim"; "required": false; }; "smallHeader": { "alias": "smallHeader"; "required": false; }; "showSearch": { "alias": "showSearch"; "required": false; }; "slimTitle": { "alias": "slimTitle"; "required": false; }; "slimTitleLink": { "alias": "slimTitleLink"; "required": false; }; "loginStyle": { "alias": "loginStyle"; "required": false; }; "megamenu": { "alias": "megamenu"; "required": false; }; "expand": { "alias": "expand"; "required": false; }; }, { "loginClick": "loginClick"; "searchClick": "searchClick"; }, never, ["[slimLinkList]", "[slimRightZone]", "[brand]", "[rightZone]", "[navItems]"], true, never>;
27
29
  static ngAcceptInputType_light: i1.BooleanInput;
@@ -27,24 +27,25 @@ import * as i23 from "./components/core/steppers/steppers.module";
27
27
  import * as i24 from "./components/core/tab/tab.module";
28
28
  import * as i25 from "./components/core/table/table.module";
29
29
  import * as i26 from "./components/core/tooltip/tooltip.directive";
30
- import * as i27 from "./components/form/form.module";
31
- import * as i28 from "./components/navigation/back-button/back-button.component";
32
- import * as i29 from "./components/navigation/back-to-top/back-to-top.component";
33
- import * as i30 from "./components/navigation/breadcrumbs/breadcrumbs.module";
34
- import * as i31 from "./components/navigation/header/header.component";
35
- import * as i32 from "./components/navigation/navbar/navbar.module";
36
- import * as i33 from "./components/navigation/sidebar/sidebar.component";
37
- import * as i34 from "./components/navigation/megamenu/megamenu.component";
38
- import * as i35 from "./components/utils/error-page/error-page.component";
39
- import * as i36 from "./components/utils/icon/icon.component";
40
- import * as i37 from "./components/utils/language-switcher/language-switcher.component";
41
- import * as i38 from "./pipes/date-ago.pipe";
42
- import * as i39 from "./pipes/duration.pipe";
43
- import * as i40 from "./pipes/mark-matching-text.pipe";
30
+ import * as i27 from "./components/core/timeline/timeline.module";
31
+ import * as i28 from "./components/form/form.module";
32
+ import * as i29 from "./components/navigation/back-button/back-button.component";
33
+ import * as i30 from "./components/navigation/back-to-top/back-to-top.component";
34
+ import * as i31 from "./components/navigation/breadcrumbs/breadcrumbs.module";
35
+ import * as i32 from "./components/navigation/header/header.component";
36
+ import * as i33 from "./components/navigation/navbar/navbar.module";
37
+ import * as i34 from "./components/navigation/sidebar/sidebar.component";
38
+ import * as i35 from "./components/navigation/megamenu/megamenu.component";
39
+ import * as i36 from "./components/utils/error-page/error-page.component";
40
+ import * as i37 from "./components/utils/icon/icon.component";
41
+ import * as i38 from "./components/utils/language-switcher/language-switcher.component";
42
+ import * as i39 from "./pipes/date-ago.pipe";
43
+ import * as i40 from "./pipes/duration.pipe";
44
+ import * as i41 from "./pipes/mark-matching-text.pipe";
44
45
  export declare class DesignAngularKitModule {
45
46
  static forRoot(config?: DesignAngularKitConfig): ModuleWithProviders<DesignAngularKitModule>;
46
47
  static forChild(): ModuleWithProviders<DesignAngularKitModule>;
47
48
  static ɵfac: i0.ɵɵFactoryDeclaration<DesignAngularKitModule, never>;
48
- static ɵmod: i0.ɵɵNgModuleDeclaration<DesignAngularKitModule, never, [typeof i1.ItAccordionComponent, typeof i2.ItAlertComponent, typeof i3.ItAvatarModule, typeof i4.ItBadgeDirective, typeof i5.ItButtonDirective, typeof i6.ItCalloutComponent, typeof i7.ItCardComponent, typeof i8.ItCarouselModule, typeof i9.ItChipComponent, typeof i10.ItCollapseComponent, typeof i11.ItDimmerModule, typeof i12.ItDropdownModule, typeof i13.ItForwardDirective, typeof i14.ItLinkComponent, typeof i15.ItListModule, typeof i16.ItModalComponent, typeof i17.ItNotificationsComponent, typeof i18.ItPaginationComponent, typeof i19.ItPopoverDirective, typeof i20.ItProgressBarComponent, typeof i21.ItProgressButtonComponent, typeof i22.ItSpinnerComponent, typeof i23.ItSteppersModule, typeof i24.ItTabModule, typeof i25.ItTableModule, typeof i26.ItTooltipDirective, typeof i27.ItFormModule, typeof i28.ItBackButtonComponent, typeof i29.ItBackToTopComponent, typeof i30.ItBreadcrumbsModule, typeof i31.ItHeaderComponent, typeof i32.ItNavBarModule, typeof i33.ItSidebarComponent, typeof i34.ItMegamenuComponent, typeof i35.ItErrorPageComponent, typeof i36.ItIconComponent, typeof i37.ItLanguageSwitcherComponent, typeof i38.ItDateAgoPipe, typeof i39.ItDurationPipe, typeof i40.ItMarkMatchingTextPipe], [typeof i1.ItAccordionComponent, typeof i2.ItAlertComponent, typeof i3.ItAvatarModule, typeof i4.ItBadgeDirective, typeof i5.ItButtonDirective, typeof i6.ItCalloutComponent, typeof i7.ItCardComponent, typeof i8.ItCarouselModule, typeof i9.ItChipComponent, typeof i10.ItCollapseComponent, typeof i11.ItDimmerModule, typeof i12.ItDropdownModule, typeof i13.ItForwardDirective, typeof i14.ItLinkComponent, typeof i15.ItListModule, typeof i16.ItModalComponent, typeof i17.ItNotificationsComponent, typeof i18.ItPaginationComponent, typeof i19.ItPopoverDirective, typeof i20.ItProgressBarComponent, typeof i21.ItProgressButtonComponent, typeof i22.ItSpinnerComponent, typeof i23.ItSteppersModule, typeof i24.ItTabModule, typeof i25.ItTableModule, typeof i26.ItTooltipDirective, typeof i27.ItFormModule, typeof i28.ItBackButtonComponent, typeof i29.ItBackToTopComponent, typeof i30.ItBreadcrumbsModule, typeof i31.ItHeaderComponent, typeof i32.ItNavBarModule, typeof i33.ItSidebarComponent, typeof i34.ItMegamenuComponent, typeof i35.ItErrorPageComponent, typeof i36.ItIconComponent, typeof i37.ItLanguageSwitcherComponent, typeof i38.ItDateAgoPipe, typeof i39.ItDurationPipe, typeof i40.ItMarkMatchingTextPipe]>;
49
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DesignAngularKitModule, never, [typeof i1.ItAccordionComponent, typeof i2.ItAlertComponent, typeof i3.ItAvatarModule, typeof i4.ItBadgeDirective, typeof i5.ItButtonDirective, typeof i6.ItCalloutComponent, typeof i7.ItCardComponent, typeof i8.ItCarouselModule, typeof i9.ItChipComponent, typeof i10.ItCollapseComponent, typeof i11.ItDimmerModule, typeof i12.ItDropdownModule, typeof i13.ItForwardDirective, typeof i14.ItLinkComponent, typeof i15.ItListModule, typeof i16.ItModalComponent, typeof i17.ItNotificationsComponent, typeof i18.ItPaginationComponent, typeof i19.ItPopoverDirective, typeof i20.ItProgressBarComponent, typeof i21.ItProgressButtonComponent, typeof i22.ItSpinnerComponent, typeof i23.ItSteppersModule, typeof i24.ItTabModule, typeof i25.ItTableModule, typeof i26.ItTooltipDirective, typeof i27.ItTimelineModule, typeof i28.ItFormModule, typeof i29.ItBackButtonComponent, typeof i30.ItBackToTopComponent, typeof i31.ItBreadcrumbsModule, typeof i32.ItHeaderComponent, typeof i33.ItNavBarModule, typeof i34.ItSidebarComponent, typeof i35.ItMegamenuComponent, typeof i36.ItErrorPageComponent, typeof i37.ItIconComponent, typeof i38.ItLanguageSwitcherComponent, typeof i39.ItDateAgoPipe, typeof i40.ItDurationPipe, typeof i41.ItMarkMatchingTextPipe], [typeof i1.ItAccordionComponent, typeof i2.ItAlertComponent, typeof i3.ItAvatarModule, typeof i4.ItBadgeDirective, typeof i5.ItButtonDirective, typeof i6.ItCalloutComponent, typeof i7.ItCardComponent, typeof i8.ItCarouselModule, typeof i9.ItChipComponent, typeof i10.ItCollapseComponent, typeof i11.ItDimmerModule, typeof i12.ItDropdownModule, typeof i13.ItForwardDirective, typeof i14.ItLinkComponent, typeof i15.ItListModule, typeof i16.ItModalComponent, typeof i17.ItNotificationsComponent, typeof i18.ItPaginationComponent, typeof i19.ItPopoverDirective, typeof i20.ItProgressBarComponent, typeof i21.ItProgressButtonComponent, typeof i22.ItSpinnerComponent, typeof i23.ItSteppersModule, typeof i24.ItTabModule, typeof i25.ItTableModule, typeof i26.ItTooltipDirective, typeof i27.ItTimelineModule, typeof i28.ItFormModule, typeof i29.ItBackButtonComponent, typeof i30.ItBackToTopComponent, typeof i31.ItBreadcrumbsModule, typeof i32.ItHeaderComponent, typeof i33.ItNavBarModule, typeof i34.ItSidebarComponent, typeof i35.ItMegamenuComponent, typeof i36.ItErrorPageComponent, typeof i37.ItIconComponent, typeof i38.ItLanguageSwitcherComponent, typeof i39.ItDateAgoPipe, typeof i40.ItDurationPipe, typeof i41.ItMarkMatchingTextPipe]>;
49
50
  static ɵinj: i0.ɵɵInjectorDeclaration<DesignAngularKitModule>;
50
51
  }
@@ -15,6 +15,23 @@ export type TableResponsive = 'responsive' | 'responsive-sm' | 'responsive-md' |
15
15
  export type VerticalAlignment = 'align-baseline' | 'align-top' | 'align-middle' | 'align-bottom' | 'align-text-bottom' | 'align-text-top';
16
16
  export type DropdownDirection = 'dropup' | 'dropend' | 'dropstart';
17
17
  export type CarouselType = 'default' | 'three-cols' | 'three-cols-arrow-visible';
18
+ export type TimelinePINType = 'default' | 'evidence' | 'now';
19
+ export interface TimelineElement {
20
+ pin: {
21
+ type?: TimelinePINType;
22
+ icon?: IconName;
23
+ text: string;
24
+ };
25
+ category?: {
26
+ title: string;
27
+ link: string;
28
+ };
29
+ title: string;
30
+ text: string;
31
+ signature?: string;
32
+ eventDate?: Date;
33
+ link?: string;
34
+ }
18
35
  export interface Notification {
19
36
  /**
20
37
  * Notification type
@@ -1,4 +1,4 @@
1
1
  export type IconSize = 'xs' | 'sm' | 'lg' | 'xl';
2
2
  export type IconColor = 'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'light' | 'white';
3
3
  export type IconName = (typeof IconNameArray)[number];
4
- export declare const IconNameArray: readonly ["arrow-down", "arrow-down-circle", "arrow-down-triangle", "arrow-left", "arrow-left-circle", "arrow-left-triangle", "arrow-right", "arrow-right-circle", "arrow-right-triangle", "arrow-up", "arrow-up-circle", "arrow-up-triangle", "ban", "bookmark", "box", "burger", "calendar", "camera", "card", "chart-line", "check", "check-circle", "chevron-left", "chevron-right", "clip", "clock", "close", "close-big", "close-circle", "comment", "copy", "delete", "download", "error", "exchange-circle", "expand", "external-link", "flag", "folder", "fullscreen", "funnel", "hearing", "help", "help-circle", "horn", "inbox", "info-circle", "key", "link", "list", "locked", "logout", "mail", "mail-open", "map-marker", "map-marker-circle", "map-marker-minus", "map-marker-plus", "maximize", "maximize-alt", "minimize", "minus", "minus-circle", "more-actions", "more-items", "note", "pa", "password-invisible", "password-visible", "pencil", "piattaforme", "pin", "plug", "plus", "plus-circle", "presentation", "print", "refresh", "restore", "rss", "rss-square", "search", "settings", "share", "software", "star-full", "star-outline", "telephone", "tool", "unlocked", "upload", "user", "video", "warning", "warning-circle", "wifi", "zoom-in", "zoom-out", "file", "files", "file-audio", "file-compressed", "file-csv", "file-json", "file-odp", "file-ods", "file-odt", "file-pdf", "file-pdf-ext", "file-sheet", "file-slides", "file-ppt", "file-txt", "file-video", "file-xml", "behance", "facebook", "facebook-square", "figma", "figma-square", "flickr", "flickr-square", "github", "instagram", "linkedin", "linkedin-square", "mastodon", "mastodon-square", "medium", "medium-square", "moodle", "moodle-square", "pinterest", "pinterest-square", "quora", "quora-square", "reddit", "reddit-square", "slack", "slack-square", "snapchat", "snapchat-square", "stackexchange", "stackexchange-square", "stackoverflow", "stackoverflow-square", "telegram", "threads", "threads-square", "tiktok", "tiktok-square", "twitter", "twitter-square", "vimeo", "vimeo-square", "whatsapp", "whatsapp-square", "youtube", "google", "designers-italia", "team-digitale"];
4
+ export declare const IconNameArray: readonly ["arrow-down", "arrow-down-circle", "arrow-down-triangle", "arrow-left", "arrow-left-circle", "arrow-left-triangle", "arrow-right", "arrow-right-circle", "arrow-right-triangle", "arrow-up", "arrow-up-circle", "arrow-up-triangle", "ban", "bookmark", "box", "burger", "calendar", "camera", "card", "chart-line", "check", "check-circle", "chevron-left", "chevron-right", "clip", "clock", "close", "close-big", "close-circle", "code-circle", "comment", "copy", "delete", "download", "error", "exchange-circle", "expand", "external-link", "flag", "folder", "fullscreen", "funnel", "hearing", "help", "help-circle", "horn", "inbox", "info-circle", "key", "link", "list", "locked", "logout", "mail", "mail-open", "map-marker", "map-marker-circle", "map-marker-minus", "map-marker-plus", "maximize", "maximize-alt", "minimize", "minus", "minus-circle", "more-actions", "more-items", "note", "pa", "password-invisible", "password-visible", "pencil", "piattaforme", "pin", "plug", "plus", "plus-circle", "presentation", "print", "refresh", "restore", "rss", "rss-square", "search", "settings", "share", "software", "star-full", "star-outline", "telephone", "tool", "unlocked", "upload", "user", "video", "warning", "warning-circle", "wifi", "zoom-in", "zoom-out", "file", "files", "file-audio", "file-compressed", "file-csv", "file-json", "file-odp", "file-ods", "file-odt", "file-pdf", "file-pdf-ext", "file-sheet", "file-slides", "file-ppt", "file-txt", "file-video", "file-xml", "behance", "facebook", "facebook-square", "figma", "figma-square", "flickr", "flickr-square", "github", "instagram", "linkedin", "linkedin-square", "mastodon", "mastodon-square", "medium", "medium-square", "moodle", "moodle-square", "pinterest", "pinterest-square", "quora", "quora-square", "reddit", "reddit-square", "slack", "slack-square", "snapchat", "snapchat-square", "stackexchange", "stackexchange-square", "stackoverflow", "stackoverflow-square", "telegram", "threads", "threads-square", "tiktok", "tiktok-square", "twitter", "twitter-square", "vimeo", "vimeo-square", "whatsapp", "whatsapp-square", "youtube", "google", "designers-italia", "team-digitale"];
@@ -23,6 +23,10 @@ export declare const VAT_NUMBER_REGEX: RegExp;
23
23
  * Italian CAP Regex
24
24
  */
25
25
  export declare const CAP_REGEX: RegExp;
26
+ /**
27
+ * Italian Plate Regex
28
+ */
29
+ export declare const PLATE_REGEX: RegExp;
26
30
  /**
27
31
  * IBAN Regex
28
32
  * https://blog.marketto.it/en/2018/06/validate-any-country-iban/
@@ -58,6 +58,10 @@ export declare class ItValidators {
58
58
  * IBAN validator
59
59
  */
60
60
  static get iban(): ValidatorFn;
61
+ /**
62
+ * Italian plate validator
63
+ */
64
+ static get plate(): ValidatorFn;
61
65
  /**
62
66
  * Check if value is a valid RegExp
63
67
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "design-angular-kit",
3
3
  "description": "Un toolkit Angular conforme alle linee guida di design per i servizi web della PA",
4
- "version": "1.0.2",
4
+ "version": "1.0.3",
5
5
  "license": "BSD-3-Clause",
6
6
  "keywords": [
7
7
  "angular",
package/public_api.d.ts CHANGED
@@ -44,6 +44,9 @@ export * from './lib/components/core/table/table.module';
44
44
  export * from './lib/components/core/table/table.component';
45
45
  export * from './lib/components/core/table/sort/sort.directive';
46
46
  export * from './lib/components/core/table/sort/sort-header/sort-header.component';
47
+ export * from './lib/components/core/timeline/timeline.module';
48
+ export * from './lib/components/core/timeline/timeline.component';
49
+ export * from './lib/components/core/timeline/timeline-item/timeline-item.component';
47
50
  export * from './lib/components/core/tooltip/tooltip.directive';
48
51
  export * from './lib/components/form/form.module';
49
52
  export * from './lib/components/form/autocomplete/autocomplete.component';