@entake/particle 17.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +7 -0
- package/README.md +396 -0
- package/app/modules/accordion/accordion.component.d.ts +26 -0
- package/app/modules/accordion/accordion.module.d.ts +11 -0
- package/app/modules/accordion/directives/accordion-content.directive.d.ts +8 -0
- package/app/modules/accordion/directives/accordion-header.directive.d.ts +8 -0
- package/app/modules/accordion/directives/accordion-item.directive.d.ts +13 -0
- package/app/modules/background-carousel/background-carousel.directive.d.ts +42 -0
- package/app/modules/background-carousel/carousel-options.model.d.ts +30 -0
- package/app/modules/background-carousel/particle-background-carousel.module.d.ts +8 -0
- package/app/modules/checkbox/checkbox.component.d.ts +43 -0
- package/app/modules/checkbox/checkbox.module.d.ts +9 -0
- package/app/modules/color-picker/color-picker.component.d.ts +149 -0
- package/app/modules/color-picker/color-picker.module.d.ts +9 -0
- package/app/modules/date-picker/components/calendar/calendar.component.d.ts +211 -0
- package/app/modules/date-picker/components/date-range-picker/date-range-picker.component.d.ts +95 -0
- package/app/modules/date-picker/date-picker.component.d.ts +259 -0
- package/app/modules/date-picker/date-picker.module.d.ts +15 -0
- package/app/modules/dialog/dialog.component.d.ts +87 -0
- package/app/modules/dialog/dialog.module.d.ts +9 -0
- package/app/modules/dropdown/dropdown.component.d.ts +288 -0
- package/app/modules/dropdown/dropdown.module.d.ts +9 -0
- package/app/modules/dropdown/models/dropdown-option-group.model.d.ts +16 -0
- package/app/modules/dropdown/models/dropdown-option.model.d.ts +25 -0
- package/app/modules/endpoint-state/components/endpoint-state.component.d.ts +46 -0
- package/app/modules/endpoint-state/endpoint-state.module.d.ts +8 -0
- package/app/modules/icons/components/icon-select.component.d.ts +229 -0
- package/app/modules/icons/models/fontawesome-icons-brands.model.d.ts +13 -0
- package/app/modules/icons/models/fontawesome-icons-regular.model.d.ts +13 -0
- package/app/modules/icons/models/fontawesome-icons-solid.model.d.ts +13 -0
- package/app/modules/icons/models/particle-icons-light.model.d.ts +197 -0
- package/app/modules/icons/models/particle-icons-regular.model.d.ts +205 -0
- package/app/modules/icons/models/particle-icons-solid.model.d.ts +365 -0
- package/app/modules/icons/particle-icons.module.d.ts +13 -0
- package/app/modules/icons/services/icons.service.d.ts +44 -0
- package/app/modules/idle-timeout/idle-timeout.component.d.ts +35 -0
- package/app/modules/idle-timeout/idle-timer.d.ts +14 -0
- package/app/modules/idle-timeout/particle-idle-timeout.module.d.ts +9 -0
- package/app/modules/input-mask/input-mask.component.d.ts +86 -0
- package/app/modules/input-mask/input-mask.module.d.ts +8 -0
- package/app/modules/keyfilter/keyfilter.directive.d.ts +60 -0
- package/app/modules/keyfilter/keyfilter.module.d.ts +8 -0
- package/app/modules/layout/components/layout-full-framing/layout-full-framing.component.d.ts +27 -0
- package/app/modules/layout/components/layout-fullwidth-sidebar/layout-fullwidth-sidebar.component.d.ts +23 -0
- package/app/modules/layout/layout.module.d.ts +10 -0
- package/app/modules/loader/components/loader.component.d.ts +11 -0
- package/app/modules/loader/loader.module.d.ts +8 -0
- package/app/modules/multi-select/models/multi-select-option-group.model.d.ts +16 -0
- package/app/modules/multi-select/models/multi-select-option.model.d.ts +25 -0
- package/app/modules/multi-select/multi-select.component.d.ts +279 -0
- package/app/modules/multi-select/multi-select.module.d.ts +8 -0
- package/app/modules/notification/models/notification.model.d.ts +21 -0
- package/app/modules/notification/notification.component.d.ts +46 -0
- package/app/modules/notification/notification.module.d.ts +8 -0
- package/app/modules/notification/services/notification.service.d.ts +54 -0
- package/app/modules/ordinal-number-pipe/ordinal-number-pipe.module.d.ts +8 -0
- package/app/modules/ordinal-number-pipe/ordinal-number.pipe.d.ts +15 -0
- package/app/modules/paginator/pagination-event.model.d.ts +24 -0
- package/app/modules/paginator/paginator.component.d.ts +103 -0
- package/app/modules/paginator/particle-paginator.module.d.ts +13 -0
- package/app/modules/popover/popover.component.d.ts +140 -0
- package/app/modules/popover/popover.module.d.ts +9 -0
- package/app/modules/profile-pic/particle-profile-pic.module.d.ts +9 -0
- package/app/modules/profile-pic/profile-pic.component.d.ts +32 -0
- package/app/modules/progress-bar/progress-bar.component.d.ts +16 -0
- package/app/modules/progress-bar/progress-bar.module.d.ts +8 -0
- package/app/modules/push-container/particle-push-container.module.d.ts +9 -0
- package/app/modules/push-container/push-container-state.model.d.ts +7 -0
- package/app/modules/push-container/push-container.component.d.ts +137 -0
- package/app/modules/rich-text/particle-rich-text.module.d.ts +15 -0
- package/app/modules/rich-text/render-rich-text.component.d.ts +6 -0
- package/app/modules/rich-text/rich-text-capabilities.model.d.ts +7 -0
- package/app/modules/rich-text/rich-text.component.d.ts +48 -0
- package/app/modules/scroll-to-top/particle-scroll-to-top.module.d.ts +8 -0
- package/app/modules/scroll-to-top/scroll-to-top.component.d.ts +19 -0
- package/app/modules/slideover/particle-slideover.module.d.ts +8 -0
- package/app/modules/slideover/slideover.component.d.ts +35 -0
- package/app/modules/slider/slider.component.d.ts +143 -0
- package/app/modules/slider/slider.module.d.ts +9 -0
- package/app/modules/theming/components/theming.component.d.ts +43 -0
- package/app/modules/theming/models/theme.model.d.ts +88 -0
- package/app/modules/theming/services/theme-change-detection.service.d.ts +26 -0
- package/app/modules/theming/services/theming.service.d.ts +142 -0
- package/app/modules/theming/theming.module.d.ts +12 -0
- package/app/modules/toggle-switch/models/toggle-options.model.d.ts +11 -0
- package/app/modules/toggle-switch/toggle-switch.component.d.ts +43 -0
- package/app/modules/toggle-switch/toggle-switch.module.d.ts +8 -0
- package/app/modules/tooltip/tooltip.directive.d.ts +157 -0
- package/app/modules/tooltip/tooltip.module.d.ts +8 -0
- package/app/modules/week-picker/week-picker.component.d.ts +289 -0
- package/app/modules/week-picker/week-picker.module.d.ts +13 -0
- package/app/shared/enums/endpoint-status.enum.d.ts +9 -0
- package/app/shared/interceptors/json.interceptor.d.ts +17 -0
- package/app/shared/models/auditable.model.d.ts +21 -0
- package/app/shared/models/data-list.model.d.ts +9 -0
- package/app/shared/models/id.model.d.ts +9 -0
- package/app/shared/models/observable-container.d.ts +8 -0
- package/app/shared/models/particle-component-text.model.d.ts +211 -0
- package/app/shared/services/base-data.service.d.ts +130 -0
- package/app/shared/services/dialog.service.d.ts +10 -0
- package/app/shared/services/local-storage.service.d.ts +41 -0
- package/esm2022/app/modules/accordion/accordion.component.mjs +101 -0
- package/esm2022/app/modules/accordion/accordion.module.mjs +37 -0
- package/esm2022/app/modules/accordion/directives/accordion-content.directive.mjs +17 -0
- package/esm2022/app/modules/accordion/directives/accordion-header.directive.mjs +17 -0
- package/esm2022/app/modules/accordion/directives/accordion-item.directive.mjs +36 -0
- package/esm2022/app/modules/background-carousel/background-carousel.directive.mjs +91 -0
- package/esm2022/app/modules/background-carousel/carousel-options.model.mjs +36 -0
- package/esm2022/app/modules/background-carousel/particle-background-carousel.module.mjs +24 -0
- package/esm2022/app/modules/checkbox/checkbox.component.mjs +108 -0
- package/esm2022/app/modules/checkbox/checkbox.module.mjs +28 -0
- package/esm2022/app/modules/color-picker/color-picker.component.mjs +306 -0
- package/esm2022/app/modules/color-picker/color-picker.module.mjs +19 -0
- package/esm2022/app/modules/date-picker/components/calendar/calendar.component.mjs +496 -0
- package/esm2022/app/modules/date-picker/components/date-range-picker/date-range-picker.component.mjs +250 -0
- package/esm2022/app/modules/date-picker/date-picker.component.mjs +538 -0
- package/esm2022/app/modules/date-picker/date-picker.module.mjs +56 -0
- package/esm2022/app/modules/dialog/dialog.component.mjs +177 -0
- package/esm2022/app/modules/dialog/dialog.module.mjs +28 -0
- package/esm2022/app/modules/dropdown/dropdown.component.mjs +682 -0
- package/esm2022/app/modules/dropdown/dropdown.module.mjs +28 -0
- package/esm2022/app/modules/dropdown/models/dropdown-option-group.model.mjs +2 -0
- package/esm2022/app/modules/dropdown/models/dropdown-option.model.mjs +2 -0
- package/esm2022/app/modules/endpoint-state/components/endpoint-state.component.mjs +75 -0
- package/esm2022/app/modules/endpoint-state/endpoint-state.module.mjs +22 -0
- package/esm2022/app/modules/icons/components/icon-select.component.mjs +377 -0
- package/esm2022/app/modules/icons/models/fontawesome-icons-brands.model.mjs +471 -0
- package/esm2022/app/modules/icons/models/fontawesome-icons-regular.model.mjs +166 -0
- package/esm2022/app/modules/icons/models/fontawesome-icons-solid.model.mjs +1016 -0
- package/esm2022/app/modules/icons/models/particle-icons-light.model.mjs +310 -0
- package/esm2022/app/modules/icons/models/particle-icons-regular.model.mjs +324 -0
- package/esm2022/app/modules/icons/models/particle-icons-solid.model.mjs +581 -0
- package/esm2022/app/modules/icons/particle-icons.module.mjs +66 -0
- package/esm2022/app/modules/icons/services/icons.service.mjs +86 -0
- package/esm2022/app/modules/idle-timeout/idle-timeout.component.mjs +85 -0
- package/esm2022/app/modules/idle-timeout/idle-timer.mjs +66 -0
- package/esm2022/app/modules/idle-timeout/particle-idle-timeout.module.mjs +28 -0
- package/esm2022/app/modules/input-mask/input-mask.component.mjs +594 -0
- package/esm2022/app/modules/input-mask/input-mask.module.mjs +18 -0
- package/esm2022/app/modules/keyfilter/keyfilter.directive.mjs +158 -0
- package/esm2022/app/modules/keyfilter/keyfilter.module.mjs +18 -0
- package/esm2022/app/modules/layout/components/layout-full-framing/layout-full-framing.component.mjs +79 -0
- package/esm2022/app/modules/layout/components/layout-fullwidth-sidebar/layout-fullwidth-sidebar.component.mjs +65 -0
- package/esm2022/app/modules/layout/layout.module.mjs +33 -0
- package/esm2022/app/modules/loader/components/loader.component.mjs +30 -0
- package/esm2022/app/modules/loader/loader.module.mjs +24 -0
- package/esm2022/app/modules/multi-select/models/multi-select-option-group.model.mjs +2 -0
- package/esm2022/app/modules/multi-select/models/multi-select-option.model.mjs +2 -0
- package/esm2022/app/modules/multi-select/multi-select.component.mjs +665 -0
- package/esm2022/app/modules/multi-select/multi-select.module.mjs +18 -0
- package/esm2022/app/modules/notification/models/notification.model.mjs +2 -0
- package/esm2022/app/modules/notification/notification.component.mjs +122 -0
- package/esm2022/app/modules/notification/notification.module.mjs +18 -0
- package/esm2022/app/modules/notification/services/notification.service.mjs +84 -0
- package/esm2022/app/modules/ordinal-number-pipe/ordinal-number-pipe.module.mjs +20 -0
- package/esm2022/app/modules/ordinal-number-pipe/ordinal-number.pipe.mjs +49 -0
- package/esm2022/app/modules/paginator/pagination-event.model.mjs +29 -0
- package/esm2022/app/modules/paginator/paginator.component.mjs +207 -0
- package/esm2022/app/modules/paginator/particle-paginator.module.mjs +48 -0
- package/esm2022/app/modules/popover/popover.component.mjs +352 -0
- package/esm2022/app/modules/popover/popover.module.mjs +24 -0
- package/esm2022/app/modules/profile-pic/particle-profile-pic.module.mjs +28 -0
- package/esm2022/app/modules/profile-pic/profile-pic.component.mjs +74 -0
- package/esm2022/app/modules/progress-bar/progress-bar.component.mjs +43 -0
- package/esm2022/app/modules/progress-bar/progress-bar.module.mjs +24 -0
- package/esm2022/app/modules/push-container/particle-push-container.module.mjs +26 -0
- package/esm2022/app/modules/push-container/push-container-state.model.mjs +2 -0
- package/esm2022/app/modules/push-container/push-container.component.mjs +363 -0
- package/esm2022/app/modules/rich-text/particle-rich-text.module.mjs +64 -0
- package/esm2022/app/modules/rich-text/render-rich-text.component.mjs +18 -0
- package/esm2022/app/modules/rich-text/rich-text-capabilities.model.mjs +2 -0
- package/esm2022/app/modules/rich-text/rich-text.component.mjs +187 -0
- package/esm2022/app/modules/scroll-to-top/particle-scroll-to-top.module.mjs +24 -0
- package/esm2022/app/modules/scroll-to-top/scroll-to-top.component.mjs +49 -0
- package/esm2022/app/modules/slideover/particle-slideover.module.mjs +24 -0
- package/esm2022/app/modules/slideover/slideover.component.mjs +115 -0
- package/esm2022/app/modules/slider/slider.component.mjs +243 -0
- package/esm2022/app/modules/slider/slider.module.mjs +26 -0
- package/esm2022/app/modules/theming/components/theming.component.mjs +86 -0
- package/esm2022/app/modules/theming/models/theme.model.mjs +9 -0
- package/esm2022/app/modules/theming/services/theme-change-detection.service.mjs +38 -0
- package/esm2022/app/modules/theming/services/theming.service.mjs +507 -0
- package/esm2022/app/modules/theming/theming.module.mjs +55 -0
- package/esm2022/app/modules/toggle-switch/models/toggle-options.model.mjs +2 -0
- package/esm2022/app/modules/toggle-switch/toggle-switch.component.mjs +107 -0
- package/esm2022/app/modules/toggle-switch/toggle-switch.module.mjs +24 -0
- package/esm2022/app/modules/tooltip/tooltip.directive.mjs +381 -0
- package/esm2022/app/modules/tooltip/tooltip.module.mjs +18 -0
- package/esm2022/app/modules/week-picker/week-picker.component.mjs +511 -0
- package/esm2022/app/modules/week-picker/week-picker.module.mjs +40 -0
- package/esm2022/app/shared/enums/endpoint-status.enum.mjs +11 -0
- package/esm2022/app/shared/interceptors/json.interceptor.mjs +23 -0
- package/esm2022/app/shared/models/auditable.model.mjs +2 -0
- package/esm2022/app/shared/models/data-list.model.mjs +2 -0
- package/esm2022/app/shared/models/id.model.mjs +2 -0
- package/esm2022/app/shared/models/observable-container.mjs +15 -0
- package/esm2022/app/shared/models/particle-component-text.model.mjs +2 -0
- package/esm2022/app/shared/services/base-data.service.mjs +190 -0
- package/esm2022/app/shared/services/dialog.service.mjs +50 -0
- package/esm2022/app/shared/services/local-storage.service.mjs +60 -0
- package/esm2022/entake-particle.mjs +5 -0
- package/esm2022/public_api.mjs +98 -0
- package/fesm2022/entake-particle.mjs +12477 -0
- package/fesm2022/entake-particle.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/package.json +65 -0
- package/particle.css +1 -0
- package/public_api.d.ts +97 -0
|
@@ -0,0 +1,205 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Particle Icons - Regular
|
|
3
|
+
*/
|
|
4
|
+
export declare class ParticleIconsRegular {
|
|
5
|
+
/**
|
|
6
|
+
* wir fa-address
|
|
7
|
+
*/
|
|
8
|
+
static wirAddress: {
|
|
9
|
+
prefix: string;
|
|
10
|
+
iconName: string;
|
|
11
|
+
icon: (string | number | any[])[];
|
|
12
|
+
};
|
|
13
|
+
/**
|
|
14
|
+
* wir fa-alpha-text
|
|
15
|
+
*/
|
|
16
|
+
static wirAlphaText: {
|
|
17
|
+
prefix: string;
|
|
18
|
+
iconName: string;
|
|
19
|
+
icon: (string | number | any[])[];
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* wir fa-checkbox
|
|
23
|
+
*/
|
|
24
|
+
static wirCheckbox: {
|
|
25
|
+
prefix: string;
|
|
26
|
+
iconName: string;
|
|
27
|
+
icon: (string | number | any[])[];
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* wir fa-date
|
|
31
|
+
*/
|
|
32
|
+
static wirDate: {
|
|
33
|
+
prefix: string;
|
|
34
|
+
iconName: string;
|
|
35
|
+
icon: (string | number | any[])[];
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* wir fa-date-range
|
|
39
|
+
*/
|
|
40
|
+
static wirDateRange: {
|
|
41
|
+
prefix: string;
|
|
42
|
+
iconName: string;
|
|
43
|
+
icon: (string | number | any[])[];
|
|
44
|
+
};
|
|
45
|
+
/**
|
|
46
|
+
* wir fa-divider
|
|
47
|
+
*/
|
|
48
|
+
static wirDivider: {
|
|
49
|
+
prefix: string;
|
|
50
|
+
iconName: string;
|
|
51
|
+
icon: (string | number | any[])[];
|
|
52
|
+
};
|
|
53
|
+
/**
|
|
54
|
+
* wir fa-document-upload
|
|
55
|
+
*/
|
|
56
|
+
static wirDocumentUpload: {
|
|
57
|
+
prefix: string;
|
|
58
|
+
iconName: string;
|
|
59
|
+
icon: (string | number | any[])[];
|
|
60
|
+
};
|
|
61
|
+
/**
|
|
62
|
+
* wir fa-dropdown
|
|
63
|
+
*/
|
|
64
|
+
static wirDropdown: {
|
|
65
|
+
prefix: string;
|
|
66
|
+
iconName: string;
|
|
67
|
+
icon: (string | number | any[])[];
|
|
68
|
+
};
|
|
69
|
+
/**
|
|
70
|
+
* wir fa-email
|
|
71
|
+
*/
|
|
72
|
+
static wirEmail: {
|
|
73
|
+
prefix: string;
|
|
74
|
+
iconName: string;
|
|
75
|
+
icon: (string | number | any[])[];
|
|
76
|
+
};
|
|
77
|
+
/**
|
|
78
|
+
* wir fa-fein
|
|
79
|
+
*/
|
|
80
|
+
static wirFEIN: {
|
|
81
|
+
prefix: string;
|
|
82
|
+
iconName: string;
|
|
83
|
+
icon: (string | number | any[])[];
|
|
84
|
+
};
|
|
85
|
+
/**
|
|
86
|
+
* wir fa-html
|
|
87
|
+
*/
|
|
88
|
+
static wirHTML: {
|
|
89
|
+
prefix: string;
|
|
90
|
+
iconName: string;
|
|
91
|
+
icon: (string | number | any[])[];
|
|
92
|
+
};
|
|
93
|
+
/**
|
|
94
|
+
* wir fa-license
|
|
95
|
+
*/
|
|
96
|
+
static wirLicense: {
|
|
97
|
+
prefix: string;
|
|
98
|
+
iconName: string;
|
|
99
|
+
icon: (string | number | any[])[];
|
|
100
|
+
};
|
|
101
|
+
/**
|
|
102
|
+
* wir fa-mmis-npi
|
|
103
|
+
*/
|
|
104
|
+
static wirMMISNPI: {
|
|
105
|
+
prefix: string;
|
|
106
|
+
iconName: string;
|
|
107
|
+
icon: (string | number | any[])[];
|
|
108
|
+
};
|
|
109
|
+
/**
|
|
110
|
+
* wir fa-money
|
|
111
|
+
*/
|
|
112
|
+
static wirMoney: {
|
|
113
|
+
prefix: string;
|
|
114
|
+
iconName: string;
|
|
115
|
+
icon: (string | number | any[])[];
|
|
116
|
+
};
|
|
117
|
+
/**
|
|
118
|
+
* wir fa-multi-select
|
|
119
|
+
*/
|
|
120
|
+
static wirMultiSelect: {
|
|
121
|
+
prefix: string;
|
|
122
|
+
iconName: string;
|
|
123
|
+
icon: (string | number | any[])[];
|
|
124
|
+
};
|
|
125
|
+
/**
|
|
126
|
+
* wir fa-npi
|
|
127
|
+
*/
|
|
128
|
+
static wirNPI: {
|
|
129
|
+
prefix: string;
|
|
130
|
+
iconName: string;
|
|
131
|
+
icon: (string | number | any[])[];
|
|
132
|
+
};
|
|
133
|
+
/**
|
|
134
|
+
* wir fa-numeric-text
|
|
135
|
+
*/
|
|
136
|
+
static wirNumericText: {
|
|
137
|
+
prefix: string;
|
|
138
|
+
iconName: string;
|
|
139
|
+
icon: (string | number | any[])[];
|
|
140
|
+
};
|
|
141
|
+
/**
|
|
142
|
+
* wir fa-person-name
|
|
143
|
+
*/
|
|
144
|
+
static wirPersonName: {
|
|
145
|
+
prefix: string;
|
|
146
|
+
iconName: string;
|
|
147
|
+
icon: (string | number | any[])[];
|
|
148
|
+
};
|
|
149
|
+
/**
|
|
150
|
+
* wir fa-phone
|
|
151
|
+
*/
|
|
152
|
+
static wirPhone: {
|
|
153
|
+
prefix: string;
|
|
154
|
+
iconName: string;
|
|
155
|
+
icon: (string | number | any[])[];
|
|
156
|
+
};
|
|
157
|
+
/**
|
|
158
|
+
* wir fa-pid
|
|
159
|
+
*/
|
|
160
|
+
static wirPID: {
|
|
161
|
+
prefix: string;
|
|
162
|
+
iconName: string;
|
|
163
|
+
icon: (string | number | any[])[];
|
|
164
|
+
};
|
|
165
|
+
/**
|
|
166
|
+
* wir fa-radio-buttons
|
|
167
|
+
*/
|
|
168
|
+
static wirRadioButtons: {
|
|
169
|
+
prefix: string;
|
|
170
|
+
iconName: string;
|
|
171
|
+
icon: (string | number | any[])[];
|
|
172
|
+
};
|
|
173
|
+
/**
|
|
174
|
+
* wir fa-ssn
|
|
175
|
+
*/
|
|
176
|
+
static wirSSN: {
|
|
177
|
+
prefix: string;
|
|
178
|
+
iconName: string;
|
|
179
|
+
icon: (string | number | any[])[];
|
|
180
|
+
};
|
|
181
|
+
/**
|
|
182
|
+
* wir fa-text-area
|
|
183
|
+
*/
|
|
184
|
+
static wirTextArea: {
|
|
185
|
+
prefix: string;
|
|
186
|
+
iconName: string;
|
|
187
|
+
icon: (string | number | any[])[];
|
|
188
|
+
};
|
|
189
|
+
/**
|
|
190
|
+
* wir fa-text-box
|
|
191
|
+
*/
|
|
192
|
+
static wirTextBox: {
|
|
193
|
+
prefix: string;
|
|
194
|
+
iconName: string;
|
|
195
|
+
icon: (string | number | any[])[];
|
|
196
|
+
};
|
|
197
|
+
/**
|
|
198
|
+
* Full list of regular icons.
|
|
199
|
+
*/
|
|
200
|
+
static icons: {
|
|
201
|
+
prefix: string;
|
|
202
|
+
iconName: string;
|
|
203
|
+
icon: (string | number | any[])[];
|
|
204
|
+
}[];
|
|
205
|
+
}
|
|
@@ -0,0 +1,365 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Particle Solid Icons to be added to font awesome 5.
|
|
3
|
+
*/
|
|
4
|
+
export declare class ParticleIconsSolid {
|
|
5
|
+
/**
|
|
6
|
+
* wis fa-address
|
|
7
|
+
*/
|
|
8
|
+
static wisAddress: {
|
|
9
|
+
prefix: string;
|
|
10
|
+
iconName: string;
|
|
11
|
+
icon: (string | number | any[])[];
|
|
12
|
+
};
|
|
13
|
+
/**
|
|
14
|
+
* wis fa-alpha-text
|
|
15
|
+
*/
|
|
16
|
+
static wisAlphaText: {
|
|
17
|
+
prefix: string;
|
|
18
|
+
iconName: string;
|
|
19
|
+
icon: (string | number | any[])[];
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* wis fa-archive
|
|
23
|
+
*/
|
|
24
|
+
static wisArchive: {
|
|
25
|
+
prefix: string;
|
|
26
|
+
iconName: string;
|
|
27
|
+
icon: (string | number | any[])[];
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* wis fa-checkbox
|
|
31
|
+
*/
|
|
32
|
+
static wisCheckbox: {
|
|
33
|
+
prefix: string;
|
|
34
|
+
iconName: string;
|
|
35
|
+
icon: (string | number | any[])[];
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* wis fa-clock
|
|
39
|
+
*/
|
|
40
|
+
static wisClock: {
|
|
41
|
+
prefix: string;
|
|
42
|
+
iconName: string;
|
|
43
|
+
icon: (string | number | any[])[];
|
|
44
|
+
};
|
|
45
|
+
/**
|
|
46
|
+
* wis fa-date
|
|
47
|
+
*/
|
|
48
|
+
static wisDate: {
|
|
49
|
+
prefix: string;
|
|
50
|
+
iconName: string;
|
|
51
|
+
icon: (string | number | any[])[];
|
|
52
|
+
};
|
|
53
|
+
/**
|
|
54
|
+
* wis fa-date-range
|
|
55
|
+
*/
|
|
56
|
+
static wisDateRange: {
|
|
57
|
+
prefix: string;
|
|
58
|
+
iconName: string;
|
|
59
|
+
icon: (string | number | any[])[];
|
|
60
|
+
};
|
|
61
|
+
/**
|
|
62
|
+
* wis fa-divider
|
|
63
|
+
*/
|
|
64
|
+
static wisDivider: {
|
|
65
|
+
prefix: string;
|
|
66
|
+
iconName: string;
|
|
67
|
+
icon: (string | number | any[])[];
|
|
68
|
+
};
|
|
69
|
+
/**
|
|
70
|
+
* wis fa-document
|
|
71
|
+
*/
|
|
72
|
+
static wisDocument: {
|
|
73
|
+
prefix: string;
|
|
74
|
+
iconName: string;
|
|
75
|
+
icon: (string | number | any[])[];
|
|
76
|
+
};
|
|
77
|
+
/**
|
|
78
|
+
* wis fa-document-upload
|
|
79
|
+
*/
|
|
80
|
+
static wisDocumentUpload: {
|
|
81
|
+
prefix: string;
|
|
82
|
+
iconName: string;
|
|
83
|
+
icon: (string | number | any[])[];
|
|
84
|
+
};
|
|
85
|
+
/**
|
|
86
|
+
* wis fa-dropdown
|
|
87
|
+
*/
|
|
88
|
+
static wisDropdown: {
|
|
89
|
+
prefix: string;
|
|
90
|
+
iconName: string;
|
|
91
|
+
icon: (string | number | any[])[];
|
|
92
|
+
};
|
|
93
|
+
/**
|
|
94
|
+
* wis fa-email
|
|
95
|
+
*/
|
|
96
|
+
static wisEmail: {
|
|
97
|
+
prefix: string;
|
|
98
|
+
iconName: string;
|
|
99
|
+
icon: (string | number | any[])[];
|
|
100
|
+
};
|
|
101
|
+
/**
|
|
102
|
+
* wis fa-employee-id
|
|
103
|
+
*/
|
|
104
|
+
static wisEmployeeID: {
|
|
105
|
+
prefix: string;
|
|
106
|
+
iconName: string;
|
|
107
|
+
icon: (string | number | any[])[];
|
|
108
|
+
};
|
|
109
|
+
/**
|
|
110
|
+
* wis fa-existing-license
|
|
111
|
+
*/
|
|
112
|
+
static wisExistingLicense: {
|
|
113
|
+
prefix: string;
|
|
114
|
+
iconName: string;
|
|
115
|
+
icon: (string | number | any[])[];
|
|
116
|
+
};
|
|
117
|
+
/**
|
|
118
|
+
* wis fa-fein
|
|
119
|
+
*/
|
|
120
|
+
static wisFEIN: {
|
|
121
|
+
prefix: string;
|
|
122
|
+
iconName: string;
|
|
123
|
+
icon: (string | number | any[])[];
|
|
124
|
+
};
|
|
125
|
+
/**
|
|
126
|
+
* wis fa-group-pid
|
|
127
|
+
*/
|
|
128
|
+
static wisGroupPID: {
|
|
129
|
+
prefix: string;
|
|
130
|
+
iconName: string;
|
|
131
|
+
icon: (string | number | any[])[];
|
|
132
|
+
};
|
|
133
|
+
/**
|
|
134
|
+
* wis fa-group-member-pid
|
|
135
|
+
*/
|
|
136
|
+
static wisGroupMemberPID: {
|
|
137
|
+
prefix: string;
|
|
138
|
+
iconName: string;
|
|
139
|
+
icon: (string | number | any[])[];
|
|
140
|
+
};
|
|
141
|
+
/**
|
|
142
|
+
* wis fa-html
|
|
143
|
+
*/
|
|
144
|
+
static wisHTML: {
|
|
145
|
+
prefix: string;
|
|
146
|
+
iconName: string;
|
|
147
|
+
icon: (string | number | any[])[];
|
|
148
|
+
};
|
|
149
|
+
/**
|
|
150
|
+
* wis fa-icon-header
|
|
151
|
+
*/
|
|
152
|
+
static wisIconHeader: {
|
|
153
|
+
prefix: string;
|
|
154
|
+
iconName: string;
|
|
155
|
+
icon: (string | number | any[])[];
|
|
156
|
+
};
|
|
157
|
+
/**
|
|
158
|
+
* wis fa-icon-header
|
|
159
|
+
*/
|
|
160
|
+
static wisLabPID: {
|
|
161
|
+
prefix: string;
|
|
162
|
+
iconName: string;
|
|
163
|
+
icon: (string | number | any[])[];
|
|
164
|
+
};
|
|
165
|
+
/**
|
|
166
|
+
* wis fa-license
|
|
167
|
+
*/
|
|
168
|
+
static wisLicense: {
|
|
169
|
+
prefix: string;
|
|
170
|
+
iconName: string;
|
|
171
|
+
icon: (string | number | any[])[];
|
|
172
|
+
};
|
|
173
|
+
/**
|
|
174
|
+
* wis fa-menu
|
|
175
|
+
*/
|
|
176
|
+
static wisMenu: {
|
|
177
|
+
prefix: string;
|
|
178
|
+
iconName: string;
|
|
179
|
+
icon: (string | number | any[])[];
|
|
180
|
+
};
|
|
181
|
+
/**
|
|
182
|
+
* wis fa-mmis-npi
|
|
183
|
+
*/
|
|
184
|
+
static wisMMISNPI: {
|
|
185
|
+
prefix: string;
|
|
186
|
+
iconName: string;
|
|
187
|
+
icon: (string | number | any[])[];
|
|
188
|
+
};
|
|
189
|
+
/**
|
|
190
|
+
* wis fa-money
|
|
191
|
+
*/
|
|
192
|
+
static wisMoney: {
|
|
193
|
+
prefix: string;
|
|
194
|
+
iconName: string;
|
|
195
|
+
icon: (string | number | any[])[];
|
|
196
|
+
};
|
|
197
|
+
/**
|
|
198
|
+
* wis fa-multi-select
|
|
199
|
+
*/
|
|
200
|
+
static wisMultiSelect: {
|
|
201
|
+
prefix: string;
|
|
202
|
+
iconName: string;
|
|
203
|
+
icon: (string | number | any[])[];
|
|
204
|
+
};
|
|
205
|
+
/**
|
|
206
|
+
* wis fa-npi
|
|
207
|
+
*/
|
|
208
|
+
static wisNPI: {
|
|
209
|
+
prefix: string;
|
|
210
|
+
iconName: string;
|
|
211
|
+
icon: (string | number | any[])[];
|
|
212
|
+
};
|
|
213
|
+
/**
|
|
214
|
+
* wis fa-numeric-text
|
|
215
|
+
*/
|
|
216
|
+
static wisNumericText: {
|
|
217
|
+
prefix: string;
|
|
218
|
+
iconName: string;
|
|
219
|
+
icon: (string | number | any[])[];
|
|
220
|
+
};
|
|
221
|
+
/**
|
|
222
|
+
* wis fa-percent-slider
|
|
223
|
+
*/
|
|
224
|
+
static wisPercentSlider: {
|
|
225
|
+
prefix: string;
|
|
226
|
+
iconName: string;
|
|
227
|
+
icon: (string | number | any[])[];
|
|
228
|
+
};
|
|
229
|
+
/**
|
|
230
|
+
* wis fa-person-name
|
|
231
|
+
*/
|
|
232
|
+
static wisPersonName: {
|
|
233
|
+
prefix: string;
|
|
234
|
+
iconName: string;
|
|
235
|
+
icon: (string | number | any[])[];
|
|
236
|
+
};
|
|
237
|
+
/**
|
|
238
|
+
* wis fa-pharmacy-pid
|
|
239
|
+
*/
|
|
240
|
+
static wisPharmacyPID: {
|
|
241
|
+
prefix: string;
|
|
242
|
+
iconName: string;
|
|
243
|
+
icon: (string | number | any[])[];
|
|
244
|
+
};
|
|
245
|
+
/**
|
|
246
|
+
* wis fa-phone
|
|
247
|
+
*/
|
|
248
|
+
static wisPhone: {
|
|
249
|
+
prefix: string;
|
|
250
|
+
iconName: string;
|
|
251
|
+
icon: (string | number | any[])[];
|
|
252
|
+
};
|
|
253
|
+
/**
|
|
254
|
+
* wis fa-physical-address
|
|
255
|
+
*/
|
|
256
|
+
static wisPhysicalAddress: {
|
|
257
|
+
prefix: string;
|
|
258
|
+
iconName: string;
|
|
259
|
+
icon: (string | number | any[])[];
|
|
260
|
+
};
|
|
261
|
+
/**
|
|
262
|
+
* wis fa-physician-license
|
|
263
|
+
*/
|
|
264
|
+
static wisPhysicianLicense: {
|
|
265
|
+
prefix: string;
|
|
266
|
+
iconName: string;
|
|
267
|
+
icon: (string | number | any[])[];
|
|
268
|
+
};
|
|
269
|
+
/**
|
|
270
|
+
* wis fa-physician-pid
|
|
271
|
+
*/
|
|
272
|
+
static wisPhysicianPID: {
|
|
273
|
+
prefix: string;
|
|
274
|
+
iconName: string;
|
|
275
|
+
icon: (string | number | any[])[];
|
|
276
|
+
};
|
|
277
|
+
/**
|
|
278
|
+
* wis fa-pid
|
|
279
|
+
*/
|
|
280
|
+
static wisPID: {
|
|
281
|
+
prefix: string;
|
|
282
|
+
iconName: string;
|
|
283
|
+
icon: (string | number | any[])[];
|
|
284
|
+
};
|
|
285
|
+
/**
|
|
286
|
+
* wis fa-radio-buttons
|
|
287
|
+
*/
|
|
288
|
+
static wisRadioButtons: {
|
|
289
|
+
prefix: string;
|
|
290
|
+
iconName: string;
|
|
291
|
+
icon: (string | number | any[])[];
|
|
292
|
+
};
|
|
293
|
+
/**
|
|
294
|
+
* wis fa-reply
|
|
295
|
+
*/
|
|
296
|
+
static wisReply: {
|
|
297
|
+
prefix: string;
|
|
298
|
+
iconName: string;
|
|
299
|
+
icon: (string | number | any[])[];
|
|
300
|
+
};
|
|
301
|
+
/**
|
|
302
|
+
* wis fa-routing-number
|
|
303
|
+
*/
|
|
304
|
+
static wisRoutingNumber: {
|
|
305
|
+
prefix: string;
|
|
306
|
+
iconName: string;
|
|
307
|
+
icon: (string | number | any[])[];
|
|
308
|
+
};
|
|
309
|
+
/**
|
|
310
|
+
* wis fa-select-all
|
|
311
|
+
*/
|
|
312
|
+
static wisSelectAll: {
|
|
313
|
+
prefix: string;
|
|
314
|
+
iconName: string;
|
|
315
|
+
icon: (string | number | any[])[];
|
|
316
|
+
};
|
|
317
|
+
/**
|
|
318
|
+
* wis fa-sidebar-close
|
|
319
|
+
*/
|
|
320
|
+
static wisSidebarClose: {
|
|
321
|
+
prefix: string;
|
|
322
|
+
iconName: string;
|
|
323
|
+
icon: (string | number | any[])[];
|
|
324
|
+
};
|
|
325
|
+
/**
|
|
326
|
+
* wis fa-sidebar-open
|
|
327
|
+
*/
|
|
328
|
+
static wisSidebarOpen: {
|
|
329
|
+
prefix: string;
|
|
330
|
+
iconName: string;
|
|
331
|
+
icon: (string | number | any[])[];
|
|
332
|
+
};
|
|
333
|
+
/**
|
|
334
|
+
* wis fa-ssn
|
|
335
|
+
*/
|
|
336
|
+
static wisSSN: {
|
|
337
|
+
prefix: string;
|
|
338
|
+
iconName: string;
|
|
339
|
+
icon: (string | number | any[])[];
|
|
340
|
+
};
|
|
341
|
+
/**
|
|
342
|
+
* wis fa-text-area
|
|
343
|
+
*/
|
|
344
|
+
static wisTextArea: {
|
|
345
|
+
prefix: string;
|
|
346
|
+
iconName: string;
|
|
347
|
+
icon: (string | number | any[])[];
|
|
348
|
+
};
|
|
349
|
+
/**
|
|
350
|
+
* wis fa-text-box
|
|
351
|
+
*/
|
|
352
|
+
static wisTextBox: {
|
|
353
|
+
prefix: string;
|
|
354
|
+
iconName: string;
|
|
355
|
+
icon: (string | number | any[])[];
|
|
356
|
+
};
|
|
357
|
+
/**
|
|
358
|
+
* The list of exported Solid icons
|
|
359
|
+
*/
|
|
360
|
+
static icons: {
|
|
361
|
+
prefix: string;
|
|
362
|
+
iconName: string;
|
|
363
|
+
icon: (string | number | any[])[];
|
|
364
|
+
}[];
|
|
365
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/icon-select.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
import * as i4 from "../tooltip/tooltip.module";
|
|
6
|
+
import * as i5 from "../dialog/dialog.module";
|
|
7
|
+
import * as i6 from "../endpoint-state/endpoint-state.module";
|
|
8
|
+
export declare class ParticleIconsModule {
|
|
9
|
+
constructor();
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ParticleIconsModule, never>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ParticleIconsModule, [typeof i1.IconSelectComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i3.ReactiveFormsModule, typeof i4.ParticleTooltipModule, typeof i5.ParticleDialogModule, typeof i6.ParticleEndpointStateModule], [typeof i1.IconSelectComponent]>;
|
|
12
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ParticleIconsModule>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
/**
|
|
3
|
+
* Type representing the available Particle icon filter options
|
|
4
|
+
*/
|
|
5
|
+
declare type ParticleIconFilterOption = 'all' | 'solid' | 'regular' | 'light';
|
|
6
|
+
/**
|
|
7
|
+
* Type representing the available Fontawesome icon filter options
|
|
8
|
+
*/
|
|
9
|
+
declare type FontawesomeIconFilterOption = 'all' | 'solid' | 'regular' | 'brands';
|
|
10
|
+
/**
|
|
11
|
+
* Service for filtering Particle/Fontawesome icons
|
|
12
|
+
*/
|
|
13
|
+
export declare class IconsService {
|
|
14
|
+
/**
|
|
15
|
+
* Get Fontawesome icons filtered by icon type
|
|
16
|
+
* @param filter the icon type to filter by
|
|
17
|
+
* @private
|
|
18
|
+
*/
|
|
19
|
+
private static getFontawesomeIcons;
|
|
20
|
+
/**
|
|
21
|
+
* Get Particle icons filtered by icon type
|
|
22
|
+
* @param filter the icon type to filter by
|
|
23
|
+
* @private
|
|
24
|
+
*/
|
|
25
|
+
private static getParticleIcons;
|
|
26
|
+
/**
|
|
27
|
+
* Constructor
|
|
28
|
+
*/
|
|
29
|
+
constructor();
|
|
30
|
+
/**
|
|
31
|
+
* Get a list of icons (as strings) containing both Particle icons
|
|
32
|
+
* and Fontawesome icons that match their respective filter criteria
|
|
33
|
+
* @param iconType the type of icon, or all icons
|
|
34
|
+
* @param filter the icon styling to filter by
|
|
35
|
+
* @param searchText the search text to filter icons by
|
|
36
|
+
*/
|
|
37
|
+
getIcons(iconType: 'all' | 'particle' | 'fontawesome', filter: ParticleIconFilterOption | FontawesomeIconFilterOption, searchText?: string): Array<{
|
|
38
|
+
prefix: string;
|
|
39
|
+
name: string;
|
|
40
|
+
}>;
|
|
41
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IconsService, never>;
|
|
42
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<IconsService>;
|
|
43
|
+
}
|
|
44
|
+
export {};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { DialogComponent } from '../dialog/dialog.component';
|
|
3
|
+
import { IdleTimer } from './idle-timer';
|
|
4
|
+
import { IdleTimeoutText } from '../../shared/models/particle-component-text.model';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class IdleTimeoutComponent implements OnInit {
|
|
7
|
+
borderRadius: string;
|
|
8
|
+
timeoutInSeconds: number;
|
|
9
|
+
text: IdleTimeoutText;
|
|
10
|
+
timerEnd: EventEmitter<any>;
|
|
11
|
+
/**
|
|
12
|
+
* Timeout Dialog - shows when the inactivity timer has 1 minute left, giving the user the ability to confirm they're still active.
|
|
13
|
+
*/
|
|
14
|
+
timeoutDialog: DialogComponent;
|
|
15
|
+
/**
|
|
16
|
+
* Used for the countdown to user auto-logout
|
|
17
|
+
*/
|
|
18
|
+
count: number;
|
|
19
|
+
/**
|
|
20
|
+
* Controls showing the dialog
|
|
21
|
+
*/
|
|
22
|
+
showDialog: any;
|
|
23
|
+
idleTimer: IdleTimer;
|
|
24
|
+
private readonly COUNTDOWN_LENGTH;
|
|
25
|
+
private finalCountdown;
|
|
26
|
+
private timerReset;
|
|
27
|
+
constructor();
|
|
28
|
+
ngOnInit(): void;
|
|
29
|
+
openDialog(): void;
|
|
30
|
+
private setupFinalCountdown;
|
|
31
|
+
private handleTimerEnd;
|
|
32
|
+
resetTimer(): void;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IdleTimeoutComponent, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IdleTimeoutComponent, "particle-idle-timeout", never, { "borderRadius": { "alias": "borderRadius"; "required": false; }; "timeoutInSeconds": { "alias": "timeoutInSeconds"; "required": false; }; "text": { "alias": "text"; "required": false; }; }, { "timerEnd": "timerEnd"; }, never, never, false, never>;
|
|
35
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare class IdleTimer {
|
|
2
|
+
private interval;
|
|
3
|
+
private timeoutTracker;
|
|
4
|
+
private readonly eventHandler;
|
|
5
|
+
private readonly timeout;
|
|
6
|
+
private readonly onTimeout;
|
|
7
|
+
constructor(timeout: number, onTimeout: any);
|
|
8
|
+
private startInterval;
|
|
9
|
+
private updateExpiredTime;
|
|
10
|
+
private tracker;
|
|
11
|
+
cleanUp(): void;
|
|
12
|
+
resetTimer(): void;
|
|
13
|
+
isTimerExpired(): boolean;
|
|
14
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./idle-timeout.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../dialog/dialog.module";
|
|
5
|
+
export declare class ParticleIdleTimeoutModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ParticleIdleTimeoutModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ParticleIdleTimeoutModule, [typeof i1.IdleTimeoutComponent], [typeof i2.CommonModule, typeof i3.ParticleDialogModule], [typeof i1.IdleTimeoutComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ParticleIdleTimeoutModule>;
|
|
9
|
+
}
|