@proximus/lavender-angular 1.4.15-alpha.20 → 1.4.15-alpha.21
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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.4.15-alpha.21](https://github.com/Pxs-Corporate/design-system/compare/v1.4.15-alpha.20...v1.4.15-alpha.21) (2026-09-09)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @proximus/lavender-angular
|
|
9
|
+
|
|
6
10
|
## [1.4.15-alpha.20](https://github.com/Pxs-Corporate/design-system/compare/v1.4.15-alpha.18...v1.4.15-alpha.20) (2026-09-09)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @proximus/lavender-angular
|
|
@@ -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
|
*/
|
|
@@ -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, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, 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, PxPage, PxSpacer, PxStack, PxVstack, PxHstack, PxA, PxAWrapper, PxList, PxListItem, PxModal, PxP, PxPillar, PxCardActions, PxCardContainer, PxCardHeading, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, 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] });
|
|
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, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, 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, PxPrice, PxRadio, PxRadioBase, PxRadioGroup, 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,
|
|
@@ -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,
|
|
@@ -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
|