coer-elements 2.0.60 → 2.0.62
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/components/lib/coer-datebox/coer-datebox.component.d.ts +1 -1
- package/components/lib/coer-grid/coer-grid-cell/coer-grid-cell.component.d.ts +1 -1
- package/components/lib/coer-numberbox/coer-numberbox.component.d.ts +1 -1
- package/components/lib/coer-secretbox/coer-secretbox.component.d.ts +1 -1
- package/components/lib/coer-sidenav/coer-toolbar/coer-toolbar.component.d.ts +2 -1
- package/components/lib/coer-textarea/coer-textarea.component.d.ts +1 -1
- package/components/lib/coer-textbox/coer-textbox.component.d.ts +1 -1
- package/fesm2022/coer-elements-components.mjs +15 -17
- package/fesm2022/coer-elements-components.mjs.map +1 -1
- package/fesm2022/coer-elements-pages.mjs +2 -2
- package/fesm2022/coer-elements-pages.mjs.map +1 -1
- package/fesm2022/coer-elements-tools.mjs +24 -0
- package/fesm2022/coer-elements-tools.mjs.map +1 -1
- package/package.json +1 -1
- package/styles/coer-elements.css +1 -1
- package/styles/containers.scss +1 -2
- package/styles/positions.scss +4 -5
- package/tools/lib/tools.d.ts +8 -0
package/styles/containers.scss
CHANGED
@@ -11,8 +11,7 @@
|
|
11
11
|
background-color: var(--containers-inner);
|
12
12
|
animation-name: fadeIn;
|
13
13
|
animation-duration: 1.5s;
|
14
|
-
animation-iteration-count: 1;
|
15
|
-
line-height: 0;
|
14
|
+
animation-iteration-count: 1;
|
16
15
|
min-height: 60px;
|
17
16
|
|
18
17
|
@media (min-width: 0px) and (max-width: 499px) {
|
package/styles/positions.scss
CHANGED
@@ -1,10 +1,9 @@
|
|
1
1
|
@mixin mixin($breakpoint) {
|
2
2
|
|
3
|
-
//z-index
|
4
|
-
$
|
5
|
-
|
6
|
-
|
7
|
-
z-index: $counter - $i !important;
|
3
|
+
//z-index
|
4
|
+
@for $i from 0 through 10 {
|
5
|
+
.#{$breakpoint}z-index-#{$i} {
|
6
|
+
z-index: $i !important;
|
8
7
|
}
|
9
8
|
}
|
10
9
|
|
package/tools/lib/tools.d.ts
CHANGED
@@ -16,6 +16,14 @@ export declare const Tools: {
|
|
16
16
|
BreakReference: <T>(object: T) => T;
|
17
17
|
/** Get properties of an object */
|
18
18
|
GetPropertyList: <T>(object: T | object | null | undefined) => string[];
|
19
|
+
/** */
|
20
|
+
IsBoolean: (object: any, property?: string) => boolean;
|
21
|
+
/** */
|
22
|
+
IsBooleanTrue: (object: any, property?: string) => boolean;
|
23
|
+
/** */
|
24
|
+
IsBooleanFalse: (object: any, property?: string) => boolean;
|
25
|
+
/** */
|
26
|
+
IsFunction: (object: any, property?: string) => boolean;
|
19
27
|
/** Wait the time indicated */
|
20
28
|
Sleep: (milliseconds?: number, reference?: string | null) => Promise<void>;
|
21
29
|
/** Send text to the computer's clipboard */
|