@entake/particle 18.0.2 → 18.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -27
- package/app/modules/icons/components/icon-select.component.d.ts +2 -2
- package/app/modules/icons/models/particle-icons-brands.model.d.ts +21 -0
- package/app/modules/icons/models/particle-icons-regular.model.d.ts +6 -174
- package/app/modules/icons/models/particle-icons-solid.model.d.ts +13 -317
- package/app/modules/icons/services/icons.service.d.ts +1 -5
- package/app/modules/layout/components/layout-full-framing/layout-full-framing.component.d.ts +2 -2
- package/app/modules/layout/components/layout-fullwidth-sidebar/layout-fullwidth-sidebar.component.d.ts +2 -2
- package/esm2022/app/modules/icons/components/icon-select.component.mjs +3 -4
- package/esm2022/app/modules/icons/models/particle-icons-brands.model.mjs +24 -0
- package/esm2022/app/modules/icons/models/particle-icons-regular.model.mjs +13 -287
- package/esm2022/app/modules/icons/models/particle-icons-solid.model.mjs +26 -518
- package/esm2022/app/modules/icons/particle-icons.module.mjs +3 -3
- package/esm2022/app/modules/icons/services/icons.service.mjs +5 -9
- package/esm2022/app/modules/layout/components/layout-full-framing/layout-full-framing.component.mjs +8 -6
- package/esm2022/app/modules/layout/components/layout-fullwidth-sidebar/layout-fullwidth-sidebar.component.mjs +8 -6
- package/esm2022/app/modules/notification/notification.component.mjs +1 -1
- package/esm2022/app/modules/tooltip/tooltip.directive.mjs +2 -2
- package/fesm2022/entake-particle.mjs +90 -1143
- package/fesm2022/entake-particle.mjs.map +1 -1
- package/package.json +5 -5
- package/app/modules/icons/models/particle-icons-light.model.d.ts +0 -197
- package/esm2022/app/modules/icons/models/particle-icons-light.model.mjs +0 -310
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Particle
|
|
1
|
+
# Particle for Angular by Entake
|
|
2
2
|
|
|
3
3
|
This package offers a small selection of reusable components that are meant to replace usage of other Angular component libraries, like Angular Material and PrimeNG. If you're looking for a themeable alternative that gives you unprecedented control of your Angular components, give Particle a try! If you're interested in contributing or find any bugs, feel free to catch us on GitHub.
|
|
4
4
|
|
|
@@ -363,34 +363,10 @@ This selector is a parent wrapper of the following selector which contains each
|
|
|
363
363
|
- `disabled` whether the accordion item is disabled
|
|
364
364
|
|
|
365
365
|
## Usage
|
|
366
|
-
`npm install particle
|
|
366
|
+
`npm install @entake/particle`
|
|
367
367
|
|
|
368
368
|
Component listing and usage coming soon.
|
|
369
369
|
|
|
370
|
-
## Build and Release Instructions
|
|
371
|
-
|
|
372
|
-
### Package
|
|
373
|
-
|
|
374
|
-
Run the following:
|
|
375
|
-
|
|
376
|
-
`npm run package`
|
|
377
|
-
|
|
378
|
-
`cd dist`
|
|
379
|
-
|
|
380
|
-
`npm pack`
|
|
381
|
-
|
|
382
|
-
`cd ..`
|
|
383
|
-
|
|
384
|
-
### Test
|
|
385
|
-
|
|
386
|
-
After packaging, you can install a local build for testing with the following:
|
|
387
|
-
|
|
388
|
-
`npm install ../particle-angular-commons/dist/particle-angular-commons-1.1.1.tgz`
|
|
389
|
-
|
|
390
|
-
### Release
|
|
391
|
-
|
|
392
|
-
`npm publish`
|
|
393
|
-
|
|
394
370
|
## Further Help
|
|
395
371
|
|
|
396
|
-
For more help, please reach out to `nick@
|
|
372
|
+
For more help, please reach out to `nick@entake.io`.
|
|
@@ -61,7 +61,7 @@ export declare class IconSelectComponent implements ControlValueAccessor, OnDest
|
|
|
61
61
|
* BehaviorSubject tracking the current filter value selection for icons
|
|
62
62
|
*/
|
|
63
63
|
readonly _filter: BehaviorSubject<{
|
|
64
|
-
style: 'all' | 'solid' | 'regular' | '
|
|
64
|
+
style: 'all' | 'solid' | 'regular' | 'brands';
|
|
65
65
|
type: 'all' | 'particle' | 'fontawesome';
|
|
66
66
|
}>;
|
|
67
67
|
/**
|
|
@@ -186,7 +186,7 @@ export declare class IconSelectComponent implements ControlValueAccessor, OnDest
|
|
|
186
186
|
* @param filter the selected filter
|
|
187
187
|
*/
|
|
188
188
|
handleFilterSelect(filter: {
|
|
189
|
-
style: 'all' | 'solid' | 'regular' | '
|
|
189
|
+
style: 'all' | 'solid' | 'regular' | 'brands';
|
|
190
190
|
type: 'all' | 'particle' | 'fontawesome';
|
|
191
191
|
}): void;
|
|
192
192
|
/**
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Particle Icons - Brand
|
|
3
|
+
*/
|
|
4
|
+
export declare class ParticleIconsBrand {
|
|
5
|
+
/**
|
|
6
|
+
* ptl fa-entake
|
|
7
|
+
*/
|
|
8
|
+
static ptbEntake: {
|
|
9
|
+
prefix: string;
|
|
10
|
+
iconName: string;
|
|
11
|
+
icon: (string | number | any[])[];
|
|
12
|
+
};
|
|
13
|
+
/**
|
|
14
|
+
* Full list of light icons
|
|
15
|
+
*/
|
|
16
|
+
static icons: {
|
|
17
|
+
prefix: string;
|
|
18
|
+
iconName: string;
|
|
19
|
+
icon: (string | number | any[])[];
|
|
20
|
+
}[];
|
|
21
|
+
}
|
|
@@ -3,193 +3,25 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export declare class ParticleIconsRegular {
|
|
5
5
|
/**
|
|
6
|
-
*
|
|
6
|
+
* ptr fa-multi-select
|
|
7
7
|
*/
|
|
8
|
-
static
|
|
8
|
+
static ptrMultiSelect: {
|
|
9
9
|
prefix: string;
|
|
10
10
|
iconName: string;
|
|
11
11
|
icon: (string | number | any[])[];
|
|
12
12
|
};
|
|
13
13
|
/**
|
|
14
|
-
*
|
|
14
|
+
* ptr fa-phone
|
|
15
15
|
*/
|
|
16
|
-
static
|
|
16
|
+
static ptrPhone: {
|
|
17
17
|
prefix: string;
|
|
18
18
|
iconName: string;
|
|
19
19
|
icon: (string | number | any[])[];
|
|
20
20
|
};
|
|
21
21
|
/**
|
|
22
|
-
*
|
|
22
|
+
* ptr fa-radio-buttons
|
|
23
23
|
*/
|
|
24
|
-
static
|
|
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: {
|
|
24
|
+
static ptrRadioButtons: {
|
|
193
25
|
prefix: string;
|
|
194
26
|
iconName: string;
|
|
195
27
|
icon: (string | number | any[])[];
|
|
@@ -1,355 +1,51 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Particle Solid Icons to be added to
|
|
2
|
+
* Particle Solid Icons to be added to Font Awesome.
|
|
3
3
|
*/
|
|
4
4
|
export declare class ParticleIconsSolid {
|
|
5
5
|
/**
|
|
6
|
-
*
|
|
6
|
+
* pts fa-divider
|
|
7
7
|
*/
|
|
8
|
-
static
|
|
8
|
+
static ptsDivider: {
|
|
9
9
|
prefix: string;
|
|
10
10
|
iconName: string;
|
|
11
11
|
icon: (string | number | any[])[];
|
|
12
12
|
};
|
|
13
13
|
/**
|
|
14
|
-
*
|
|
14
|
+
* pts fa-multi-select
|
|
15
15
|
*/
|
|
16
|
-
static
|
|
16
|
+
static ptsMultiSelect: {
|
|
17
17
|
prefix: string;
|
|
18
18
|
iconName: string;
|
|
19
19
|
icon: (string | number | any[])[];
|
|
20
20
|
};
|
|
21
21
|
/**
|
|
22
|
-
*
|
|
22
|
+
* pts fa-phone
|
|
23
23
|
*/
|
|
24
|
-
static
|
|
24
|
+
static ptsPhone: {
|
|
25
25
|
prefix: string;
|
|
26
26
|
iconName: string;
|
|
27
27
|
icon: (string | number | any[])[];
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
* pts fa-physical-address
|
|
31
31
|
*/
|
|
32
|
-
static
|
|
32
|
+
static ptsPhysicalAddress: {
|
|
33
33
|
prefix: string;
|
|
34
34
|
iconName: string;
|
|
35
35
|
icon: (string | number | any[])[];
|
|
36
36
|
};
|
|
37
37
|
/**
|
|
38
|
-
*
|
|
38
|
+
* pts fa-radio-buttons
|
|
39
39
|
*/
|
|
40
|
-
static
|
|
40
|
+
static ptsRadioButtons: {
|
|
41
41
|
prefix: string;
|
|
42
42
|
iconName: string;
|
|
43
43
|
icon: (string | number | any[])[];
|
|
44
44
|
};
|
|
45
45
|
/**
|
|
46
|
-
*
|
|
46
|
+
* pts fa-routing-number
|
|
47
47
|
*/
|
|
48
|
-
static
|
|
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: {
|
|
48
|
+
static ptsRoutingNumber: {
|
|
353
49
|
prefix: string;
|
|
354
50
|
iconName: string;
|
|
355
51
|
icon: (string | number | any[])[];
|
|
@@ -2,7 +2,7 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
/**
|
|
3
3
|
* Type representing the available Particle icon filter options
|
|
4
4
|
*/
|
|
5
|
-
declare type ParticleIconFilterOption = 'all' | 'solid' | 'regular' | '
|
|
5
|
+
declare type ParticleIconFilterOption = 'all' | 'solid' | 'regular' | 'brands';
|
|
6
6
|
/**
|
|
7
7
|
* Type representing the available Fontawesome icon filter options
|
|
8
8
|
*/
|
|
@@ -23,10 +23,6 @@ export declare class IconsService {
|
|
|
23
23
|
* @private
|
|
24
24
|
*/
|
|
25
25
|
private static getParticleIcons;
|
|
26
|
-
/**
|
|
27
|
-
* Constructor
|
|
28
|
-
*/
|
|
29
|
-
constructor();
|
|
30
26
|
/**
|
|
31
27
|
* Get a list of icons (as strings) containing both Particle icons
|
|
32
28
|
* and Fontawesome icons that match their respective filter criteria
|
package/app/modules/layout/components/layout-full-framing/layout-full-framing.component.d.ts
CHANGED
|
@@ -16,12 +16,12 @@ export declare class LayoutFullFramingComponent {
|
|
|
16
16
|
breakpoint: number;
|
|
17
17
|
rightSidebarCollapsedTabOffset: number;
|
|
18
18
|
collapsedClassList: string;
|
|
19
|
+
mobileSidebarEnabled: boolean;
|
|
19
20
|
slideover: SlideoverComponent;
|
|
20
21
|
onResize(event: any): void;
|
|
21
22
|
protected readonly window: Window & typeof globalThis;
|
|
22
23
|
get stickySidebarHeight(): string;
|
|
23
24
|
get contentSidebarHeight(): string;
|
|
24
|
-
constructor();
|
|
25
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutFullFramingComponent, never>;
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LayoutFullFramingComponent, "particle-layout-full-framing", never, { "mainContent": { "alias": "mainContent"; "required": false; }; "rightSidebar": { "alias": "rightSidebar"; "required": false; }; "header": { "alias": "header"; "required": false; }; "footer": { "alias": "footer"; "required": false; }; "mainContentContainerClassList": { "alias": "mainContentContainerClassList"; "required": false; }; "rightSidebarContainerClassList": { "alias": "rightSidebarContainerClassList"; "required": false; }; "headerClassList": { "alias": "headerClassList"; "required": false; }; "footerClassList": { "alias": "footerClassList"; "required": false; }; "headerHeight": { "alias": "headerHeight"; "required": false; }; "footerHeight": { "alias": "footerHeight"; "required": false; }; "rightSidebarWidth": { "alias": "rightSidebarWidth"; "required": false; }; "breakpoint": { "alias": "breakpoint"; "required": false; }; "rightSidebarCollapsedTabOffset": { "alias": "rightSidebarCollapsedTabOffset"; "required": false; }; "collapsedClassList": { "alias": "collapsedClassList"; "required": false; }; }, {}, never, never, false, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LayoutFullFramingComponent, "particle-layout-full-framing", never, { "mainContent": { "alias": "mainContent"; "required": false; }; "rightSidebar": { "alias": "rightSidebar"; "required": false; }; "header": { "alias": "header"; "required": false; }; "footer": { "alias": "footer"; "required": false; }; "mainContentContainerClassList": { "alias": "mainContentContainerClassList"; "required": false; }; "rightSidebarContainerClassList": { "alias": "rightSidebarContainerClassList"; "required": false; }; "headerClassList": { "alias": "headerClassList"; "required": false; }; "footerClassList": { "alias": "footerClassList"; "required": false; }; "headerHeight": { "alias": "headerHeight"; "required": false; }; "footerHeight": { "alias": "footerHeight"; "required": false; }; "rightSidebarWidth": { "alias": "rightSidebarWidth"; "required": false; }; "breakpoint": { "alias": "breakpoint"; "required": false; }; "rightSidebarCollapsedTabOffset": { "alias": "rightSidebarCollapsedTabOffset"; "required": false; }; "collapsedClassList": { "alias": "collapsedClassList"; "required": false; }; "mobileSidebarEnabled": { "alias": "mobileSidebarEnabled"; "required": false; }; }, {}, never, never, false, never>;
|
|
27
27
|
}
|
|
@@ -13,11 +13,11 @@ export declare class LayoutFullwidthSidebarComponent {
|
|
|
13
13
|
breakpoint: number;
|
|
14
14
|
rightSidebarCollapsedTabOffset: number;
|
|
15
15
|
collapsedClassList: string;
|
|
16
|
+
mobileSidebarEnabled: boolean;
|
|
16
17
|
slideover: SlideoverComponent;
|
|
17
18
|
onResize(event: any): void;
|
|
18
19
|
protected readonly window: Window & typeof globalThis;
|
|
19
20
|
get stickySidebarHeight(): string;
|
|
20
|
-
constructor();
|
|
21
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutFullwidthSidebarComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LayoutFullwidthSidebarComponent, "particle-layout-fullwidth-sidebar", never, { "mainContent": { "alias": "mainContent"; "required": false; }; "rightSidebar": { "alias": "rightSidebar"; "required": false; }; "mainContentContainerClassList": { "alias": "mainContentContainerClassList"; "required": false; }; "rightSidebarContainerClassList": { "alias": "rightSidebarContainerClassList"; "required": false; }; "rightSidebarSticky": { "alias": "rightSidebarSticky"; "required": false; }; "headerHeight": { "alias": "headerHeight"; "required": false; }; "footerHeight": { "alias": "footerHeight"; "required": false; }; "rightSidebarWidth": { "alias": "rightSidebarWidth"; "required": false; }; "breakpoint": { "alias": "breakpoint"; "required": false; }; "rightSidebarCollapsedTabOffset": { "alias": "rightSidebarCollapsedTabOffset"; "required": false; }; "collapsedClassList": { "alias": "collapsedClassList"; "required": false; }; }, {}, never, never, false, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LayoutFullwidthSidebarComponent, "particle-layout-fullwidth-sidebar", never, { "mainContent": { "alias": "mainContent"; "required": false; }; "rightSidebar": { "alias": "rightSidebar"; "required": false; }; "mainContentContainerClassList": { "alias": "mainContentContainerClassList"; "required": false; }; "rightSidebarContainerClassList": { "alias": "rightSidebarContainerClassList"; "required": false; }; "rightSidebarSticky": { "alias": "rightSidebarSticky"; "required": false; }; "headerHeight": { "alias": "headerHeight"; "required": false; }; "footerHeight": { "alias": "footerHeight"; "required": false; }; "rightSidebarWidth": { "alias": "rightSidebarWidth"; "required": false; }; "breakpoint": { "alias": "breakpoint"; "required": false; }; "rightSidebarCollapsedTabOffset": { "alias": "rightSidebarCollapsedTabOffset"; "required": false; }; "collapsedClassList": { "alias": "collapsedClassList"; "required": false; }; "mobileSidebarEnabled": { "alias": "mobileSidebarEnabled"; "required": false; }; }, {}, never, never, false, never>;
|
|
23
23
|
}
|