@proximus/lavender-angular 2.0.0-alpha.182 → 2.0.0-alpha.184
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.
|
@@ -21863,6 +21863,562 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
21863
21863
|
}], event: [{
|
|
21864
21864
|
type: Output
|
|
21865
21865
|
}] } });
|
|
21866
|
+
/**
|
|
21867
|
+
* @description Type-only wrapper for <px-code-input>
|
|
21868
|
+
*/
|
|
21869
|
+
class PxCodeInput {
|
|
21870
|
+
elementRef;
|
|
21871
|
+
set size(value) {
|
|
21872
|
+
this.elementRef.nativeElement['size'] = value;
|
|
21873
|
+
}
|
|
21874
|
+
get size() {
|
|
21875
|
+
return this.elementRef.nativeElement['size'];
|
|
21876
|
+
}
|
|
21877
|
+
set state(value) {
|
|
21878
|
+
this.elementRef.nativeElement['state'] = value;
|
|
21879
|
+
}
|
|
21880
|
+
get state() {
|
|
21881
|
+
return this.elementRef.nativeElement['state'];
|
|
21882
|
+
}
|
|
21883
|
+
set extended(value) {
|
|
21884
|
+
this.elementRef.nativeElement['extended'] = value;
|
|
21885
|
+
}
|
|
21886
|
+
get extended() {
|
|
21887
|
+
return this.elementRef.nativeElement['extended'];
|
|
21888
|
+
}
|
|
21889
|
+
set extendedMobile(value) {
|
|
21890
|
+
this.elementRef.nativeElement['extendedMobile'] = value;
|
|
21891
|
+
}
|
|
21892
|
+
get extendedMobile() {
|
|
21893
|
+
return this.elementRef.nativeElement['extendedMobile'];
|
|
21894
|
+
}
|
|
21895
|
+
set extendedTablet(value) {
|
|
21896
|
+
this.elementRef.nativeElement['extendedTablet'] = value;
|
|
21897
|
+
}
|
|
21898
|
+
get extendedTablet() {
|
|
21899
|
+
return this.elementRef.nativeElement['extendedTablet'];
|
|
21900
|
+
}
|
|
21901
|
+
set extendedLaptop(value) {
|
|
21902
|
+
this.elementRef.nativeElement['extendedLaptop'] = value;
|
|
21903
|
+
}
|
|
21904
|
+
get extendedLaptop() {
|
|
21905
|
+
return this.elementRef.nativeElement['extendedLaptop'];
|
|
21906
|
+
}
|
|
21907
|
+
set extendedDesktop(value) {
|
|
21908
|
+
this.elementRef.nativeElement['extendedDesktop'] = value;
|
|
21909
|
+
}
|
|
21910
|
+
get extendedDesktop() {
|
|
21911
|
+
return this.elementRef.nativeElement['extendedDesktop'];
|
|
21912
|
+
}
|
|
21913
|
+
set ariaDescribedby(value) {
|
|
21914
|
+
this.elementRef.nativeElement['ariaDescribedby'] = value;
|
|
21915
|
+
}
|
|
21916
|
+
get ariaDescribedby() {
|
|
21917
|
+
return this.elementRef.nativeElement['ariaDescribedby'];
|
|
21918
|
+
}
|
|
21919
|
+
set grow(value) {
|
|
21920
|
+
this.elementRef.nativeElement['grow'] = value;
|
|
21921
|
+
}
|
|
21922
|
+
get grow() {
|
|
21923
|
+
return this.elementRef.nativeElement['grow'];
|
|
21924
|
+
}
|
|
21925
|
+
set growMobile(value) {
|
|
21926
|
+
this.elementRef.nativeElement['growMobile'] = value;
|
|
21927
|
+
}
|
|
21928
|
+
get growMobile() {
|
|
21929
|
+
return this.elementRef.nativeElement['growMobile'];
|
|
21930
|
+
}
|
|
21931
|
+
set growTablet(value) {
|
|
21932
|
+
this.elementRef.nativeElement['growTablet'] = value;
|
|
21933
|
+
}
|
|
21934
|
+
get growTablet() {
|
|
21935
|
+
return this.elementRef.nativeElement['growTablet'];
|
|
21936
|
+
}
|
|
21937
|
+
set growLaptop(value) {
|
|
21938
|
+
this.elementRef.nativeElement['growLaptop'] = value;
|
|
21939
|
+
}
|
|
21940
|
+
get growLaptop() {
|
|
21941
|
+
return this.elementRef.nativeElement['growLaptop'];
|
|
21942
|
+
}
|
|
21943
|
+
set growDesktop(value) {
|
|
21944
|
+
this.elementRef.nativeElement['growDesktop'] = value;
|
|
21945
|
+
}
|
|
21946
|
+
get growDesktop() {
|
|
21947
|
+
return this.elementRef.nativeElement['growDesktop'];
|
|
21948
|
+
}
|
|
21949
|
+
set shrink(value) {
|
|
21950
|
+
this.elementRef.nativeElement['shrink'] = value;
|
|
21951
|
+
}
|
|
21952
|
+
get shrink() {
|
|
21953
|
+
return this.elementRef.nativeElement['shrink'];
|
|
21954
|
+
}
|
|
21955
|
+
set shrinkMobile(value) {
|
|
21956
|
+
this.elementRef.nativeElement['shrinkMobile'] = value;
|
|
21957
|
+
}
|
|
21958
|
+
get shrinkMobile() {
|
|
21959
|
+
return this.elementRef.nativeElement['shrinkMobile'];
|
|
21960
|
+
}
|
|
21961
|
+
set shrinkTablet(value) {
|
|
21962
|
+
this.elementRef.nativeElement['shrinkTablet'] = value;
|
|
21963
|
+
}
|
|
21964
|
+
get shrinkTablet() {
|
|
21965
|
+
return this.elementRef.nativeElement['shrinkTablet'];
|
|
21966
|
+
}
|
|
21967
|
+
set shrinkLaptop(value) {
|
|
21968
|
+
this.elementRef.nativeElement['shrinkLaptop'] = value;
|
|
21969
|
+
}
|
|
21970
|
+
get shrinkLaptop() {
|
|
21971
|
+
return this.elementRef.nativeElement['shrinkLaptop'];
|
|
21972
|
+
}
|
|
21973
|
+
set shrinkDesktop(value) {
|
|
21974
|
+
this.elementRef.nativeElement['shrinkDesktop'] = value;
|
|
21975
|
+
}
|
|
21976
|
+
get shrinkDesktop() {
|
|
21977
|
+
return this.elementRef.nativeElement['shrinkDesktop'];
|
|
21978
|
+
}
|
|
21979
|
+
set basis(value) {
|
|
21980
|
+
this.elementRef.nativeElement['basis'] = value;
|
|
21981
|
+
}
|
|
21982
|
+
get basis() {
|
|
21983
|
+
return this.elementRef.nativeElement['basis'];
|
|
21984
|
+
}
|
|
21985
|
+
set basisMobile(value) {
|
|
21986
|
+
this.elementRef.nativeElement['basisMobile'] = value;
|
|
21987
|
+
}
|
|
21988
|
+
get basisMobile() {
|
|
21989
|
+
return this.elementRef.nativeElement['basisMobile'];
|
|
21990
|
+
}
|
|
21991
|
+
set basisTablet(value) {
|
|
21992
|
+
this.elementRef.nativeElement['basisTablet'] = value;
|
|
21993
|
+
}
|
|
21994
|
+
get basisTablet() {
|
|
21995
|
+
return this.elementRef.nativeElement['basisTablet'];
|
|
21996
|
+
}
|
|
21997
|
+
set basisLaptop(value) {
|
|
21998
|
+
this.elementRef.nativeElement['basisLaptop'] = value;
|
|
21999
|
+
}
|
|
22000
|
+
get basisLaptop() {
|
|
22001
|
+
return this.elementRef.nativeElement['basisLaptop'];
|
|
22002
|
+
}
|
|
22003
|
+
set basisDesktop(value) {
|
|
22004
|
+
this.elementRef.nativeElement['basisDesktop'] = value;
|
|
22005
|
+
}
|
|
22006
|
+
get basisDesktop() {
|
|
22007
|
+
return this.elementRef.nativeElement['basisDesktop'];
|
|
22008
|
+
}
|
|
22009
|
+
set alignSelf(value) {
|
|
22010
|
+
this.elementRef.nativeElement['alignSelf'] = value;
|
|
22011
|
+
}
|
|
22012
|
+
get alignSelf() {
|
|
22013
|
+
return this.elementRef.nativeElement['alignSelf'];
|
|
22014
|
+
}
|
|
22015
|
+
set alignSelfMobile(value) {
|
|
22016
|
+
this.elementRef.nativeElement['alignSelfMobile'] = value;
|
|
22017
|
+
}
|
|
22018
|
+
get alignSelfMobile() {
|
|
22019
|
+
return this.elementRef.nativeElement['alignSelfMobile'];
|
|
22020
|
+
}
|
|
22021
|
+
set alignSelfTablet(value) {
|
|
22022
|
+
this.elementRef.nativeElement['alignSelfTablet'] = value;
|
|
22023
|
+
}
|
|
22024
|
+
get alignSelfTablet() {
|
|
22025
|
+
return this.elementRef.nativeElement['alignSelfTablet'];
|
|
22026
|
+
}
|
|
22027
|
+
set alignSelfLaptop(value) {
|
|
22028
|
+
this.elementRef.nativeElement['alignSelfLaptop'] = value;
|
|
22029
|
+
}
|
|
22030
|
+
get alignSelfLaptop() {
|
|
22031
|
+
return this.elementRef.nativeElement['alignSelfLaptop'];
|
|
22032
|
+
}
|
|
22033
|
+
set alignSelfDesktop(value) {
|
|
22034
|
+
this.elementRef.nativeElement['alignSelfDesktop'] = value;
|
|
22035
|
+
}
|
|
22036
|
+
get alignSelfDesktop() {
|
|
22037
|
+
return this.elementRef.nativeElement['alignSelfDesktop'];
|
|
22038
|
+
}
|
|
22039
|
+
set justifySelf(value) {
|
|
22040
|
+
this.elementRef.nativeElement['justifySelf'] = value;
|
|
22041
|
+
}
|
|
22042
|
+
get justifySelf() {
|
|
22043
|
+
return this.elementRef.nativeElement['justifySelf'];
|
|
22044
|
+
}
|
|
22045
|
+
set justifySelfMobile(value) {
|
|
22046
|
+
this.elementRef.nativeElement['justifySelfMobile'] = value;
|
|
22047
|
+
}
|
|
22048
|
+
get justifySelfMobile() {
|
|
22049
|
+
return this.elementRef.nativeElement['justifySelfMobile'];
|
|
22050
|
+
}
|
|
22051
|
+
set justifySelfTablet(value) {
|
|
22052
|
+
this.elementRef.nativeElement['justifySelfTablet'] = value;
|
|
22053
|
+
}
|
|
22054
|
+
get justifySelfTablet() {
|
|
22055
|
+
return this.elementRef.nativeElement['justifySelfTablet'];
|
|
22056
|
+
}
|
|
22057
|
+
set justifySelfLaptop(value) {
|
|
22058
|
+
this.elementRef.nativeElement['justifySelfLaptop'] = value;
|
|
22059
|
+
}
|
|
22060
|
+
get justifySelfLaptop() {
|
|
22061
|
+
return this.elementRef.nativeElement['justifySelfLaptop'];
|
|
22062
|
+
}
|
|
22063
|
+
set justifySelfDesktop(value) {
|
|
22064
|
+
this.elementRef.nativeElement['justifySelfDesktop'] = value;
|
|
22065
|
+
}
|
|
22066
|
+
get justifySelfDesktop() {
|
|
22067
|
+
return this.elementRef.nativeElement['justifySelfDesktop'];
|
|
22068
|
+
}
|
|
22069
|
+
set hidden(value) {
|
|
22070
|
+
this.elementRef.nativeElement['hidden'] = value;
|
|
22071
|
+
}
|
|
22072
|
+
get hidden() {
|
|
22073
|
+
return this.elementRef.nativeElement['hidden'];
|
|
22074
|
+
}
|
|
22075
|
+
set hiddenMobile(value) {
|
|
22076
|
+
this.elementRef.nativeElement['hiddenMobile'] = value;
|
|
22077
|
+
}
|
|
22078
|
+
get hiddenMobile() {
|
|
22079
|
+
return this.elementRef.nativeElement['hiddenMobile'];
|
|
22080
|
+
}
|
|
22081
|
+
set hiddenTablet(value) {
|
|
22082
|
+
this.elementRef.nativeElement['hiddenTablet'] = value;
|
|
22083
|
+
}
|
|
22084
|
+
get hiddenTablet() {
|
|
22085
|
+
return this.elementRef.nativeElement['hiddenTablet'];
|
|
22086
|
+
}
|
|
22087
|
+
set hiddenLaptop(value) {
|
|
22088
|
+
this.elementRef.nativeElement['hiddenLaptop'] = value;
|
|
22089
|
+
}
|
|
22090
|
+
get hiddenLaptop() {
|
|
22091
|
+
return this.elementRef.nativeElement['hiddenLaptop'];
|
|
22092
|
+
}
|
|
22093
|
+
set hiddenDesktop(value) {
|
|
22094
|
+
this.elementRef.nativeElement['hiddenDesktop'] = value;
|
|
22095
|
+
}
|
|
22096
|
+
get hiddenDesktop() {
|
|
22097
|
+
return this.elementRef.nativeElement['hiddenDesktop'];
|
|
22098
|
+
}
|
|
22099
|
+
set shownSr(value) {
|
|
22100
|
+
this.elementRef.nativeElement['shownSr'] = value;
|
|
22101
|
+
}
|
|
22102
|
+
get shownSr() {
|
|
22103
|
+
return this.elementRef.nativeElement['shownSr'];
|
|
22104
|
+
}
|
|
22105
|
+
set shownSrMobile(value) {
|
|
22106
|
+
this.elementRef.nativeElement['shownSrMobile'] = value;
|
|
22107
|
+
}
|
|
22108
|
+
get shownSrMobile() {
|
|
22109
|
+
return this.elementRef.nativeElement['shownSrMobile'];
|
|
22110
|
+
}
|
|
22111
|
+
set shownSrTablet(value) {
|
|
22112
|
+
this.elementRef.nativeElement['shownSrTablet'] = value;
|
|
22113
|
+
}
|
|
22114
|
+
get shownSrTablet() {
|
|
22115
|
+
return this.elementRef.nativeElement['shownSrTablet'];
|
|
22116
|
+
}
|
|
22117
|
+
set shownSrLaptop(value) {
|
|
22118
|
+
this.elementRef.nativeElement['shownSrLaptop'] = value;
|
|
22119
|
+
}
|
|
22120
|
+
get shownSrLaptop() {
|
|
22121
|
+
return this.elementRef.nativeElement['shownSrLaptop'];
|
|
22122
|
+
}
|
|
22123
|
+
set shownSrDesktop(value) {
|
|
22124
|
+
this.elementRef.nativeElement['shownSrDesktop'] = value;
|
|
22125
|
+
}
|
|
22126
|
+
get shownSrDesktop() {
|
|
22127
|
+
return this.elementRef.nativeElement['shownSrDesktop'];
|
|
22128
|
+
}
|
|
22129
|
+
set colSpan(value) {
|
|
22130
|
+
this.elementRef.nativeElement['colSpan'] = value;
|
|
22131
|
+
}
|
|
22132
|
+
get colSpan() {
|
|
22133
|
+
return this.elementRef.nativeElement['colSpan'];
|
|
22134
|
+
}
|
|
22135
|
+
set colSpanMobile(value) {
|
|
22136
|
+
this.elementRef.nativeElement['colSpanMobile'] = value;
|
|
22137
|
+
}
|
|
22138
|
+
get colSpanMobile() {
|
|
22139
|
+
return this.elementRef.nativeElement['colSpanMobile'];
|
|
22140
|
+
}
|
|
22141
|
+
set colSpanTablet(value) {
|
|
22142
|
+
this.elementRef.nativeElement['colSpanTablet'] = value;
|
|
22143
|
+
}
|
|
22144
|
+
get colSpanTablet() {
|
|
22145
|
+
return this.elementRef.nativeElement['colSpanTablet'];
|
|
22146
|
+
}
|
|
22147
|
+
set colSpanLaptop(value) {
|
|
22148
|
+
this.elementRef.nativeElement['colSpanLaptop'] = value;
|
|
22149
|
+
}
|
|
22150
|
+
get colSpanLaptop() {
|
|
22151
|
+
return this.elementRef.nativeElement['colSpanLaptop'];
|
|
22152
|
+
}
|
|
22153
|
+
set colSpanDesktop(value) {
|
|
22154
|
+
this.elementRef.nativeElement['colSpanDesktop'] = value;
|
|
22155
|
+
}
|
|
22156
|
+
get colSpanDesktop() {
|
|
22157
|
+
return this.elementRef.nativeElement['colSpanDesktop'];
|
|
22158
|
+
}
|
|
22159
|
+
set order(value) {
|
|
22160
|
+
this.elementRef.nativeElement['order'] = value;
|
|
22161
|
+
}
|
|
22162
|
+
get order() {
|
|
22163
|
+
return this.elementRef.nativeElement['order'];
|
|
22164
|
+
}
|
|
22165
|
+
set orderMobile(value) {
|
|
22166
|
+
this.elementRef.nativeElement['orderMobile'] = value;
|
|
22167
|
+
}
|
|
22168
|
+
get orderMobile() {
|
|
22169
|
+
return this.elementRef.nativeElement['orderMobile'];
|
|
22170
|
+
}
|
|
22171
|
+
set orderTablet(value) {
|
|
22172
|
+
this.elementRef.nativeElement['orderTablet'] = value;
|
|
22173
|
+
}
|
|
22174
|
+
get orderTablet() {
|
|
22175
|
+
return this.elementRef.nativeElement['orderTablet'];
|
|
22176
|
+
}
|
|
22177
|
+
set orderLaptop(value) {
|
|
22178
|
+
this.elementRef.nativeElement['orderLaptop'] = value;
|
|
22179
|
+
}
|
|
22180
|
+
get orderLaptop() {
|
|
22181
|
+
return this.elementRef.nativeElement['orderLaptop'];
|
|
22182
|
+
}
|
|
22183
|
+
set orderDesktop(value) {
|
|
22184
|
+
this.elementRef.nativeElement['orderDesktop'] = value;
|
|
22185
|
+
}
|
|
22186
|
+
get orderDesktop() {
|
|
22187
|
+
return this.elementRef.nativeElement['orderDesktop'];
|
|
22188
|
+
}
|
|
22189
|
+
set stickyTop(value) {
|
|
22190
|
+
this.elementRef.nativeElement['stickyTop'] = value;
|
|
22191
|
+
}
|
|
22192
|
+
get stickyTop() {
|
|
22193
|
+
return this.elementRef.nativeElement['stickyTop'];
|
|
22194
|
+
}
|
|
22195
|
+
set stickyBottom(value) {
|
|
22196
|
+
this.elementRef.nativeElement['stickyBottom'] = value;
|
|
22197
|
+
}
|
|
22198
|
+
get stickyBottom() {
|
|
22199
|
+
return this.elementRef.nativeElement['stickyBottom'];
|
|
22200
|
+
}
|
|
22201
|
+
set wordBreakAll(value) {
|
|
22202
|
+
this.elementRef.nativeElement['wordBreakAll'] = value;
|
|
22203
|
+
}
|
|
22204
|
+
get wordBreakAll() {
|
|
22205
|
+
return this.elementRef.nativeElement['wordBreakAll'];
|
|
22206
|
+
}
|
|
22207
|
+
set wordBreakAllMobile(value) {
|
|
22208
|
+
this.elementRef.nativeElement['wordBreakAllMobile'] = value;
|
|
22209
|
+
}
|
|
22210
|
+
get wordBreakAllMobile() {
|
|
22211
|
+
return this.elementRef.nativeElement['wordBreakAllMobile'];
|
|
22212
|
+
}
|
|
22213
|
+
set wordBreakAllTablet(value) {
|
|
22214
|
+
this.elementRef.nativeElement['wordBreakAllTablet'] = value;
|
|
22215
|
+
}
|
|
22216
|
+
get wordBreakAllTablet() {
|
|
22217
|
+
return this.elementRef.nativeElement['wordBreakAllTablet'];
|
|
22218
|
+
}
|
|
22219
|
+
set wordBreakAllLaptop(value) {
|
|
22220
|
+
this.elementRef.nativeElement['wordBreakAllLaptop'] = value;
|
|
22221
|
+
}
|
|
22222
|
+
get wordBreakAllLaptop() {
|
|
22223
|
+
return this.elementRef.nativeElement['wordBreakAllLaptop'];
|
|
22224
|
+
}
|
|
22225
|
+
set wordBreakAllDesktop(value) {
|
|
22226
|
+
this.elementRef.nativeElement['wordBreakAllDesktop'] = value;
|
|
22227
|
+
}
|
|
22228
|
+
get wordBreakAllDesktop() {
|
|
22229
|
+
return this.elementRef.nativeElement['wordBreakAllDesktop'];
|
|
22230
|
+
}
|
|
22231
|
+
event = new EventEmitter();
|
|
22232
|
+
constructor(elementRef) {
|
|
22233
|
+
this.elementRef = elementRef;
|
|
22234
|
+
this.elementRef.nativeElement.addEventListener('event', (e) => {
|
|
22235
|
+
this.event.emit(e.detail);
|
|
22236
|
+
});
|
|
22237
|
+
}
|
|
22238
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCodeInput, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
22239
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxCodeInput, isStandalone: true, selector: "px-code-input", inputs: { size: "size", state: "state", extended: "extended", extendedMobile: ["extended--mobile", "extendedMobile"], extendedTablet: ["extended--tablet", "extendedTablet"], extendedLaptop: ["extended--laptop", "extendedLaptop"], extendedDesktop: ["extended--desktop", "extendedDesktop"], ariaDescribedby: ["aria-describedby", "ariaDescribedby"], grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, outputs: { event: "event" }, ngImport: i0 });
|
|
22240
|
+
}
|
|
22241
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxCodeInput, decorators: [{
|
|
22242
|
+
type: Directive,
|
|
22243
|
+
args: [{
|
|
22244
|
+
selector: 'px-code-input',
|
|
22245
|
+
standalone: true,
|
|
22246
|
+
}]
|
|
22247
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { size: [{
|
|
22248
|
+
type: Input
|
|
22249
|
+
}], state: [{
|
|
22250
|
+
type: Input
|
|
22251
|
+
}], extended: [{
|
|
22252
|
+
type: Input
|
|
22253
|
+
}], extendedMobile: [{
|
|
22254
|
+
type: Input,
|
|
22255
|
+
args: ['extended--mobile']
|
|
22256
|
+
}], extendedTablet: [{
|
|
22257
|
+
type: Input,
|
|
22258
|
+
args: ['extended--tablet']
|
|
22259
|
+
}], extendedLaptop: [{
|
|
22260
|
+
type: Input,
|
|
22261
|
+
args: ['extended--laptop']
|
|
22262
|
+
}], extendedDesktop: [{
|
|
22263
|
+
type: Input,
|
|
22264
|
+
args: ['extended--desktop']
|
|
22265
|
+
}], ariaDescribedby: [{
|
|
22266
|
+
type: Input,
|
|
22267
|
+
args: ['aria-describedby']
|
|
22268
|
+
}], grow: [{
|
|
22269
|
+
type: Input
|
|
22270
|
+
}], growMobile: [{
|
|
22271
|
+
type: Input,
|
|
22272
|
+
args: ['grow--mobile']
|
|
22273
|
+
}], growTablet: [{
|
|
22274
|
+
type: Input,
|
|
22275
|
+
args: ['grow--tablet']
|
|
22276
|
+
}], growLaptop: [{
|
|
22277
|
+
type: Input,
|
|
22278
|
+
args: ['grow--laptop']
|
|
22279
|
+
}], growDesktop: [{
|
|
22280
|
+
type: Input,
|
|
22281
|
+
args: ['grow--desktop']
|
|
22282
|
+
}], shrink: [{
|
|
22283
|
+
type: Input
|
|
22284
|
+
}], shrinkMobile: [{
|
|
22285
|
+
type: Input,
|
|
22286
|
+
args: ['shrink--mobile']
|
|
22287
|
+
}], shrinkTablet: [{
|
|
22288
|
+
type: Input,
|
|
22289
|
+
args: ['shrink--tablet']
|
|
22290
|
+
}], shrinkLaptop: [{
|
|
22291
|
+
type: Input,
|
|
22292
|
+
args: ['shrink--laptop']
|
|
22293
|
+
}], shrinkDesktop: [{
|
|
22294
|
+
type: Input,
|
|
22295
|
+
args: ['shrink--desktop']
|
|
22296
|
+
}], basis: [{
|
|
22297
|
+
type: Input
|
|
22298
|
+
}], basisMobile: [{
|
|
22299
|
+
type: Input,
|
|
22300
|
+
args: ['basis--mobile']
|
|
22301
|
+
}], basisTablet: [{
|
|
22302
|
+
type: Input,
|
|
22303
|
+
args: ['basis--tablet']
|
|
22304
|
+
}], basisLaptop: [{
|
|
22305
|
+
type: Input,
|
|
22306
|
+
args: ['basis--laptop']
|
|
22307
|
+
}], basisDesktop: [{
|
|
22308
|
+
type: Input,
|
|
22309
|
+
args: ['basis--desktop']
|
|
22310
|
+
}], alignSelf: [{
|
|
22311
|
+
type: Input,
|
|
22312
|
+
args: ['align-self']
|
|
22313
|
+
}], alignSelfMobile: [{
|
|
22314
|
+
type: Input,
|
|
22315
|
+
args: ['align-self--mobile']
|
|
22316
|
+
}], alignSelfTablet: [{
|
|
22317
|
+
type: Input,
|
|
22318
|
+
args: ['align-self--tablet']
|
|
22319
|
+
}], alignSelfLaptop: [{
|
|
22320
|
+
type: Input,
|
|
22321
|
+
args: ['align-self--laptop']
|
|
22322
|
+
}], alignSelfDesktop: [{
|
|
22323
|
+
type: Input,
|
|
22324
|
+
args: ['align-self--desktop']
|
|
22325
|
+
}], justifySelf: [{
|
|
22326
|
+
type: Input,
|
|
22327
|
+
args: ['justify-self']
|
|
22328
|
+
}], justifySelfMobile: [{
|
|
22329
|
+
type: Input,
|
|
22330
|
+
args: ['justify-self--mobile']
|
|
22331
|
+
}], justifySelfTablet: [{
|
|
22332
|
+
type: Input,
|
|
22333
|
+
args: ['justify-self--tablet']
|
|
22334
|
+
}], justifySelfLaptop: [{
|
|
22335
|
+
type: Input,
|
|
22336
|
+
args: ['justify-self--laptop']
|
|
22337
|
+
}], justifySelfDesktop: [{
|
|
22338
|
+
type: Input,
|
|
22339
|
+
args: ['justify-self--desktop']
|
|
22340
|
+
}], hidden: [{
|
|
22341
|
+
type: Input
|
|
22342
|
+
}], hiddenMobile: [{
|
|
22343
|
+
type: Input,
|
|
22344
|
+
args: ['hidden--mobile']
|
|
22345
|
+
}], hiddenTablet: [{
|
|
22346
|
+
type: Input,
|
|
22347
|
+
args: ['hidden--tablet']
|
|
22348
|
+
}], hiddenLaptop: [{
|
|
22349
|
+
type: Input,
|
|
22350
|
+
args: ['hidden--laptop']
|
|
22351
|
+
}], hiddenDesktop: [{
|
|
22352
|
+
type: Input,
|
|
22353
|
+
args: ['hidden--desktop']
|
|
22354
|
+
}], shownSr: [{
|
|
22355
|
+
type: Input,
|
|
22356
|
+
args: ['shown--sr']
|
|
22357
|
+
}], shownSrMobile: [{
|
|
22358
|
+
type: Input,
|
|
22359
|
+
args: ['shown--sr--mobile']
|
|
22360
|
+
}], shownSrTablet: [{
|
|
22361
|
+
type: Input,
|
|
22362
|
+
args: ['shown--sr--tablet']
|
|
22363
|
+
}], shownSrLaptop: [{
|
|
22364
|
+
type: Input,
|
|
22365
|
+
args: ['shown--sr--laptop']
|
|
22366
|
+
}], shownSrDesktop: [{
|
|
22367
|
+
type: Input,
|
|
22368
|
+
args: ['shown--sr--desktop']
|
|
22369
|
+
}], colSpan: [{
|
|
22370
|
+
type: Input,
|
|
22371
|
+
args: ['col-span']
|
|
22372
|
+
}], colSpanMobile: [{
|
|
22373
|
+
type: Input,
|
|
22374
|
+
args: ['col-span--mobile']
|
|
22375
|
+
}], colSpanTablet: [{
|
|
22376
|
+
type: Input,
|
|
22377
|
+
args: ['col-span--tablet']
|
|
22378
|
+
}], colSpanLaptop: [{
|
|
22379
|
+
type: Input,
|
|
22380
|
+
args: ['col-span--laptop']
|
|
22381
|
+
}], colSpanDesktop: [{
|
|
22382
|
+
type: Input,
|
|
22383
|
+
args: ['col-span--desktop']
|
|
22384
|
+
}], order: [{
|
|
22385
|
+
type: Input
|
|
22386
|
+
}], orderMobile: [{
|
|
22387
|
+
type: Input,
|
|
22388
|
+
args: ['order--mobile']
|
|
22389
|
+
}], orderTablet: [{
|
|
22390
|
+
type: Input,
|
|
22391
|
+
args: ['order--tablet']
|
|
22392
|
+
}], orderLaptop: [{
|
|
22393
|
+
type: Input,
|
|
22394
|
+
args: ['order--laptop']
|
|
22395
|
+
}], orderDesktop: [{
|
|
22396
|
+
type: Input,
|
|
22397
|
+
args: ['order--desktop']
|
|
22398
|
+
}], stickyTop: [{
|
|
22399
|
+
type: Input,
|
|
22400
|
+
args: ['sticky-top']
|
|
22401
|
+
}], stickyBottom: [{
|
|
22402
|
+
type: Input,
|
|
22403
|
+
args: ['sticky-bottom']
|
|
22404
|
+
}], wordBreakAll: [{
|
|
22405
|
+
type: Input,
|
|
22406
|
+
args: ['word-break-all']
|
|
22407
|
+
}], wordBreakAllMobile: [{
|
|
22408
|
+
type: Input,
|
|
22409
|
+
args: ['word-break-all--mobile']
|
|
22410
|
+
}], wordBreakAllTablet: [{
|
|
22411
|
+
type: Input,
|
|
22412
|
+
args: ['word-break-all--tablet']
|
|
22413
|
+
}], wordBreakAllLaptop: [{
|
|
22414
|
+
type: Input,
|
|
22415
|
+
args: ['word-break-all--laptop']
|
|
22416
|
+
}], wordBreakAllDesktop: [{
|
|
22417
|
+
type: Input,
|
|
22418
|
+
args: ['word-break-all--desktop']
|
|
22419
|
+
}], event: [{
|
|
22420
|
+
type: Output
|
|
22421
|
+
}] } });
|
|
21866
22422
|
/**
|
|
21867
22423
|
* @description Type-only wrapper for <px-page>
|
|
21868
22424
|
*/
|
|
@@ -28317,27 +28873,71 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
28317
28873
|
}]
|
|
28318
28874
|
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
28319
28875
|
/**
|
|
28320
|
-
* @description Type-only wrapper for <px-
|
|
28876
|
+
* @description Type-only wrapper for <px-radio>
|
|
28321
28877
|
*/
|
|
28322
|
-
class
|
|
28878
|
+
class PxRadio {
|
|
28323
28879
|
elementRef;
|
|
28880
|
+
/** The validation state of the radio button. */
|
|
28881
|
+
set state(value) {
|
|
28882
|
+
this.elementRef.nativeElement['state'] = value;
|
|
28883
|
+
}
|
|
28884
|
+
get state() {
|
|
28885
|
+
return this.elementRef.nativeElement['state'];
|
|
28886
|
+
}
|
|
28887
|
+
/** The visual variant of the radio button. */
|
|
28324
28888
|
set variant(value) {
|
|
28325
28889
|
this.elementRef.nativeElement['variant'] = value;
|
|
28326
28890
|
}
|
|
28327
28891
|
get variant() {
|
|
28328
28892
|
return this.elementRef.nativeElement['variant'];
|
|
28329
28893
|
}
|
|
28894
|
+
/** Whether to use inverted (dark background) styling. */
|
|
28895
|
+
set inverted(value) {
|
|
28896
|
+
this.elementRef.nativeElement['inverted'] = value;
|
|
28897
|
+
}
|
|
28898
|
+
get inverted() {
|
|
28899
|
+
return this.elementRef.nativeElement['inverted'];
|
|
28900
|
+
}
|
|
28330
28901
|
set size(value) {
|
|
28331
28902
|
this.elementRef.nativeElement['size'] = value;
|
|
28332
28903
|
}
|
|
28333
28904
|
get size() {
|
|
28334
28905
|
return this.elementRef.nativeElement['size'];
|
|
28335
28906
|
}
|
|
28336
|
-
|
|
28337
|
-
|
|
28907
|
+
/** Whether the radio button is checked. */
|
|
28908
|
+
set checked(value) {
|
|
28909
|
+
this.elementRef.nativeElement['checked'] = value;
|
|
28910
|
+
}
|
|
28911
|
+
get checked() {
|
|
28912
|
+
return this.elementRef.nativeElement['checked'];
|
|
28913
|
+
}
|
|
28914
|
+
/** Whether the radio button is disabled. */
|
|
28915
|
+
set disabled(value) {
|
|
28916
|
+
this.elementRef.nativeElement['disabled'] = value;
|
|
28917
|
+
}
|
|
28918
|
+
get disabled() {
|
|
28919
|
+
return this.elementRef.nativeElement['disabled'];
|
|
28920
|
+
}
|
|
28921
|
+
/** Whether to apply hover styling. */
|
|
28922
|
+
set hover(value) {
|
|
28923
|
+
this.elementRef.nativeElement['hover'] = value;
|
|
28924
|
+
}
|
|
28925
|
+
get hover() {
|
|
28926
|
+
return this.elementRef.nativeElement['hover'];
|
|
28927
|
+
}
|
|
28928
|
+
/** The name of the radio button, used for form submission. */
|
|
28929
|
+
set name(value) {
|
|
28930
|
+
this.elementRef.nativeElement['name'] = value;
|
|
28931
|
+
}
|
|
28932
|
+
get name() {
|
|
28933
|
+
return this.elementRef.nativeElement['name'];
|
|
28934
|
+
}
|
|
28935
|
+
/** The value of the radio button, used for form submission. */
|
|
28936
|
+
set value(value) {
|
|
28937
|
+
this.elementRef.nativeElement['value'] = value;
|
|
28338
28938
|
}
|
|
28339
|
-
get
|
|
28340
|
-
return this.elementRef.nativeElement['
|
|
28939
|
+
get value() {
|
|
28940
|
+
return this.elementRef.nativeElement['value'];
|
|
28341
28941
|
}
|
|
28342
28942
|
set grow(value) {
|
|
28343
28943
|
this.elementRef.nativeElement['grow'] = value;
|
|
@@ -28651,24 +29251,41 @@ class PxPrice {
|
|
|
28651
29251
|
get wordBreakAllDesktop() {
|
|
28652
29252
|
return this.elementRef.nativeElement['wordBreakAllDesktop'];
|
|
28653
29253
|
}
|
|
29254
|
+
/** Fired when the radio button becomes checked. */
|
|
29255
|
+
change = new EventEmitter();
|
|
28654
29256
|
constructor(elementRef) {
|
|
28655
29257
|
this.elementRef = elementRef;
|
|
29258
|
+
this.elementRef.nativeElement.addEventListener('change', (e) => {
|
|
29259
|
+
this.change.emit(e.detail);
|
|
29260
|
+
});
|
|
28656
29261
|
}
|
|
28657
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
28658
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
29262
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxRadio, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
29263
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxRadio, isStandalone: true, selector: "px-radio", inputs: { state: "state", variant: "variant", inverted: "inverted", size: "size", checked: "checked", disabled: "disabled", hover: "hover", name: "name", value: "value", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, outputs: { change: "change" }, ngImport: i0 });
|
|
28659
29264
|
}
|
|
28660
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
29265
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxRadio, decorators: [{
|
|
28661
29266
|
type: Directive,
|
|
28662
29267
|
args: [{
|
|
28663
|
-
selector: 'px-
|
|
29268
|
+
selector: 'px-radio',
|
|
28664
29269
|
standalone: true,
|
|
28665
29270
|
}]
|
|
28666
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
29271
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { state: [{
|
|
28667
29272
|
type: Input
|
|
28668
|
-
}],
|
|
29273
|
+
}], variant: [{
|
|
28669
29274
|
type: Input
|
|
28670
29275
|
}], inverted: [{
|
|
28671
29276
|
type: Input
|
|
29277
|
+
}], size: [{
|
|
29278
|
+
type: Input
|
|
29279
|
+
}], checked: [{
|
|
29280
|
+
type: Input
|
|
29281
|
+
}], disabled: [{
|
|
29282
|
+
type: Input
|
|
29283
|
+
}], hover: [{
|
|
29284
|
+
type: Input
|
|
29285
|
+
}], name: [{
|
|
29286
|
+
type: Input
|
|
29287
|
+
}], value: [{
|
|
29288
|
+
type: Input
|
|
28672
29289
|
}], grow: [{
|
|
28673
29290
|
type: Input
|
|
28674
29291
|
}], growMobile: [{
|
|
@@ -28820,27 +29437,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
28820
29437
|
}], wordBreakAllDesktop: [{
|
|
28821
29438
|
type: Input,
|
|
28822
29439
|
args: ['word-break-all--desktop']
|
|
29440
|
+
}], change: [{
|
|
29441
|
+
type: Output
|
|
28823
29442
|
}] } });
|
|
28824
29443
|
/**
|
|
28825
|
-
* @description Type-only wrapper for <px-radio>
|
|
29444
|
+
* @description Type-only wrapper for <px-radio-base>
|
|
28826
29445
|
*/
|
|
28827
|
-
class
|
|
29446
|
+
class PxRadioBase {
|
|
28828
29447
|
elementRef;
|
|
28829
|
-
|
|
28830
|
-
|
|
28831
|
-
this.elementRef.nativeElement['state'] = value;
|
|
28832
|
-
}
|
|
28833
|
-
get state() {
|
|
28834
|
-
return this.elementRef.nativeElement['state'];
|
|
28835
|
-
}
|
|
28836
|
-
/** The visual variant of the radio button. */
|
|
28837
|
-
set variant(value) {
|
|
28838
|
-
this.elementRef.nativeElement['variant'] = value;
|
|
29448
|
+
set hover(value) {
|
|
29449
|
+
this.elementRef.nativeElement['hover'] = value;
|
|
28839
29450
|
}
|
|
28840
|
-
get
|
|
28841
|
-
return this.elementRef.nativeElement['
|
|
29451
|
+
get hover() {
|
|
29452
|
+
return this.elementRef.nativeElement['hover'];
|
|
28842
29453
|
}
|
|
28843
|
-
/** Whether to use inverted (dark background) styling. */
|
|
28844
29454
|
set inverted(value) {
|
|
28845
29455
|
this.elementRef.nativeElement['inverted'] = value;
|
|
28846
29456
|
}
|
|
@@ -28853,41 +29463,6 @@ class PxRadio {
|
|
|
28853
29463
|
get size() {
|
|
28854
29464
|
return this.elementRef.nativeElement['size'];
|
|
28855
29465
|
}
|
|
28856
|
-
/** Whether the radio button is checked. */
|
|
28857
|
-
set checked(value) {
|
|
28858
|
-
this.elementRef.nativeElement['checked'] = value;
|
|
28859
|
-
}
|
|
28860
|
-
get checked() {
|
|
28861
|
-
return this.elementRef.nativeElement['checked'];
|
|
28862
|
-
}
|
|
28863
|
-
/** Whether the radio button is disabled. */
|
|
28864
|
-
set disabled(value) {
|
|
28865
|
-
this.elementRef.nativeElement['disabled'] = value;
|
|
28866
|
-
}
|
|
28867
|
-
get disabled() {
|
|
28868
|
-
return this.elementRef.nativeElement['disabled'];
|
|
28869
|
-
}
|
|
28870
|
-
/** Whether to apply hover styling. */
|
|
28871
|
-
set hover(value) {
|
|
28872
|
-
this.elementRef.nativeElement['hover'] = value;
|
|
28873
|
-
}
|
|
28874
|
-
get hover() {
|
|
28875
|
-
return this.elementRef.nativeElement['hover'];
|
|
28876
|
-
}
|
|
28877
|
-
/** The name of the radio button, used for form submission. */
|
|
28878
|
-
set name(value) {
|
|
28879
|
-
this.elementRef.nativeElement['name'] = value;
|
|
28880
|
-
}
|
|
28881
|
-
get name() {
|
|
28882
|
-
return this.elementRef.nativeElement['name'];
|
|
28883
|
-
}
|
|
28884
|
-
/** The value of the radio button, used for form submission. */
|
|
28885
|
-
set value(value) {
|
|
28886
|
-
this.elementRef.nativeElement['value'] = value;
|
|
28887
|
-
}
|
|
28888
|
-
get value() {
|
|
28889
|
-
return this.elementRef.nativeElement['value'];
|
|
28890
|
-
}
|
|
28891
29466
|
set grow(value) {
|
|
28892
29467
|
this.elementRef.nativeElement['grow'] = value;
|
|
28893
29468
|
}
|
|
@@ -29200,41 +29775,24 @@ class PxRadio {
|
|
|
29200
29775
|
get wordBreakAllDesktop() {
|
|
29201
29776
|
return this.elementRef.nativeElement['wordBreakAllDesktop'];
|
|
29202
29777
|
}
|
|
29203
|
-
/** Fired when the radio button becomes checked. */
|
|
29204
|
-
change = new EventEmitter();
|
|
29205
29778
|
constructor(elementRef) {
|
|
29206
29779
|
this.elementRef = elementRef;
|
|
29207
|
-
this.elementRef.nativeElement.addEventListener('change', (e) => {
|
|
29208
|
-
this.change.emit(e.detail);
|
|
29209
|
-
});
|
|
29210
29780
|
}
|
|
29211
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
29212
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
29781
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxRadioBase, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
29782
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxRadioBase, isStandalone: true, selector: "px-radio-base", inputs: { hover: "hover", inverted: "inverted", size: "size", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, ngImport: i0 });
|
|
29213
29783
|
}
|
|
29214
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
29784
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxRadioBase, decorators: [{
|
|
29215
29785
|
type: Directive,
|
|
29216
29786
|
args: [{
|
|
29217
|
-
selector: 'px-radio',
|
|
29787
|
+
selector: 'px-radio-base',
|
|
29218
29788
|
standalone: true,
|
|
29219
29789
|
}]
|
|
29220
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
29221
|
-
type: Input
|
|
29222
|
-
}], variant: [{
|
|
29790
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { hover: [{
|
|
29223
29791
|
type: Input
|
|
29224
29792
|
}], inverted: [{
|
|
29225
29793
|
type: Input
|
|
29226
29794
|
}], size: [{
|
|
29227
29795
|
type: Input
|
|
29228
|
-
}], checked: [{
|
|
29229
|
-
type: Input
|
|
29230
|
-
}], disabled: [{
|
|
29231
|
-
type: Input
|
|
29232
|
-
}], hover: [{
|
|
29233
|
-
type: Input
|
|
29234
|
-
}], name: [{
|
|
29235
|
-
type: Input
|
|
29236
|
-
}], value: [{
|
|
29237
|
-
type: Input
|
|
29238
29796
|
}], grow: [{
|
|
29239
29797
|
type: Input
|
|
29240
29798
|
}], growMobile: [{
|
|
@@ -29386,19 +29944,47 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
29386
29944
|
}], wordBreakAllDesktop: [{
|
|
29387
29945
|
type: Input,
|
|
29388
29946
|
args: ['word-break-all--desktop']
|
|
29389
|
-
}], change: [{
|
|
29390
|
-
type: Output
|
|
29391
29947
|
}] } });
|
|
29392
29948
|
/**
|
|
29393
|
-
* @description Type-only wrapper for <px-radio-
|
|
29949
|
+
* @description Type-only wrapper for <px-radio-group>
|
|
29394
29950
|
*/
|
|
29395
|
-
class
|
|
29951
|
+
class PxRadioGroup {
|
|
29396
29952
|
elementRef;
|
|
29397
|
-
set
|
|
29398
|
-
this.elementRef.nativeElement['
|
|
29953
|
+
set name(value) {
|
|
29954
|
+
this.elementRef.nativeElement['name'] = value;
|
|
29399
29955
|
}
|
|
29400
|
-
get
|
|
29401
|
-
return this.elementRef.nativeElement['
|
|
29956
|
+
get name() {
|
|
29957
|
+
return this.elementRef.nativeElement['name'];
|
|
29958
|
+
}
|
|
29959
|
+
set gap(value) {
|
|
29960
|
+
this.elementRef.nativeElement['gap'] = value;
|
|
29961
|
+
}
|
|
29962
|
+
get gap() {
|
|
29963
|
+
return this.elementRef.nativeElement['gap'];
|
|
29964
|
+
}
|
|
29965
|
+
set variant(value) {
|
|
29966
|
+
this.elementRef.nativeElement['variant'] = value;
|
|
29967
|
+
}
|
|
29968
|
+
get variant() {
|
|
29969
|
+
return this.elementRef.nativeElement['variant'];
|
|
29970
|
+
}
|
|
29971
|
+
set required(value) {
|
|
29972
|
+
this.elementRef.nativeElement['required'] = value;
|
|
29973
|
+
}
|
|
29974
|
+
get required() {
|
|
29975
|
+
return this.elementRef.nativeElement['required'];
|
|
29976
|
+
}
|
|
29977
|
+
set disabled(value) {
|
|
29978
|
+
this.elementRef.nativeElement['disabled'] = value;
|
|
29979
|
+
}
|
|
29980
|
+
get disabled() {
|
|
29981
|
+
return this.elementRef.nativeElement['disabled'];
|
|
29982
|
+
}
|
|
29983
|
+
set state(value) {
|
|
29984
|
+
this.elementRef.nativeElement['state'] = value;
|
|
29985
|
+
}
|
|
29986
|
+
get state() {
|
|
29987
|
+
return this.elementRef.nativeElement['state'];
|
|
29402
29988
|
}
|
|
29403
29989
|
set inverted(value) {
|
|
29404
29990
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -29727,16 +30313,26 @@ class PxRadioBase {
|
|
|
29727
30313
|
constructor(elementRef) {
|
|
29728
30314
|
this.elementRef = elementRef;
|
|
29729
30315
|
}
|
|
29730
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
29731
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
30316
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxRadioGroup, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
30317
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxRadioGroup, isStandalone: true, selector: "px-radio-group", inputs: { name: "name", gap: "gap", variant: "variant", required: "required", disabled: "disabled", state: "state", inverted: "inverted", size: "size", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, ngImport: i0 });
|
|
29732
30318
|
}
|
|
29733
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
30319
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxRadioGroup, decorators: [{
|
|
29734
30320
|
type: Directive,
|
|
29735
30321
|
args: [{
|
|
29736
|
-
selector: 'px-radio-
|
|
30322
|
+
selector: 'px-radio-group',
|
|
29737
30323
|
standalone: true,
|
|
29738
30324
|
}]
|
|
29739
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
30325
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { name: [{
|
|
30326
|
+
type: Input
|
|
30327
|
+
}], gap: [{
|
|
30328
|
+
type: Input
|
|
30329
|
+
}], variant: [{
|
|
30330
|
+
type: Input
|
|
30331
|
+
}], required: [{
|
|
30332
|
+
type: Input
|
|
30333
|
+
}], disabled: [{
|
|
30334
|
+
type: Input
|
|
30335
|
+
}], state: [{
|
|
29740
30336
|
type: Input
|
|
29741
30337
|
}], inverted: [{
|
|
29742
30338
|
type: Input
|
|
@@ -29895,45 +30491,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
29895
30491
|
args: ['word-break-all--desktop']
|
|
29896
30492
|
}] } });
|
|
29897
30493
|
/**
|
|
29898
|
-
* @description Type-only wrapper for <px-
|
|
30494
|
+
* @description Type-only wrapper for <px-price>
|
|
29899
30495
|
*/
|
|
29900
|
-
class
|
|
30496
|
+
class PxPrice {
|
|
29901
30497
|
elementRef;
|
|
29902
|
-
set name(value) {
|
|
29903
|
-
this.elementRef.nativeElement['name'] = value;
|
|
29904
|
-
}
|
|
29905
|
-
get name() {
|
|
29906
|
-
return this.elementRef.nativeElement['name'];
|
|
29907
|
-
}
|
|
29908
|
-
set gap(value) {
|
|
29909
|
-
this.elementRef.nativeElement['gap'] = value;
|
|
29910
|
-
}
|
|
29911
|
-
get gap() {
|
|
29912
|
-
return this.elementRef.nativeElement['gap'];
|
|
29913
|
-
}
|
|
29914
30498
|
set variant(value) {
|
|
29915
30499
|
this.elementRef.nativeElement['variant'] = value;
|
|
29916
30500
|
}
|
|
29917
30501
|
get variant() {
|
|
29918
30502
|
return this.elementRef.nativeElement['variant'];
|
|
29919
30503
|
}
|
|
29920
|
-
set
|
|
29921
|
-
this.elementRef.nativeElement['
|
|
29922
|
-
}
|
|
29923
|
-
get required() {
|
|
29924
|
-
return this.elementRef.nativeElement['required'];
|
|
29925
|
-
}
|
|
29926
|
-
set disabled(value) {
|
|
29927
|
-
this.elementRef.nativeElement['disabled'] = value;
|
|
29928
|
-
}
|
|
29929
|
-
get disabled() {
|
|
29930
|
-
return this.elementRef.nativeElement['disabled'];
|
|
29931
|
-
}
|
|
29932
|
-
set state(value) {
|
|
29933
|
-
this.elementRef.nativeElement['state'] = value;
|
|
30504
|
+
set size(value) {
|
|
30505
|
+
this.elementRef.nativeElement['size'] = value;
|
|
29934
30506
|
}
|
|
29935
|
-
get
|
|
29936
|
-
return this.elementRef.nativeElement['
|
|
30507
|
+
get size() {
|
|
30508
|
+
return this.elementRef.nativeElement['size'];
|
|
29937
30509
|
}
|
|
29938
30510
|
set inverted(value) {
|
|
29939
30511
|
this.elementRef.nativeElement['inverted'] = value;
|
|
@@ -29941,12 +30513,6 @@ class PxRadioGroup {
|
|
|
29941
30513
|
get inverted() {
|
|
29942
30514
|
return this.elementRef.nativeElement['inverted'];
|
|
29943
30515
|
}
|
|
29944
|
-
set size(value) {
|
|
29945
|
-
this.elementRef.nativeElement['size'] = value;
|
|
29946
|
-
}
|
|
29947
|
-
get size() {
|
|
29948
|
-
return this.elementRef.nativeElement['size'];
|
|
29949
|
-
}
|
|
29950
30516
|
set grow(value) {
|
|
29951
30517
|
this.elementRef.nativeElement['grow'] = value;
|
|
29952
30518
|
}
|
|
@@ -30262,31 +30828,21 @@ class PxRadioGroup {
|
|
|
30262
30828
|
constructor(elementRef) {
|
|
30263
30829
|
this.elementRef = elementRef;
|
|
30264
30830
|
}
|
|
30265
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
30266
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type:
|
|
30831
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxPrice, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
30832
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: PxPrice, isStandalone: true, selector: "px-price", inputs: { variant: "variant", size: "size", inverted: "inverted", grow: "grow", growMobile: ["grow--mobile", "growMobile"], growTablet: ["grow--tablet", "growTablet"], growLaptop: ["grow--laptop", "growLaptop"], growDesktop: ["grow--desktop", "growDesktop"], shrink: "shrink", shrinkMobile: ["shrink--mobile", "shrinkMobile"], shrinkTablet: ["shrink--tablet", "shrinkTablet"], shrinkLaptop: ["shrink--laptop", "shrinkLaptop"], shrinkDesktop: ["shrink--desktop", "shrinkDesktop"], basis: "basis", basisMobile: ["basis--mobile", "basisMobile"], basisTablet: ["basis--tablet", "basisTablet"], basisLaptop: ["basis--laptop", "basisLaptop"], basisDesktop: ["basis--desktop", "basisDesktop"], alignSelf: ["align-self", "alignSelf"], alignSelfMobile: ["align-self--mobile", "alignSelfMobile"], alignSelfTablet: ["align-self--tablet", "alignSelfTablet"], alignSelfLaptop: ["align-self--laptop", "alignSelfLaptop"], alignSelfDesktop: ["align-self--desktop", "alignSelfDesktop"], justifySelf: ["justify-self", "justifySelf"], justifySelfMobile: ["justify-self--mobile", "justifySelfMobile"], justifySelfTablet: ["justify-self--tablet", "justifySelfTablet"], justifySelfLaptop: ["justify-self--laptop", "justifySelfLaptop"], justifySelfDesktop: ["justify-self--desktop", "justifySelfDesktop"], hidden: "hidden", hiddenMobile: ["hidden--mobile", "hiddenMobile"], hiddenTablet: ["hidden--tablet", "hiddenTablet"], hiddenLaptop: ["hidden--laptop", "hiddenLaptop"], hiddenDesktop: ["hidden--desktop", "hiddenDesktop"], shownSr: ["shown--sr", "shownSr"], shownSrMobile: ["shown--sr--mobile", "shownSrMobile"], shownSrTablet: ["shown--sr--tablet", "shownSrTablet"], shownSrLaptop: ["shown--sr--laptop", "shownSrLaptop"], shownSrDesktop: ["shown--sr--desktop", "shownSrDesktop"], colSpan: ["col-span", "colSpan"], colSpanMobile: ["col-span--mobile", "colSpanMobile"], colSpanTablet: ["col-span--tablet", "colSpanTablet"], colSpanLaptop: ["col-span--laptop", "colSpanLaptop"], colSpanDesktop: ["col-span--desktop", "colSpanDesktop"], order: "order", orderMobile: ["order--mobile", "orderMobile"], orderTablet: ["order--tablet", "orderTablet"], orderLaptop: ["order--laptop", "orderLaptop"], orderDesktop: ["order--desktop", "orderDesktop"], stickyTop: ["sticky-top", "stickyTop"], stickyBottom: ["sticky-bottom", "stickyBottom"], wordBreakAll: ["word-break-all", "wordBreakAll"], wordBreakAllMobile: ["word-break-all--mobile", "wordBreakAllMobile"], wordBreakAllTablet: ["word-break-all--tablet", "wordBreakAllTablet"], wordBreakAllLaptop: ["word-break-all--laptop", "wordBreakAllLaptop"], wordBreakAllDesktop: ["word-break-all--desktop", "wordBreakAllDesktop"] }, ngImport: i0 });
|
|
30267
30833
|
}
|
|
30268
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type:
|
|
30834
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: PxPrice, decorators: [{
|
|
30269
30835
|
type: Directive,
|
|
30270
30836
|
args: [{
|
|
30271
|
-
selector: 'px-
|
|
30837
|
+
selector: 'px-price',
|
|
30272
30838
|
standalone: true,
|
|
30273
30839
|
}]
|
|
30274
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: {
|
|
30275
|
-
type: Input
|
|
30276
|
-
}], gap: [{
|
|
30277
|
-
type: Input
|
|
30278
|
-
}], variant: [{
|
|
30279
|
-
type: Input
|
|
30280
|
-
}], required: [{
|
|
30281
|
-
type: Input
|
|
30282
|
-
}], disabled: [{
|
|
30840
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { variant: [{
|
|
30283
30841
|
type: Input
|
|
30284
|
-
}],
|
|
30842
|
+
}], size: [{
|
|
30285
30843
|
type: Input
|
|
30286
30844
|
}], inverted: [{
|
|
30287
30845
|
type: Input
|
|
30288
|
-
}], size: [{
|
|
30289
|
-
type: Input
|
|
30290
30846
|
}], grow: [{
|
|
30291
30847
|
type: Input
|
|
30292
30848
|
}], growMobile: [{
|
|
@@ -41357,7 +41913,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41357
41913
|
}] } });
|
|
41358
41914
|
class Lavender {
|
|
41359
41915
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
41360
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.25", ngImport: i0, type: Lavender, imports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxA, PxAWrapper, PxList, PxListItem, PxModal, PxP, PxPillar, PxCardActions, PxCardContainer, PxCardHeading,
|
|
41916
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.25", ngImport: i0, type: Lavender, imports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxCodeInput, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxA, PxAWrapper, PxList, PxListItem, PxModal, PxP, PxPillar, PxCardActions, PxCardContainer, PxCardHeading, PxRadio, PxRadioBase, PxRadioGroup, PxPrice, PxRibbon, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpan, PxSpinner, PxStatus, PxStatusCard, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxToaster, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider], exports: [PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxBanner, PxBreadcrumbItem, PxBreadcrumb, PxButton, PxButtonWrapper, PxButtonIcon, PxCard, PxAppleseed, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxImg, PxPicture, PxInput, PxSelect, PxTextarea, PxFileupload, PxCodeInput, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxA, PxAWrapper, PxList, PxListItem, PxModal, PxP, PxPillar, PxCardActions, PxCardContainer, PxCardHeading, PxRadio, PxRadioBase, PxRadioGroup, PxPrice, PxRibbon, PxSection, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpan, PxSpinner, PxStatus, PxStatusCard, PxThemeSwitcher, PxSwitch, PxTable, PxTbody, PxTd, PxTh, PxThead, PxTr, PxTabs, PxTab, PxTabPanel, PxTag, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxToaster, PxTypography, PxPatch, PxIcon, PxIconSet, PxThemeProvider, PxProximusThemeProvider, PxScarletThemeProvider] });
|
|
41361
41917
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender });
|
|
41362
41918
|
}
|
|
41363
41919
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: Lavender, decorators: [{
|
|
@@ -41406,6 +41962,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41406
41962
|
PxSelect,
|
|
41407
41963
|
PxTextarea,
|
|
41408
41964
|
PxFileupload,
|
|
41965
|
+
PxCodeInput,
|
|
41409
41966
|
PxPage,
|
|
41410
41967
|
PxSpacer,
|
|
41411
41968
|
PxStack,
|
|
@@ -41421,10 +41978,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41421
41978
|
PxCardActions,
|
|
41422
41979
|
PxCardContainer,
|
|
41423
41980
|
PxCardHeading,
|
|
41424
|
-
PxPrice,
|
|
41425
41981
|
PxRadio,
|
|
41426
41982
|
PxRadioBase,
|
|
41427
41983
|
PxRadioGroup,
|
|
41984
|
+
PxPrice,
|
|
41428
41985
|
PxRibbon,
|
|
41429
41986
|
PxSection,
|
|
41430
41987
|
PxSelectableBox,
|
|
@@ -41508,6 +42065,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41508
42065
|
PxSelect,
|
|
41509
42066
|
PxTextarea,
|
|
41510
42067
|
PxFileupload,
|
|
42068
|
+
PxCodeInput,
|
|
41511
42069
|
PxPage,
|
|
41512
42070
|
PxSpacer,
|
|
41513
42071
|
PxStack,
|
|
@@ -41523,10 +42081,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41523
42081
|
PxCardActions,
|
|
41524
42082
|
PxCardContainer,
|
|
41525
42083
|
PxCardHeading,
|
|
41526
|
-
PxPrice,
|
|
41527
42084
|
PxRadio,
|
|
41528
42085
|
PxRadioBase,
|
|
41529
42086
|
PxRadioGroup,
|
|
42087
|
+
PxPrice,
|
|
41530
42088
|
PxRibbon,
|
|
41531
42089
|
PxSection,
|
|
41532
42090
|
PxSelectableBox,
|
|
@@ -41574,5 +42132,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
41574
42132
|
* Generated bundle index. Do not edit.
|
|
41575
42133
|
*/
|
|
41576
42134
|
|
|
41577
|
-
export { Lavender, LavenderValueAccessors, PxA, PxAWrapper, PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxAppleseed, PxBanner, PxBreadcrumb, PxBreadcrumbItem, PxButton, PxButtonIcon, PxButtonWrapper, PxCard, PxCardActions, PxCardContainer, PxCardHeading, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxCheckboxValueAccessor, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxFileupload, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxHstack, PxIcon, PxIconSet, PxImg, PxInput, PxInputValueAccessor, PxList, PxListItem, PxModal, PxP, PxPage, PxPatch, PxPicture, PxPillar, PxPrice, PxProximusThemeProvider, PxRadio, PxRadioBase, PxRadioGroup, PxRadioGroupValueAccessor, PxRibbon, PxScarletThemeProvider, PxSection, PxSelect, PxSelectValueAccessor, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpacer, PxSpan, PxSpinner, PxStack, PxStatus, PxStatusCard, PxSwitch, PxSwitchValueAccessor, PxTab, PxTabPanel, PxTable, PxTabs, PxTag, PxTbody, PxTd, PxTextarea, PxTextareaValueAccessor, PxTh, PxThead, PxThemeProvider, PxThemeSwitcher, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxToaster, PxTr, PxTypography, PxVstack };
|
|
42135
|
+
export { Lavender, LavenderValueAccessors, PxA, PxAWrapper, PxAccordion, PxAgGridTable, PxAgGridTableThButton, PxAgGridTableThContent, PxAppleseed, PxBanner, PxBreadcrumb, PxBreadcrumbItem, PxButton, PxButtonIcon, PxButtonWrapper, PxCard, PxCardActions, PxCardContainer, PxCardHeading, PxCarousel, PxCarouselItem, PxCell, PxCellButton, PxCellCheckbox, PxCellLink, PxCellRadio, PxCellSwitch, PxCheckbox, PxCheckboxValueAccessor, PxCodeInput, PxColorOption, PxColorOptionLink, PxContainer, PxContentHeader, PxDrawer, PxDropdown, PxFieldset, PxFileupload, PxGrid, PxH1, PxH2, PxH3, PxH4, PxH5, PxH6, PxHeadingGroup, PxHstack, PxIcon, PxIconSet, PxImg, PxInput, PxInputValueAccessor, PxList, PxListItem, PxModal, PxP, PxPage, PxPatch, PxPicture, PxPillar, PxPrice, PxProximusThemeProvider, PxRadio, PxRadioBase, PxRadioGroup, PxRadioGroupValueAccessor, PxRibbon, PxScarletThemeProvider, PxSection, PxSelect, PxSelectValueAccessor, PxSelectableBox, PxSelectableBoxCheckbox, PxSelectableBoxRadio, PxSeparator, PxSkeleton, PxSpacer, PxSpan, PxSpinner, PxStack, PxStatus, PxStatusCard, PxSwitch, PxSwitchValueAccessor, PxTab, PxTabPanel, PxTable, PxTabs, PxTag, PxTbody, PxTd, PxTextarea, PxTextareaValueAccessor, PxTh, PxThead, PxThemeProvider, PxThemeSwitcher, PxTile, PxTileButton, PxTileCheckbox, PxTileLink, PxTileRadio, PxTileSwitch, PxTimeline, PxTimelineItem, PxToaster, PxTr, PxTypography, PxVstack };
|
|
41578
42136
|
//# sourceMappingURL=proximus-lavender-angular.mjs.map
|