@educarehq/solaris-components 0.3.6 → 0.3.7
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/package.json
CHANGED
|
@@ -8,6 +8,10 @@
|
|
|
8
8
|
font-family: var(--solaris-font-sans-secondary), system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
+
:is(input[solaris-input], textarea[solaris-input])[disabled] {
|
|
12
|
+
cursor: not-allowed !important;
|
|
13
|
+
}
|
|
14
|
+
|
|
11
15
|
input[type="password"]::-ms-reveal,
|
|
12
16
|
input[type="password"]::-ms-clear {
|
|
13
17
|
display: none;
|
|
@@ -1144,7 +1144,7 @@ declare class SolarisPasswordDirective implements Validator {
|
|
|
1144
1144
|
set requireNumberKebab(v: any);
|
|
1145
1145
|
set minLengthKebab(v: any);
|
|
1146
1146
|
set requireSpecialKebab(v: any);
|
|
1147
|
-
get type(): "
|
|
1147
|
+
get type(): "password" | "text";
|
|
1148
1148
|
spellcheck: string;
|
|
1149
1149
|
readonly marker = "";
|
|
1150
1150
|
readonly solarisInput = "";
|
|
@@ -1179,8 +1179,11 @@ declare class SolarisEmailDirective implements Validator {
|
|
|
1179
1179
|
|
|
1180
1180
|
declare class InputTextDirective {
|
|
1181
1181
|
private readonly el;
|
|
1182
|
+
private readonly injector;
|
|
1183
|
+
private readonly field;
|
|
1182
1184
|
readonly attr = "";
|
|
1183
1185
|
get placeholderAttr(): any;
|
|
1186
|
+
constructor();
|
|
1184
1187
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputTextDirective, never>;
|
|
1185
1188
|
static ɵdir: i0.ɵɵDirectiveDeclaration<InputTextDirective, "input[solaris-input],textarea[solaris-input]", never, {}, {}, never, never, true, never>;
|
|
1186
1189
|
}
|