@elderbyte/ngx-starter 14.3.2 → 14.4.0-beta.3
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.scss +4 -0
- package/esm2020/lib/common/forms/elder-entity-value-accessor.mjs +22 -0
- package/esm2020/lib/common/forms/elder-form-field-control-base.directive.mjs +169 -0
- package/esm2020/lib/common/forms/elder-from-field-base.mjs +94 -0
- package/esm2020/lib/common/forms/elder-from-field-entity-base.mjs +39 -0
- package/esm2020/lib/common/forms/elder-from-field-multi-entity-base.mjs +39 -0
- package/esm2020/lib/common/forms/elder-multi-entity-value-accessor.mjs +22 -0
- package/esm2020/lib/common/forms/public_api.mjs +7 -1
- package/esm2020/lib/components/forms/directives/elder-forms-directives.module.mjs +7 -1
- package/esm2020/lib/components/input/autocomplete/elder-autocomplete.directive.mjs +4 -4
- package/esm2020/lib/components/measures/directives/elder-unit-select.directive.mjs +2 -2
- package/esm2020/lib/components/select/auto/elder-auto-select-first.directive.mjs +2 -2
- package/esm2020/lib/components/select/auto/elder-select-first-util.mjs +3 -3
- package/esm2020/lib/components/select/elder-select-base.mjs +38 -27
- package/esm2020/lib/components/select/elder-select-chip.directive.mjs +19 -5
- package/esm2020/lib/components/select/elder-select-on-tab.directive.mjs +2 -2
- package/esm2020/lib/components/select/elder-select.module.mjs +23 -12
- package/esm2020/lib/components/select/multi/elder-multi-select-base.mjs +78 -39
- package/esm2020/lib/components/select/multi/elder-multi-select-chips/elder-multi-select-chips.component.mjs +115 -83
- package/esm2020/lib/components/select/multi/elder-multi-select-form-field.mjs +61 -0
- package/esm2020/lib/components/select/popup/selection-model-popup.directive.mjs +9 -4
- package/esm2020/lib/components/select/public_api.mjs +4 -1
- package/esm2020/lib/components/select/single/elder-clear-select.directive.mjs +57 -0
- package/esm2020/lib/components/select/single/elder-select/elder-select.component.mjs +455 -0
- package/esm2020/lib/components/select/single/elder-select-form-field.mjs +45 -0
- package/fesm2015/elderbyte-ngx-starter.mjs +1019 -377
- package/fesm2015/elderbyte-ngx-starter.mjs.map +1 -1
- package/fesm2020/elderbyte-ngx-starter.mjs +1012 -375
- package/fesm2020/elderbyte-ngx-starter.mjs.map +1 -1
- package/lib/{components/select → common/forms}/elder-entity-value-accessor.d.ts +10 -0
- package/lib/common/forms/elder-form-field-control-base.directive.d.ts +101 -0
- package/lib/common/forms/elder-from-field-base.d.ts +52 -0
- package/lib/common/forms/elder-from-field-entity-base.d.ts +31 -0
- package/lib/common/forms/elder-from-field-multi-entity-base.d.ts +31 -0
- package/lib/common/forms/elder-multi-entity-value-accessor.d.ts +42 -0
- package/lib/common/forms/public_api.d.ts +6 -0
- package/lib/components/input/autocomplete/elder-autocomplete.directive.d.ts +1 -1
- package/lib/components/measures/directives/elder-unit-select.directive.d.ts +1 -1
- package/lib/components/select/auto/elder-auto-select-first.directive.d.ts +1 -1
- package/lib/components/select/auto/elder-select-first-util.d.ts +1 -1
- package/lib/components/select/elder-select-base.d.ts +21 -15
- package/lib/components/select/elder-select-chip.directive.d.ts +9 -2
- package/lib/components/select/elder-select.module.d.ts +27 -24
- package/lib/components/select/multi/elder-multi-select-base.d.ts +19 -14
- package/lib/components/select/multi/elder-multi-select-chips/elder-multi-select-chips.component.d.ts +27 -12
- package/lib/components/select/multi/elder-multi-select-form-field.d.ts +33 -0
- package/lib/components/select/popup/selection-model-popup.directive.d.ts +3 -2
- package/lib/components/select/public_api.d.ts +3 -0
- package/lib/components/select/single/elder-clear-select.directive.d.ts +34 -0
- package/lib/components/select/{elder-select → single/elder-select}/elder-select.component.d.ts +24 -12
- package/lib/components/select/single/elder-select-form-field.d.ts +30 -0
- package/package.json +1 -1
- package/src/lib/components/select/multi/elder-multi-select-chips/elder-multi-select-chips.component.scss +54 -11
- package/src/lib/components/select/single/elder-select/elder-select.component.scss +114 -0
- package/theming/_elder-common.scss +48 -0
- package/esm2020/lib/components/select/elder-entity-value-accessor.mjs +0 -13
- package/esm2020/lib/components/select/elder-select/elder-select.component.mjs +0 -419
- package/src/lib/components/select/elder-select/elder-select.component.scss +0 -61
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
.prefix-container {
|
|
3
|
-
width: 24px;
|
|
4
|
-
height: 16px;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
@keyframes shrink {
|
|
8
|
-
0% {
|
|
9
|
-
transform: scale(1.0);
|
|
10
|
-
}
|
|
11
|
-
100% {
|
|
12
|
-
transform: scale(0.75);
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.loading {
|
|
17
|
-
animation: shrink 0.3s ease-in-out infinite alternate;
|
|
18
|
-
-webkit-animation: shrink 0.3s ease-in-out infinite alternate;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.prefix-padding {
|
|
22
|
-
padding-right: 4px;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.leading-icon {
|
|
26
|
-
font-size: 16px;
|
|
27
|
-
width: 16px;
|
|
28
|
-
height: 16px;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.suffix-icon {
|
|
32
|
-
font-size: 16px;
|
|
33
|
-
width: 16px;
|
|
34
|
-
height: 16px;
|
|
35
|
-
// padding-left: 4px;
|
|
36
|
-
.mat-icon {
|
|
37
|
-
font-size: 16px;
|
|
38
|
-
width: 16px;
|
|
39
|
-
height: 16px;
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.clickable-icon {
|
|
44
|
-
cursor: pointer;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.full-width {
|
|
48
|
-
width: 100%;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
.select {
|
|
52
|
-
cursor: pointer;
|
|
53
|
-
width: 162px;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.select-arrow {
|
|
57
|
-
font-size: 18px;
|
|
58
|
-
width: 18px;
|
|
59
|
-
height: 18px;
|
|
60
|
-
cursor: pointer;
|
|
61
|
-
}
|