@brickclay-org/ui 0.0.29 → 0.0.30

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/index.d.ts CHANGED
@@ -700,6 +700,7 @@ interface CountryOption {
700
700
  name: string;
701
701
  mask: string;
702
702
  prefix: string;
703
+ placeholder: string;
703
704
  }
704
705
  declare class BkInput implements OnInit, OnDestroy, ControlValueAccessor {
705
706
  id: string;
@@ -742,6 +743,7 @@ declare class BkInput implements OnInit, OnDestroy, ControlValueAccessor {
742
743
  change: EventEmitter<Event>;
743
744
  focus: EventEmitter<Event>;
744
745
  blur: EventEmitter<Event>;
746
+ get placeHolderText(): string;
745
747
  get maskValue(): string;
746
748
  get maskPrefixValue(): string;
747
749
  private onChange;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brickclay-org/ui",
3
- "version": "0.0.29",
3
+ "version": "0.0.30",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=17.0.0 <=21.0.0",
6
6
  "@angular/core": ">=17.0.0 <=21.0.0",
@@ -228,4 +228,4 @@
228
228
  /* Error message */
229
229
  .input-error {
230
230
  @apply text-xs text-[#E7000B] font-normal;
231
- }
231
+ }