UNPKG
@projectcaluma/ember-form-builder
Version:
beta (13.0.0-beta.1)
latest (14.9.2)
14.9.2
14.9.1
14.9.0
14.8.3
14.8.2
14.8.1
14.8.0
14.7.1
14.7.0
14.6.0
14.5.1
14.5.0
14.4.4
14.4.3
14.4.2
14.4.1
14.4.0
14.3.2
14.3.1
14.3.0
14.2.0
14.1.1
14.1.0
14.0.0
13.2.2
13.2.1
13.2.0
13.1.6
13.1.5
13.1.4
13.1.3
13.1.2
13.1.1
13.1.0
13.0.2
13.0.1
13.0.0
13.0.0-beta.1
12.15.5
12.15.4
12.15.3
12.15.2
12.15.1
12.15.0
12.14.0
12.13.0
12.12.0
12.11.1
12.11.0
12.10.4
12.10.3
12.10.2
12.10.1
12.10.0
12.9.0
12.8.0
12.7.0
12.6.0
12.5.0
12.4.0
12.3.1
12.3.0
12.2.0
12.1.0
12.0.1
12.0.0
11.2.1
11.2.0
11.1.5
11.1.4
11.1.3
11.1.2
11.1.1
11.1.0
11.0.3
11.0.2
11.0.1
11.0.0
11.0.0-beta.40
11.0.0-beta.39
11.0.0-beta.38
11.0.0-beta.37
11.0.0-beta.36
11.0.0-beta.35
11.0.0-beta.34
11.0.0-beta.33
11.0.0-beta.32
11.0.0-beta.31
11.0.0-beta.30
11.0.0-beta.29
11.0.0-beta.28
11.0.0-beta.27
11.0.0-beta.26
11.0.0-beta.25
11.0.0-beta.24
11.0.0-beta.16
11.0.0-beta.15
11.0.0-beta.14
11.0.0-beta.13
11.0.0-beta.12
11.0.0-beta.11
11.0.0-beta.10
11.0.0-beta.9
11.0.0-beta.8
11.0.0-beta.7
11.0.0-beta.6
11.0.0-beta.5
11.0.0-beta.4
11.0.0-beta.3
11.0.0-beta.2
11.0.0-beta.1
10.0.3
10.0.2
10.0.1
10.0.0
9.1.0
9.0.7
9.0.6
9.0.5
9.0.4
9.0.3
9.0.2
9.0.1
9.0.0
Ember engine for building Caluma forms.
docs.caluma.io/ember-caluma
projectcaluma/ember-caluma
@projectcaluma/ember-form-builder
/
addon
/
components
/
cfb-float-input.js
12 lines
(10 loc)
•
272 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{ action }
from
"@ember/object"
;
import
Component
from
"@glimmer/component"
;
export
default
class
CfbFloatInput
extends
Component
{
@action
onUpdate
(
event
) { event.
preventDefault
();
this
.
args
.
update
(event.
target
.
value
);
this
.
args
.
setDirty
(); } }