@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
package/src/lib/input/input.css
CHANGED