@entake/particle 19.0.0 → 19.0.1
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 -7
- package/app/shared/components/dialog/dialog.component.d.ts +2 -0
- package/app/shared/models/particle-component-text.model.d.ts +2 -0
- package/app/shared/models/particle-icons-solid.model.d.ts +6 -6
- package/fesm2022/entake-particle.mjs +62 -55
- package/fesm2022/entake-particle.mjs.map +1 -1
- package/package.json +1 -1
package/LICENSE
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
Copyright 2022 Entake LLC
|
|
2
|
-
|
|
3
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
4
|
-
|
|
5
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
6
|
-
|
|
7
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1
|
+
Copyright 2022 Entake LLC
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
4
|
+
|
|
5
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
6
|
+
|
|
7
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -12,6 +12,7 @@ export declare class DialogComponent {
|
|
|
12
12
|
* Element reference to the dialog close button
|
|
13
13
|
*/
|
|
14
14
|
closeButton: ElementRef<HTMLButtonElement>;
|
|
15
|
+
protected isMaximized: boolean;
|
|
15
16
|
/**
|
|
16
17
|
* Observable to update the effective width of the dialog on screen resize
|
|
17
18
|
*/
|
|
@@ -63,6 +64,7 @@ export declare class DialogComponent {
|
|
|
63
64
|
* Event emitted when dialog has finished opening
|
|
64
65
|
*/
|
|
65
66
|
readonly opened: import("@angular/core").OutputEmitterRef<void>;
|
|
67
|
+
toggleMaximize(): void;
|
|
66
68
|
/**
|
|
67
69
|
* Null the object to close the dialog, emit the close event.
|
|
68
70
|
*/
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export declare class ParticleIconsSolid {
|
|
5
5
|
/**
|
|
6
|
-
*
|
|
6
|
+
* fas fa-divider
|
|
7
7
|
*/
|
|
8
8
|
static ptsDivider: {
|
|
9
9
|
prefix: string;
|
|
@@ -11,7 +11,7 @@ export declare class ParticleIconsSolid {
|
|
|
11
11
|
icon: (string | number | any[])[];
|
|
12
12
|
};
|
|
13
13
|
/**
|
|
14
|
-
*
|
|
14
|
+
* fas fa-multi-select
|
|
15
15
|
*/
|
|
16
16
|
static ptsMultiSelect: {
|
|
17
17
|
prefix: string;
|
|
@@ -19,7 +19,7 @@ export declare class ParticleIconsSolid {
|
|
|
19
19
|
icon: (string | number | any[])[];
|
|
20
20
|
};
|
|
21
21
|
/**
|
|
22
|
-
*
|
|
22
|
+
* fas fa-phone
|
|
23
23
|
*/
|
|
24
24
|
static ptsPhone: {
|
|
25
25
|
prefix: string;
|
|
@@ -27,7 +27,7 @@ export declare class ParticleIconsSolid {
|
|
|
27
27
|
icon: (string | number | any[])[];
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
* fas fa-physical-address
|
|
31
31
|
*/
|
|
32
32
|
static ptsPhysicalAddress: {
|
|
33
33
|
prefix: string;
|
|
@@ -35,7 +35,7 @@ export declare class ParticleIconsSolid {
|
|
|
35
35
|
icon: (string | number | any[])[];
|
|
36
36
|
};
|
|
37
37
|
/**
|
|
38
|
-
*
|
|
38
|
+
* fas fa-radio-buttons
|
|
39
39
|
*/
|
|
40
40
|
static ptsRadioButtons: {
|
|
41
41
|
prefix: string;
|
|
@@ -43,7 +43,7 @@ export declare class ParticleIconsSolid {
|
|
|
43
43
|
icon: (string | number | any[])[];
|
|
44
44
|
};
|
|
45
45
|
/**
|
|
46
|
-
*
|
|
46
|
+
* fas fa-routing-number
|
|
47
47
|
*/
|
|
48
48
|
static ptsRoutingNumber: {
|
|
49
49
|
prefix: string;
|