@educarehq/solaris-components 0.3.6 → 0.3.8

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@educarehq/solaris-components",
3
- "version": "0.3.6",
3
+ "version": "0.3.8",
4
4
  "peerDependencies": {
5
5
  "@angular/core": "^21.1.0",
6
6
  "intl-tel-input": "^26.0.9",
@@ -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;
@@ -175,11 +175,9 @@ declare class SolarisPopover {
175
175
  panelDir?: SolarisPopoverPanelDirective;
176
176
  triggerDir?: SolarisPopoverTriggerDirective;
177
177
  private raf;
178
- private static seq;
179
178
  private _setting;
180
179
  private panelHost?;
181
180
  private panelView?;
182
- private readonly _id;
183
181
  get dataOpen(): "true" | null;
184
182
  constructor();
185
183
  toggle(): void;
@@ -1144,7 +1142,7 @@ declare class SolarisPasswordDirective implements Validator {
1144
1142
  set requireNumberKebab(v: any);
1145
1143
  set minLengthKebab(v: any);
1146
1144
  set requireSpecialKebab(v: any);
1147
- get type(): "text" | "password";
1145
+ get type(): "password" | "text";
1148
1146
  spellcheck: string;
1149
1147
  readonly marker = "";
1150
1148
  readonly solarisInput = "";
@@ -1179,8 +1177,11 @@ declare class SolarisEmailDirective implements Validator {
1179
1177
 
1180
1178
  declare class InputTextDirective {
1181
1179
  private readonly el;
1180
+ private readonly injector;
1181
+ private readonly field;
1182
1182
  readonly attr = "";
1183
1183
  get placeholderAttr(): any;
1184
+ constructor();
1184
1185
  static ɵfac: i0.ɵɵFactoryDeclaration<InputTextDirective, never>;
1185
1186
  static ɵdir: i0.ɵɵDirectiveDeclaration<InputTextDirective, "input[solaris-input],textarea[solaris-input]", never, {}, {}, never, never, true, never>;
1186
1187
  }