@cityway/basic-ui 1.0.1 → 1.0.2-beta003
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/README.md +1 -2
- package/cityway-basic-ui-1.0.2-beta003.tgz +0 -0
- package/fesm2022/cityway-basic-ui.mjs +849 -194
- package/fesm2022/cityway-basic-ui.mjs.map +1 -1
- package/index.d.ts +574 -42
- package/lib/assets/fonts/nunito/_nunito.scss +10 -10
- package/lib/assets/icons/sprite.ids.txt +467 -0
- package/lib/assets/icons/sprite.preview.html +4966 -0
- package/lib/assets/icons/sprite.svg +1404 -0
- package/lib/assets/styles/scss/_custom-bootstrap.scss +1 -1
- package/lib/assets/styles/scss/bootstrap/_breadcrumb.scss +6 -6
- package/lib/assets/styles/scss/cw-ds/_reboot.scss +3 -11
- package/lib/assets/styles/scss/cw-ds/_root-bo.scss +1 -0
- package/lib/assets/styles/scss/cw-ds/_root-fo.scss +1 -0
- package/lib/assets/styles/scss/cw-ds/components/_accordion.scss +35 -0
- package/lib/assets/styles/scss/cw-ds/components/_alert.scss +10 -10
- package/lib/assets/styles/scss/cw-ds/components/_badge.scss +22 -22
- package/lib/assets/styles/scss/cw-ds/components/_close.scss +5 -0
- package/lib/assets/styles/scss/cw-ds/components/_icon-notification.scss +10 -10
- package/lib/assets/styles/scss/cw-ds/components/_icon.scss +35 -9
- package/lib/assets/styles/scss/cw-ds/components/_modal.scss +161 -0
- package/lib/assets/styles/scss/cw-ds/components/_numerical-range.scss +4 -4
- package/lib/assets/styles/scss/cw-ds/components/button/_button-bo-variant.scss +87 -21
- package/lib/assets/styles/scss/cw-ds/components/button/_button-fo-variant.scss +21 -87
- package/lib/assets/styles/scss/cw-ds/components/button/_button.scss +11 -1
- package/lib/assets/styles/scss/cw-ds/components/tab/_tab-bo.scss +96 -0
- package/lib/assets/styles/scss/cw-ds/components/{_tab.scss → tab/_tab-fo.scss} +6 -4
- package/lib/assets/styles/scss/cw-ds/helpers/_skeleton.scss +67 -0
- package/lib/assets/styles/scss/cw-ds/helpers/_spinner.scss +15 -9
- package/lib/assets/styles/scss/cw-ds/mixins/_type.scss +17 -0
- package/lib/assets/styles/scss/cw-ds/utilities/_breakpoints.scss +30 -0
- package/lib/assets/styles/scss/cw-ds/utilities/_flex.scss +4 -0
- package/lib/assets/styles/scss/cw-ds/utilities/_grid.scss +65 -0
- package/lib/assets/styles/scss/cw-ds/utilities/type/_type-bo.scss +40 -0
- package/lib/assets/styles/scss/cw-ds/utilities/type/_type-fo.scss +1 -0
- package/lib/assets/styles/scss/cw-ds/utilities/type/_type.scss +18 -0
- package/lib/assets/styles/scss/styles-bo.scss +23 -15
- package/lib/assets/styles/scss/styles-fo.scss +23 -15
- package/package.json +3 -4
- package/styles/styles-bo.min.css +5 -0
- package/styles/styles-bo.min.css.map +1 -0
- package/styles/styles-fo.min.css +5 -0
- package/styles/styles-fo.min.css.map +1 -0
- package/cityway-basic-ui-1.0.1.tgz +0 -0
- package/lib/assets/styles/scss/cw-ds/utilities/_type.scss +0 -3
- package/styles-bo.min.css +0 -5
- package/styles-bo.min.css.map +0 -1
- package/styles-fo.min.css +0 -5
- package/styles-fo.min.css.map +0 -1
package/index.d.ts
CHANGED
|
@@ -2,10 +2,9 @@ import * as i0 from '@angular/core';
|
|
|
2
2
|
import { EventEmitter, OnInit, AfterViewInit, ElementRef, WritableSignal, ChangeDetectorRef, AfterContentInit, QueryList, TemplateRef, OnDestroy } from '@angular/core';
|
|
3
3
|
import { BehaviorSubject } from 'rxjs';
|
|
4
4
|
import { Options } from '@angular-slider/ngx-slider';
|
|
5
|
-
import { AbstractControl,
|
|
6
|
-
import { NgbActiveModal, NgbModal, NgbModalRef } from '@ng-bootstrap/ng-bootstrap';
|
|
7
|
-
import { TranslateService } from '@ngx-translate/core';
|
|
5
|
+
import { AbstractControl, FormGroup, FormControl, ValidationErrors } from '@angular/forms';
|
|
8
6
|
import { Router, ActivatedRoute } from '@angular/router';
|
|
7
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
9
8
|
|
|
10
9
|
declare class CollapseDirective {
|
|
11
10
|
private elementRef;
|
|
@@ -54,7 +53,482 @@ declare enum IconUiTypeEnum {
|
|
|
54
53
|
default = "default",
|
|
55
54
|
light = "light",
|
|
56
55
|
primary = "primary",
|
|
57
|
-
invert = "invert"
|
|
56
|
+
invert = "invert",
|
|
57
|
+
success = "success",
|
|
58
|
+
info = "info",
|
|
59
|
+
warning = "warning",
|
|
60
|
+
danger = "danger",
|
|
61
|
+
neutral = "neutral"
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
declare enum SpriteIconEnum {
|
|
65
|
+
accessAccompaniedHearingImpairedUser = "accessAccompaniedHearingImpairedUser",
|
|
66
|
+
accessAccompaniedLearningImpairedUser = "accessAccompaniedLearningImpairedUser",
|
|
67
|
+
accessAccompaniedVisuallyChallengedUser = "accessAccompaniedVisuallyChallengedUser",
|
|
68
|
+
accessAccompaniedWheelchairUser = "accessAccompaniedWheelchairUser",
|
|
69
|
+
accessHearingImpairedUser = "accessHearingImpairedUser",
|
|
70
|
+
accessLearningImpairedUser = "accessLearningImpairedUser",
|
|
71
|
+
accessVisuallyChallengedUser = "accessVisuallyChallengedUser",
|
|
72
|
+
accessWheelchairUser = "accessWheelchairUser",
|
|
73
|
+
accountConfidentialitySettings = "accountConfidentialitySettings",
|
|
74
|
+
accountConsumption = "accountConsumption",
|
|
75
|
+
accountCredits = "accountCredits",
|
|
76
|
+
accountHelp = "accountHelp",
|
|
77
|
+
accountLogout = "accountLogout",
|
|
78
|
+
accountServices = "accountServices",
|
|
79
|
+
addBag = "addBag",
|
|
80
|
+
addCard = "addCard",
|
|
81
|
+
addPassenger = "addPassenger",
|
|
82
|
+
airQuality = "airQuality",
|
|
83
|
+
alertHelp = "alertHelp",
|
|
84
|
+
alertHelp1 = "alertHelp1",
|
|
85
|
+
alertWarning = "alertWarning",
|
|
86
|
+
americanExpress = "americanExpress",
|
|
87
|
+
baby = "baby",
|
|
88
|
+
bad = "bad",
|
|
89
|
+
bmp = "bmp",
|
|
90
|
+
boardingForbidden = "boardingForbidden",
|
|
91
|
+
boardingOnly = "boardingOnly",
|
|
92
|
+
border = "border",
|
|
93
|
+
card = "card",
|
|
94
|
+
carPlate = "carPlate",
|
|
95
|
+
cash = "cash",
|
|
96
|
+
chat = "chat",
|
|
97
|
+
codes = "codes",
|
|
98
|
+
computer = "computer",
|
|
99
|
+
copyright = "copyright",
|
|
100
|
+
crowdsourcingAccident = "crowdsourcingAccident",
|
|
101
|
+
crowdsourcingBtn = "crowdsourcingBtn",
|
|
102
|
+
crowdsourcingBusShelter = "crowdsourcingBusShelter",
|
|
103
|
+
crowdsourcingCrowded = "crowdsourcingCrowded",
|
|
104
|
+
crowdsourcingDegradation = "crowdsourcingDegradation",
|
|
105
|
+
crowdsourcingDelay = "crowdsourcingDelay",
|
|
106
|
+
crowdsourcingEscalator = "crowdsourcingEscalator",
|
|
107
|
+
crowdsourcingInvalidate = "crowdsourcingInvalidate",
|
|
108
|
+
crowdsourcingLift = "crowdsourcingLift",
|
|
109
|
+
crowdsourcingMove = "crowdsourcingMove",
|
|
110
|
+
crowdsourcingReport = "crowdsourcingReport",
|
|
111
|
+
crowdsourcingSign = "crowdsourcingSign",
|
|
112
|
+
crowdsourcingStopRelocated = "crowdsourcingStopRelocated",
|
|
113
|
+
crowdsourcingTicket = "crowdsourcingTicket",
|
|
114
|
+
crowdsourcingTrafficJam = "crowdsourcingTrafficJam",
|
|
115
|
+
crowdsourcingValidate = "crowdsourcingValidate",
|
|
116
|
+
crowdsourcingVehicle = "crowdsourcingVehicle",
|
|
117
|
+
crowdsourcingWork = "crowdsourcingWork",
|
|
118
|
+
dataProtection = "dataProtection",
|
|
119
|
+
diamond = "diamond",
|
|
120
|
+
doc = "doc",
|
|
121
|
+
down = "down",
|
|
122
|
+
driver = "driver",
|
|
123
|
+
dropOffForbidden = "dropOffForbidden",
|
|
124
|
+
dropOffOnly = "dropOffOnly",
|
|
125
|
+
error = "error",
|
|
126
|
+
errorCard = "errorCard",
|
|
127
|
+
eshop = "eshop",
|
|
128
|
+
event = "event",
|
|
129
|
+
eventChangeRoad = "eventChangeRoad",
|
|
130
|
+
eventCloud = "eventCloud",
|
|
131
|
+
eventColClose = "eventColClose",
|
|
132
|
+
eventColOpen = "eventColOpen",
|
|
133
|
+
eventCommercial = "eventCommercial",
|
|
134
|
+
eventDisrupt = "eventDisrupt",
|
|
135
|
+
eventDisruptionEnd = "eventDisruptionEnd",
|
|
136
|
+
eventFog = "eventFog",
|
|
137
|
+
eventIce = "eventIce",
|
|
138
|
+
eventLine = "eventLine",
|
|
139
|
+
eventMarch = "eventMarch",
|
|
140
|
+
eventMiscHour = "eventMiscHour",
|
|
141
|
+
eventRain = "eventRain",
|
|
142
|
+
eventSnow = "eventSnow",
|
|
143
|
+
eventSnow2 = "eventSnow2",
|
|
144
|
+
eventSocialMovement = "eventSocialMovement",
|
|
145
|
+
eventSun = "eventSun",
|
|
146
|
+
eventTrafficAccident = "eventTrafficAccident",
|
|
147
|
+
eventTrafficBlockedroad = "eventTrafficBlockedroad",
|
|
148
|
+
eventTrafficCongestion = "eventTrafficCongestion",
|
|
149
|
+
eventTrafficDisabledvehicle = "eventTrafficDisabledvehicle",
|
|
150
|
+
eventTrafficMiscellaneous = "eventTrafficMiscellaneous",
|
|
151
|
+
eventTrafficObstruction = "eventTrafficObstruction",
|
|
152
|
+
eventTrafficSportevent = "eventTrafficSportevent",
|
|
153
|
+
eventTrafficUndefined = "eventTrafficUndefined",
|
|
154
|
+
eventTrafficWeather = "eventTrafficWeather",
|
|
155
|
+
eventWarning = "eventWarning",
|
|
156
|
+
eventWeather = "eventWeather",
|
|
157
|
+
eventWind = "eventWind",
|
|
158
|
+
fail = "fail",
|
|
159
|
+
favorite = "favorite",
|
|
160
|
+
favoriteCard = "favoriteCard",
|
|
161
|
+
favoriteLine = "favoriteLine",
|
|
162
|
+
file = "file",
|
|
163
|
+
free = "free",
|
|
164
|
+
from = "from",
|
|
165
|
+
gif = "gif",
|
|
166
|
+
good = "good",
|
|
167
|
+
handCard = "handCard",
|
|
168
|
+
headphone = "headphone",
|
|
169
|
+
home = "home",
|
|
170
|
+
homeLine = "homeLine",
|
|
171
|
+
hotline = "hotline",
|
|
172
|
+
info = "info",
|
|
173
|
+
interactiveMap = "interactiveMap",
|
|
174
|
+
interactiveMapLine = "interactiveMapLine",
|
|
175
|
+
invert = "invert",
|
|
176
|
+
journey = "journey",
|
|
177
|
+
jpg = "jpg",
|
|
178
|
+
kcal = "kcal",
|
|
179
|
+
law = "law",
|
|
180
|
+
left = "left",
|
|
181
|
+
left1 = "left1",
|
|
182
|
+
loading = "loading",
|
|
183
|
+
mailAlternate = "mailAlternate",
|
|
184
|
+
mapCenterMap = "mapCenterMap",
|
|
185
|
+
mapChooseMap = "mapChooseMap",
|
|
186
|
+
mapChooseMapIos = "mapChooseMapIos",
|
|
187
|
+
mapDeparture = "mapDeparture",
|
|
188
|
+
mapDisplacement = "mapDisplacement",
|
|
189
|
+
mapEnd = "mapEnd",
|
|
190
|
+
mapFullScreen = "mapFullScreen",
|
|
191
|
+
mapFullScreenReturn = "mapFullScreenReturn",
|
|
192
|
+
mapGeolocationActive = "mapGeolocationActive",
|
|
193
|
+
mapGeolocationInactive = "mapGeolocationInactive",
|
|
194
|
+
mapItinerary = "mapItinerary",
|
|
195
|
+
mapLocation = "mapLocation",
|
|
196
|
+
mapMap = "mapMap",
|
|
197
|
+
mapMap1 = "mapMap1",
|
|
198
|
+
mapMap2 = "mapMap2",
|
|
199
|
+
mapMap3 = "mapMap3",
|
|
200
|
+
mapMove = "mapMove",
|
|
201
|
+
mapNavigation = "mapNavigation",
|
|
202
|
+
mapNearest = "mapNearest",
|
|
203
|
+
mapPin = "mapPin",
|
|
204
|
+
mapPin2 = "mapPin2",
|
|
205
|
+
mapStop = "mapStop",
|
|
206
|
+
mapStreetView = "mapStreetView",
|
|
207
|
+
mapWorld = "mapWorld",
|
|
208
|
+
medium = "medium",
|
|
209
|
+
meeting = "meeting",
|
|
210
|
+
menu = "menu",
|
|
211
|
+
menuLine = "menuLine",
|
|
212
|
+
message = "message",
|
|
213
|
+
messageActivateAccount = "messageActivateAccount",
|
|
214
|
+
messageAlert = "messageAlert",
|
|
215
|
+
messageFail = "messageFail",
|
|
216
|
+
messageInfo = "messageInfo",
|
|
217
|
+
messageInfo2 = "messageInfo2",
|
|
218
|
+
messageNotification = "messageNotification",
|
|
219
|
+
messageNoTripFavoris = "messageNoTripFavoris",
|
|
220
|
+
messageOk = "messageOk",
|
|
221
|
+
messageWarning = "messageWarning",
|
|
222
|
+
messengerAlternate = "messengerAlternate",
|
|
223
|
+
miscAccess = "miscAccess",
|
|
224
|
+
miscCamcorder = "miscCamcorder",
|
|
225
|
+
miscDiscover = "miscDiscover",
|
|
226
|
+
miscHealth = "miscHealth",
|
|
227
|
+
miscNews = "miscNews",
|
|
228
|
+
miscNewsletter = "miscNewsletter",
|
|
229
|
+
miscRegistered = "miscRegistered",
|
|
230
|
+
miscRoute = "miscRoute",
|
|
231
|
+
miscRoute2 = "miscRoute2",
|
|
232
|
+
miscRoute3 = "miscRoute3",
|
|
233
|
+
miscRoute4 = "miscRoute4",
|
|
234
|
+
miscTicket1 = "miscTicket1",
|
|
235
|
+
miscTicket2 = "miscTicket2",
|
|
236
|
+
miscTicket3 = "miscTicket3",
|
|
237
|
+
miscVia = "miscVia",
|
|
238
|
+
modeBike = "modeBike",
|
|
239
|
+
modeBoat = "modeBoat",
|
|
240
|
+
modeBus = "modeBus",
|
|
241
|
+
modeBusPmr = "modeBusPmr",
|
|
242
|
+
modeCar = "modeCar",
|
|
243
|
+
modeCarpooling = "modeCarpooling",
|
|
244
|
+
modeCarsharing = "modeCarsharing",
|
|
245
|
+
modeCoach = "modeCoach",
|
|
246
|
+
modeCyclopouss = "modeCyclopouss",
|
|
247
|
+
modeDoubling = "modeDoubling",
|
|
248
|
+
modeEBus = "modeEBus",
|
|
249
|
+
modeElectricShuttle = "modeElectricShuttle",
|
|
250
|
+
modeElevator = "modeElevator",
|
|
251
|
+
modeEscalator = "modeEscalator",
|
|
252
|
+
modeFindPlace = "modeFindPlace",
|
|
253
|
+
modeFreefloating = "modeFreefloating",
|
|
254
|
+
modeFunicular = "modeFunicular",
|
|
255
|
+
modeHail = "modeHail",
|
|
256
|
+
modeInoui = "modeInoui",
|
|
257
|
+
modeLer = "modeLer",
|
|
258
|
+
modeMinibus = "modeMinibus",
|
|
259
|
+
modeMulti = "modeMulti",
|
|
260
|
+
modeMultiBikeBus = "modeMultiBikeBus",
|
|
261
|
+
modeMultiCarBus = "modeMultiCarBus",
|
|
262
|
+
modeMultiCoach = "modeMultiCoach",
|
|
263
|
+
modeMultiTrain = "modeMultiTrain",
|
|
264
|
+
modePlane = "modePlane",
|
|
265
|
+
modeRer = "modeRer",
|
|
266
|
+
modeSchool = "modeSchool",
|
|
267
|
+
modeSelfServiceBike = "modeSelfServiceBike",
|
|
268
|
+
modeSncfIntercite = "modeSncfIntercite",
|
|
269
|
+
modeStreetcar = "modeStreetcar",
|
|
270
|
+
modeSubway = "modeSubway",
|
|
271
|
+
modeTaxi = "modeTaxi",
|
|
272
|
+
modeTaxibus = "modeTaxibus",
|
|
273
|
+
modeTer = "modeTer",
|
|
274
|
+
modeTgv = "modeTgv",
|
|
275
|
+
modeTod = "modeTod",
|
|
276
|
+
modeTrain = "modeTrain",
|
|
277
|
+
modeTrolley = "modeTrolley",
|
|
278
|
+
modeUnknown = "modeUnknown",
|
|
279
|
+
modeWait = "modeWait",
|
|
280
|
+
modeWaitInside = "modeWaitInside",
|
|
281
|
+
modeWalk = "modeWalk",
|
|
282
|
+
modeZou = "modeZou",
|
|
283
|
+
more = "more",
|
|
284
|
+
moveBackward = "moveBackward",
|
|
285
|
+
moveForward = "moveForward",
|
|
286
|
+
music = "music",
|
|
287
|
+
navDashboard = "navDashboard",
|
|
288
|
+
navFirst = "navFirst",
|
|
289
|
+
navigationApple = "navigationApple",
|
|
290
|
+
navigationFacebook = "navigationFacebook",
|
|
291
|
+
navigationGoogle = "navigationGoogle",
|
|
292
|
+
navigationInstagram = "navigationInstagram",
|
|
293
|
+
navigationLinkedin = "navigationLinkedin",
|
|
294
|
+
navigationPinterest = "navigationPinterest",
|
|
295
|
+
navigationSnapchat = "navigationSnapchat",
|
|
296
|
+
navigationTiktok = "navigationTiktok",
|
|
297
|
+
navigationTwitter = "navigationTwitter",
|
|
298
|
+
navigationWhatsapp = "navigationWhatsapp",
|
|
299
|
+
navigationYoutube = "navigationYoutube",
|
|
300
|
+
navLast = "navLast",
|
|
301
|
+
navMediaPause = "navMediaPause",
|
|
302
|
+
newWindow = "newWindow",
|
|
303
|
+
nextLeft = "nextLeft",
|
|
304
|
+
nextRight = "nextRight",
|
|
305
|
+
nfc = "nfc",
|
|
306
|
+
ok = "ok",
|
|
307
|
+
onlineServices = "onlineServices",
|
|
308
|
+
onlineServices2 = "onlineServices2",
|
|
309
|
+
openofficeBlank = "openofficeBlank",
|
|
310
|
+
openofficeCalc = "openofficeCalc",
|
|
311
|
+
openofficeVideo = "openofficeVideo",
|
|
312
|
+
openofficeWriter = "openofficeWriter",
|
|
313
|
+
paste = "paste",
|
|
314
|
+
payment = "payment",
|
|
315
|
+
pdf = "pdf",
|
|
316
|
+
pet = "pet",
|
|
317
|
+
phone = "phone",
|
|
318
|
+
phoneCard = "phoneCard",
|
|
319
|
+
pinArrival = "pinArrival",
|
|
320
|
+
placeholder = "placeholder",
|
|
321
|
+
plan = "plan",
|
|
322
|
+
play = "play",
|
|
323
|
+
pmr = "pmr",
|
|
324
|
+
pmr2 = "pmr2",
|
|
325
|
+
png = "png",
|
|
326
|
+
poiAccommodation = "poiAccommodation",
|
|
327
|
+
poiActivity = "poiActivity",
|
|
328
|
+
poiAddress = "poiAddress",
|
|
329
|
+
poiAdministration = "poiAdministration",
|
|
330
|
+
poiAirport = "poiAirport",
|
|
331
|
+
poiBar = "poiBar",
|
|
332
|
+
poiBeach = "poiBeach",
|
|
333
|
+
poiBikePark = "poiBikePark",
|
|
334
|
+
poiBikeRack = "poiBikeRack",
|
|
335
|
+
poiBikeRental = "poiBikeRental",
|
|
336
|
+
poiBusinessFacilities = "poiBusinessFacilities",
|
|
337
|
+
poiBusStation = "poiBusStation",
|
|
338
|
+
poiCamping = "poiCamping",
|
|
339
|
+
poiCarpoolArea = "poiCarpoolArea",
|
|
340
|
+
poiCarpoolingTransition = "poiCarpoolingTransition",
|
|
341
|
+
poiCarsharingStation = "poiCarsharingStation",
|
|
342
|
+
poiChargingStation = "poiChargingStation",
|
|
343
|
+
poiClub = "poiClub",
|
|
344
|
+
poiCommercialAgency = "poiCommercialAgency",
|
|
345
|
+
poiCommunityServices = "poiCommunityServices",
|
|
346
|
+
poiCompany = "poiCompany",
|
|
347
|
+
poiCorrespondence = "poiCorrespondence",
|
|
348
|
+
poiCulture = "poiCulture",
|
|
349
|
+
poiDistrict = "poiDistrict",
|
|
350
|
+
poiDropSelfServiceBike = "poiDropSelfServiceBike",
|
|
351
|
+
poiEducation = "poiEducation",
|
|
352
|
+
poiEducation2 = "poiEducation2",
|
|
353
|
+
poiEnter = "poiEnter",
|
|
354
|
+
poiEuro = "poiEuro",
|
|
355
|
+
poiEvent = "poiEvent",
|
|
356
|
+
poiEventSport = "poiEventSport",
|
|
357
|
+
poiExit = "poiExit",
|
|
358
|
+
poiFireman = "poiFireman",
|
|
359
|
+
poiFuel = "poiFuel",
|
|
360
|
+
poiHistoric = "poiHistoric",
|
|
361
|
+
poiInfoBus = "poiInfoBus",
|
|
362
|
+
poiInformationPoint = "poiInformationPoint",
|
|
363
|
+
poiIntersection = "poiIntersection",
|
|
364
|
+
poiMapDefault = "poiMapDefault",
|
|
365
|
+
poiMarina = "poiMarina",
|
|
366
|
+
poiMarket = "poiMarket",
|
|
367
|
+
poiMilitary = "poiMilitary",
|
|
368
|
+
poiMiscHealthcare = "poiMiscHealthcare",
|
|
369
|
+
poiMiscSale = "poiMiscSale",
|
|
370
|
+
poiMiscSale2 = "poiMiscSale2",
|
|
371
|
+
poiMiscWork = "poiMiscWork",
|
|
372
|
+
poiMuseum = "poiMuseum",
|
|
373
|
+
poiOtherServices = "poiOtherServices",
|
|
374
|
+
poiPark2 = "poiPark2",
|
|
375
|
+
poiParkAndRide = "poiParkAndRide",
|
|
376
|
+
poiParking = "poiParking",
|
|
377
|
+
poiParkingCarpool = "poiParkingCarpool",
|
|
378
|
+
poiParkingElectricVehicle = "poiParkingElectricVehicle",
|
|
379
|
+
poiParkingV = "poiParkingV",
|
|
380
|
+
poiPatrol = "poiPatrol",
|
|
381
|
+
poiPhoto = "poiPhoto",
|
|
382
|
+
poiPointSale = "poiPointSale",
|
|
383
|
+
poiPolice = "poiPolice",
|
|
384
|
+
poiPublicPlace = "poiPublicPlace",
|
|
385
|
+
poiRentalAgency = "poiRentalAgency",
|
|
386
|
+
poiRestaurant = "poiRestaurant",
|
|
387
|
+
poiRezoPouce = "poiRezoPouce",
|
|
388
|
+
poiSchool2 = "poiSchool2",
|
|
389
|
+
poiSecuredBike = "poiSecuredBike",
|
|
390
|
+
poiSelfServiceBike = "poiSelfServiceBike",
|
|
391
|
+
poiSelfServiceBikeSpot = "poiSelfServiceBikeSpot",
|
|
392
|
+
poiShopping = "poiShopping",
|
|
393
|
+
poiSkiResort2 = "poiSkiResort2",
|
|
394
|
+
poiSport2 = "poiSport2",
|
|
395
|
+
poiSwim = "poiSwim",
|
|
396
|
+
poiSwitchPointMulti = "poiSwitchPointMulti",
|
|
397
|
+
poiSwitchPointMulti2 = "poiSwitchPointMulti2",
|
|
398
|
+
poiTakeSelfServiceBike = "poiTakeSelfServiceBike",
|
|
399
|
+
poiTouristOffice = "poiTouristOffice",
|
|
400
|
+
poiTown = "poiTown",
|
|
401
|
+
poiVaccination = "poiVaccination",
|
|
402
|
+
poiWorship = "poiWorship",
|
|
403
|
+
poiZone = "poiZone",
|
|
404
|
+
ppt = "ppt",
|
|
405
|
+
priceDollar = "priceDollar",
|
|
406
|
+
priceEuro = "priceEuro",
|
|
407
|
+
printAlternate = "printAlternate",
|
|
408
|
+
qrcode = "qrcode",
|
|
409
|
+
rar = "rar",
|
|
410
|
+
realtime = "realtime",
|
|
411
|
+
recentTrip = "recentTrip",
|
|
412
|
+
reloadCard = "reloadCard",
|
|
413
|
+
returnTrip = "returnTrip",
|
|
414
|
+
right = "right",
|
|
415
|
+
right1 = "right1",
|
|
416
|
+
road = "road",
|
|
417
|
+
round = "round",
|
|
418
|
+
roundFull = "roundFull",
|
|
419
|
+
schedules = "schedules",
|
|
420
|
+
schedulesLine = "schedulesLine",
|
|
421
|
+
secure = "secure",
|
|
422
|
+
settingsFast = "settingsFast",
|
|
423
|
+
shop = "shop",
|
|
424
|
+
shopLine = "shopLine",
|
|
425
|
+
shopping = "shopping",
|
|
426
|
+
smartAssistant = "smartAssistant",
|
|
427
|
+
smartphone = "smartphone",
|
|
428
|
+
smartphoneHandled = "smartphoneHandled",
|
|
429
|
+
smartphoneWindows = "smartphoneWindows",
|
|
430
|
+
smoke = "smoke",
|
|
431
|
+
socialAddthis = "socialAddthis",
|
|
432
|
+
socialApple = "socialApple",
|
|
433
|
+
socialFacebook = "socialFacebook",
|
|
434
|
+
socialGoogle = "socialGoogle",
|
|
435
|
+
socialInstagram = "socialInstagram",
|
|
436
|
+
socialLinkedin = "socialLinkedin",
|
|
437
|
+
socialMail = "socialMail",
|
|
438
|
+
socialMessenger = "socialMessenger",
|
|
439
|
+
socialPinterest = "socialPinterest",
|
|
440
|
+
socialRemovethis = "socialRemovethis",
|
|
441
|
+
socialRss = "socialRss",
|
|
442
|
+
socialSnapchat = "socialSnapchat",
|
|
443
|
+
socialTiktok = "socialTiktok",
|
|
444
|
+
socialWhatsapp = "socialWhatsapp",
|
|
445
|
+
socialX = "socialX",
|
|
446
|
+
socialYoutube = "socialYoutube",
|
|
447
|
+
square = "square",
|
|
448
|
+
squareFull = "squareFull",
|
|
449
|
+
stamp = "stamp",
|
|
450
|
+
star = "star",
|
|
451
|
+
straight = "straight",
|
|
452
|
+
talk = "talk",
|
|
453
|
+
tarifProfileDollar = "tarifProfileDollar",
|
|
454
|
+
tarifProfileEuro = "tarifProfileEuro",
|
|
455
|
+
terminal = "terminal",
|
|
456
|
+
ticketAutovalidation = "ticketAutovalidation",
|
|
457
|
+
time = "time",
|
|
458
|
+
tinyElectricCar = "tinyElectricCar",
|
|
459
|
+
tinyTicket = "tinyTicket",
|
|
460
|
+
tip = "tip",
|
|
461
|
+
to = "to",
|
|
462
|
+
todUfr = "todUfr",
|
|
463
|
+
toolbarAdd = "toolbarAdd",
|
|
464
|
+
toolbarCalendarChecked = "toolbarCalendarChecked",
|
|
465
|
+
toolbarCalendarDefault = "toolbarCalendarDefault",
|
|
466
|
+
toolbarCalendarSchedule = "toolbarCalendarSchedule",
|
|
467
|
+
toolbarClose = "toolbarClose",
|
|
468
|
+
toolbarDelete = "toolbarDelete",
|
|
469
|
+
toolbarDisconnect = "toolbarDisconnect",
|
|
470
|
+
toolbarDownload = "toolbarDownload",
|
|
471
|
+
toolbarEdit = "toolbarEdit",
|
|
472
|
+
toolbarFavorite = "toolbarFavorite",
|
|
473
|
+
toolbarFavoriteAdd = "toolbarFavoriteAdd",
|
|
474
|
+
toolbarFavoriteAlert = "toolbarFavoriteAlert",
|
|
475
|
+
toolbarFavoriteNotSelected = "toolbarFavoriteNotSelected",
|
|
476
|
+
toolbarFilter = "toolbarFilter",
|
|
477
|
+
toolbarFilterCancel = "toolbarFilterCancel",
|
|
478
|
+
toolbarFullScreen2 = "toolbarFullScreen2",
|
|
479
|
+
toolbarGuestMode = "toolbarGuestMode",
|
|
480
|
+
toolbarHidePassword = "toolbarHidePassword",
|
|
481
|
+
toolbarLess = "toolbarLess",
|
|
482
|
+
toolbarLogin = "toolbarLogin",
|
|
483
|
+
toolbarMenu = "toolbarMenu",
|
|
484
|
+
toolbarMinus = "toolbarMinus",
|
|
485
|
+
toolbarMyFamily = "toolbarMyFamily",
|
|
486
|
+
toolbarNavQuit = "toolbarNavQuit",
|
|
487
|
+
toolbarNextJourney = "toolbarNextJourney",
|
|
488
|
+
toolbarPastJourney = "toolbarPastJourney",
|
|
489
|
+
toolbarPlus = "toolbarPlus",
|
|
490
|
+
toolbarPrint = "toolbarPrint",
|
|
491
|
+
toolbarRecentSearch = "toolbarRecentSearch",
|
|
492
|
+
toolbarRefresh = "toolbarRefresh",
|
|
493
|
+
toolbarSchedule = "toolbarSchedule",
|
|
494
|
+
toolbarSearch = "toolbarSearch",
|
|
495
|
+
toolbarSettings1 = "toolbarSettings1",
|
|
496
|
+
toolbarSettings2 = "toolbarSettings2",
|
|
497
|
+
toolbarShare = "toolbarShare",
|
|
498
|
+
toolbarShowPassword = "toolbarShowPassword",
|
|
499
|
+
toolbarSocialShare = "toolbarSocialShare",
|
|
500
|
+
toolbarTable = "toolbarTable",
|
|
501
|
+
toolbarUpload = "toolbarUpload",
|
|
502
|
+
toolbarUser = "toolbarUser",
|
|
503
|
+
traffic = "traffic",
|
|
504
|
+
tripPlanner = "tripPlanner",
|
|
505
|
+
tripPlannerLine = "tripPlannerLine",
|
|
506
|
+
turnCompletelyLeft = "turnCompletelyLeft",
|
|
507
|
+
turnCompletelyRight = "turnCompletelyRight",
|
|
508
|
+
turnLeft = "turnLeft",
|
|
509
|
+
turnRight = "turnRight",
|
|
510
|
+
turnSlightlyLeft = "turnSlightlyLeft",
|
|
511
|
+
turnSlightlyRight = "turnSlightlyRight",
|
|
512
|
+
type2 = "type2",
|
|
513
|
+
typeChademo = "typeChademo",
|
|
514
|
+
typeComboCcs = "typeComboCcs",
|
|
515
|
+
typeEf = "typeEf",
|
|
516
|
+
up = "up",
|
|
517
|
+
user = "user",
|
|
518
|
+
userConnected = "userConnected",
|
|
519
|
+
userConnectedLine = "userConnectedLine",
|
|
520
|
+
userLine = "userLine",
|
|
521
|
+
userTicket = "userTicket",
|
|
522
|
+
vector = "vector",
|
|
523
|
+
via = "via",
|
|
524
|
+
wagon = "wagon",
|
|
525
|
+
wagonHead = "wagonHead",
|
|
526
|
+
wallet = "wallet",
|
|
527
|
+
walletLine = "walletLine",
|
|
528
|
+
watts = "watts",
|
|
529
|
+
wifi = "wifi",
|
|
530
|
+
xls = "xls",
|
|
531
|
+
zip = "zip"
|
|
58
532
|
}
|
|
59
533
|
|
|
60
534
|
declare class CardComponent implements OnInit, AfterViewInit {
|
|
@@ -75,6 +549,7 @@ declare class CardComponent implements OnInit, AfterViewInit {
|
|
|
75
549
|
protected isCollapsed: WritableSignal<boolean>;
|
|
76
550
|
protected shouldRenderBody: WritableSignal<boolean>;
|
|
77
551
|
readonly iconSize: typeof IconSizeEnum;
|
|
552
|
+
readonly spriteIcon: typeof SpriteIconEnum;
|
|
78
553
|
constructor(cdRef: ChangeDetectorRef);
|
|
79
554
|
ngOnInit(): void;
|
|
80
555
|
ngAfterViewInit(): void;
|
|
@@ -84,7 +559,7 @@ declare class CardComponent implements OnInit, AfterViewInit {
|
|
|
84
559
|
private updateCollapseState;
|
|
85
560
|
get collapsed_state(): boolean;
|
|
86
561
|
static ɵfac: i0.ɵɵFactoryDeclaration<CardComponent, never>;
|
|
87
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CardComponent, "cw-card", never, { "title": { "alias": "title"; "required": false; }; "type": { "alias": "type"; "required": false; }; "titleRank": { "alias": "titleRank"; "required": false; }; "collapsible": { "alias": "collapsible"; "required": false; }; "collapsed": { "alias": "collapsed"; "required": false; }; "collapseId": { "alias": "collapseId"; "required": false; }; "destroyOnHide": { "alias": "destroyOnHide"; "required": false; }; }, { "collapseClicked": "collapseClicked"; }, never, ["
|
|
562
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardComponent, "cw-card", never, { "title": { "alias": "title"; "required": false; }; "type": { "alias": "type"; "required": false; }; "titleRank": { "alias": "titleRank"; "required": false; }; "collapsible": { "alias": "collapsible"; "required": false; }; "collapsed": { "alias": "collapsed"; "required": false; }; "collapseId": { "alias": "collapseId"; "required": false; }; "destroyOnHide": { "alias": "destroyOnHide"; "required": false; }; }, { "collapseClicked": "collapseClicked"; }, never, ["[header-custom-area]", "*", "[card-footer]"], true, never>;
|
|
88
563
|
}
|
|
89
564
|
|
|
90
565
|
declare class AccordionComponent implements AfterContentInit {
|
|
@@ -141,6 +616,7 @@ declare class AlertComponent implements OnInit {
|
|
|
141
616
|
iconNotifType: IconNotifTypeEnum;
|
|
142
617
|
showContent: boolean;
|
|
143
618
|
readonly iconSize: typeof IconSizeEnum;
|
|
619
|
+
readonly spriteIcon: typeof SpriteIconEnum;
|
|
144
620
|
constructor(cdRef: ChangeDetectorRef);
|
|
145
621
|
ngOnInit(): void;
|
|
146
622
|
ngAfterViewInit(): void;
|
|
@@ -224,14 +700,16 @@ declare class BadgeComponent {
|
|
|
224
700
|
badgePositionEnum: typeof BadgePositionEnum;
|
|
225
701
|
type: BadgeTypeEnum;
|
|
226
702
|
label?: string;
|
|
227
|
-
withIcon?:
|
|
703
|
+
withIcon?: SpriteIconEnum;
|
|
228
704
|
iconPosition?: BadgePositionEnum;
|
|
229
705
|
cssClass?: string;
|
|
706
|
+
skeletonMode?: boolean;
|
|
230
707
|
dataTest?: string;
|
|
231
708
|
iconSizeEnum: typeof IconSizeEnum;
|
|
709
|
+
get hostClasses(): string;
|
|
232
710
|
constructor();
|
|
233
711
|
static ɵfac: i0.ɵɵFactoryDeclaration<BadgeComponent, never>;
|
|
234
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "cw-badge", never, { "type": { "alias": "type"; "required": false; }; "label": { "alias": "label"; "required": false; }; "withIcon": { "alias": "withIcon"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "cssClass": { "alias": "cssClass"; "required": false; }; "dataTest": { "alias": "dataTest"; "required": false; }; }, {}, never, never, true, never>;
|
|
712
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "cw-badge", never, { "type": { "alias": "type"; "required": false; }; "label": { "alias": "label"; "required": false; }; "withIcon": { "alias": "withIcon"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "cssClass": { "alias": "cssClass"; "required": false; }; "skeletonMode": { "alias": "skeletonMode"; "required": false; }; "dataTest": { "alias": "dataTest"; "required": false; }; }, {}, never, never, true, never>;
|
|
235
713
|
}
|
|
236
714
|
|
|
237
715
|
declare enum FoButtonTypeEnum {
|
|
@@ -290,16 +768,17 @@ declare class ButtonComponent implements OnInit {
|
|
|
290
768
|
label: string;
|
|
291
769
|
id: string;
|
|
292
770
|
isDropdown?: boolean;
|
|
293
|
-
withIcon?:
|
|
771
|
+
withIcon?: SpriteIconEnum;
|
|
294
772
|
withOnlyIcon?: boolean;
|
|
295
773
|
iconSize?: ButtonIconSizeEnum;
|
|
296
774
|
iconPosition?: ButtonPositionEnum;
|
|
297
775
|
dropdownPosition?: ButtonPositionEnum;
|
|
298
776
|
isMinWidth?: boolean;
|
|
299
777
|
isDisabled?: boolean;
|
|
300
|
-
|
|
778
|
+
isLoading?: boolean;
|
|
301
779
|
cssClass?: string;
|
|
302
780
|
dataTest?: string;
|
|
781
|
+
skeletonMode?: boolean;
|
|
303
782
|
withTooltip?: boolean;
|
|
304
783
|
tooltipText?: string;
|
|
305
784
|
tooltipTitle?: string;
|
|
@@ -311,7 +790,6 @@ declare class ButtonComponent implements OnInit {
|
|
|
311
790
|
dropdown: ElementRef | undefined;
|
|
312
791
|
dropdownMenu: ElementRef;
|
|
313
792
|
dropdownToggle: ElementRef;
|
|
314
|
-
isLoading: boolean;
|
|
315
793
|
iconSizeEnum: typeof IconSizeEnum;
|
|
316
794
|
readonly iconType: typeof IconTypeEnum;
|
|
317
795
|
readonly iconUiType: typeof IconUiTypeEnum;
|
|
@@ -322,6 +800,7 @@ declare class ButtonComponent implements OnInit {
|
|
|
322
800
|
isTooltipOpened: boolean;
|
|
323
801
|
typeTooltipEnum: typeof TypeTooltipEnum;
|
|
324
802
|
private focusOutInitialized;
|
|
803
|
+
get hostClasses(): string;
|
|
325
804
|
constructor();
|
|
326
805
|
ngOnInit(): void;
|
|
327
806
|
getButtonClasses(): {
|
|
@@ -340,7 +819,7 @@ declare class ButtonComponent implements OnInit {
|
|
|
340
819
|
onTooltipClickOutside(): void;
|
|
341
820
|
private getRandomId;
|
|
342
821
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
343
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "cw-button", never, { "type": { "alias": "type"; "required": false; }; "label": { "alias": "label"; "required": false; }; "id": { "alias": "id"; "required": false; }; "isDropdown": { "alias": "isDropdown"; "required": false; }; "withIcon": { "alias": "withIcon"; "required": false; }; "withOnlyIcon": { "alias": "withOnlyIcon"; "required": false; }; "iconSize": { "alias": "iconSize"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "dropdownPosition": { "alias": "dropdownPosition"; "required": false; }; "isMinWidth": { "alias": "isMinWidth"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "
|
|
822
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "cw-button", never, { "type": { "alias": "type"; "required": false; }; "label": { "alias": "label"; "required": false; }; "id": { "alias": "id"; "required": false; }; "isDropdown": { "alias": "isDropdown"; "required": false; }; "withIcon": { "alias": "withIcon"; "required": false; }; "withOnlyIcon": { "alias": "withOnlyIcon"; "required": false; }; "iconSize": { "alias": "iconSize"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "dropdownPosition": { "alias": "dropdownPosition"; "required": false; }; "isMinWidth": { "alias": "isMinWidth"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "cssClass": { "alias": "cssClass"; "required": false; }; "dataTest": { "alias": "dataTest"; "required": false; }; "skeletonMode": { "alias": "skeletonMode"; "required": false; }; "withTooltip": { "alias": "withTooltip"; "required": false; }; "tooltipText": { "alias": "tooltipText"; "required": false; }; "tooltipTitle": { "alias": "tooltipTitle"; "required": false; }; "tooltipTrigger": { "alias": "tooltipTrigger"; "required": false; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; }; "tooltipType": { "alias": "tooltipType"; "required": false; }; }, { "btnAction": "btnAction"; "dropDownClicked": "dropDownClicked"; }, never, ["*"], true, never>;
|
|
344
823
|
}
|
|
345
824
|
|
|
346
825
|
declare class DropdownComponent {
|
|
@@ -434,11 +913,13 @@ declare class FormFieldComponent implements OnInit {
|
|
|
434
913
|
sliderValue: number;
|
|
435
914
|
sliderOptions: Options;
|
|
436
915
|
cssClass?: string;
|
|
916
|
+
skeletonMode?: boolean;
|
|
437
917
|
refreshEvent: EventEmitter<void>;
|
|
438
918
|
textChanged: EventEmitter<string>;
|
|
439
919
|
optionTemplate?: TemplateRef<any>;
|
|
440
920
|
labelTemplate?: TemplateRef<any>;
|
|
441
921
|
typeField: typeof FormFieldTypeEnum;
|
|
922
|
+
readonly spriteIcon: typeof SpriteIconEnum;
|
|
442
923
|
get hostClasses(): string;
|
|
443
924
|
constructor();
|
|
444
925
|
get isRange(): boolean;
|
|
@@ -460,31 +941,28 @@ declare class FormFieldComponent implements OnInit {
|
|
|
460
941
|
getRangePercent(): number;
|
|
461
942
|
onRangeStep(direction: 'increase' | 'decrease'): void;
|
|
462
943
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldComponent, never>;
|
|
463
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldComponent, "cw-form-field", never, { "control": { "alias": "control"; "required": false; }; "formGroup": { "alias": "formGroup"; "required": false; }; "type": { "alias": "type"; "required": false; }; "label": { "alias": "label"; "required": false; }; "displayLabel": { "alias": "displayLabel"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "options": { "alias": "options"; "required": false; }; "rangeOptions": { "alias": "rangeOptions"; "required": false; }; "isRequired": { "alias": "isRequired"; "required": false; }; "help": { "alias": "help"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "addonLeft": { "alias": "addonLeft"; "required": false; }; "addonRight": { "alias": "addonRight"; "required": false; }; "isInAddon": { "alias": "isInAddon"; "required": false; }; "isReadonly": { "alias": "isReadonly"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "sliderValue": { "alias": "sliderValue"; "required": false; }; "sliderOptions": { "alias": "sliderOptions"; "required": false; }; "cssClass": { "alias": "cssClass"; "required": false; }; }, { "refreshEvent": "refreshEvent"; "textChanged": "textChanged"; }, ["optionTemplate", "labelTemplate"], never, true, never>;
|
|
944
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldComponent, "cw-form-field", never, { "control": { "alias": "control"; "required": false; }; "formGroup": { "alias": "formGroup"; "required": false; }; "type": { "alias": "type"; "required": false; }; "label": { "alias": "label"; "required": false; }; "displayLabel": { "alias": "displayLabel"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "options": { "alias": "options"; "required": false; }; "rangeOptions": { "alias": "rangeOptions"; "required": false; }; "isRequired": { "alias": "isRequired"; "required": false; }; "help": { "alias": "help"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "addonLeft": { "alias": "addonLeft"; "required": false; }; "addonRight": { "alias": "addonRight"; "required": false; }; "isInAddon": { "alias": "isInAddon"; "required": false; }; "isReadonly": { "alias": "isReadonly"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "sliderValue": { "alias": "sliderValue"; "required": false; }; "sliderOptions": { "alias": "sliderOptions"; "required": false; }; "cssClass": { "alias": "cssClass"; "required": false; }; "skeletonMode": { "alias": "skeletonMode"; "required": false; }; }, { "refreshEvent": "refreshEvent"; "textChanged": "textChanged"; }, ["optionTemplate", "labelTemplate"], never, true, never>;
|
|
464
945
|
}
|
|
465
946
|
|
|
466
|
-
declare class IconComponent
|
|
467
|
-
icon:
|
|
468
|
-
font: string;
|
|
947
|
+
declare class IconComponent {
|
|
948
|
+
icon: SpriteIconEnum;
|
|
469
949
|
label?: string;
|
|
470
950
|
type?: IconTypeEnum;
|
|
471
951
|
iconSize?: IconSizeEnum;
|
|
472
952
|
iconCssClass?: string;
|
|
473
953
|
iconUiType?: IconUiTypeEnum;
|
|
474
954
|
iconColorCustom?: string;
|
|
955
|
+
spritePath: string;
|
|
475
956
|
iconTypeEnum: typeof IconTypeEnum;
|
|
476
|
-
iconClass: string;
|
|
477
|
-
constructor();
|
|
478
957
|
get hostClasses(): string;
|
|
479
|
-
ngOnInit(): void;
|
|
480
958
|
static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
|
|
481
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "cw-icon", never, { "icon": { "alias": "icon"; "required": false; }; "
|
|
959
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "cw-icon", never, { "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; "type": { "alias": "type"; "required": false; }; "iconSize": { "alias": "iconSize"; "required": false; }; "iconCssClass": { "alias": "iconCssClass"; "required": false; }; "iconUiType": { "alias": "iconUiType"; "required": false; }; "iconColorCustom": { "alias": "iconColorCustom"; "required": false; }; "spritePath": { "alias": "spritePath"; "required": false; }; }, {}, never, never, true, never>;
|
|
482
960
|
}
|
|
483
961
|
|
|
484
962
|
declare class IconNotificationComponent implements OnInit {
|
|
485
963
|
type?: IconNotifTypeEnum;
|
|
486
964
|
iconSize?: IconNotifSizeEnum;
|
|
487
|
-
icon:
|
|
965
|
+
icon: SpriteIconEnum;
|
|
488
966
|
label: string;
|
|
489
967
|
constructor();
|
|
490
968
|
get hostClasses(): string;
|
|
@@ -519,7 +997,7 @@ interface DataLegend {
|
|
|
519
997
|
colorUi?: UiTypeEnum;
|
|
520
998
|
colorBadge?: BadgeTypeEnum;
|
|
521
999
|
colorCustom?: string;
|
|
522
|
-
icon?:
|
|
1000
|
+
icon?: SpriteIconEnum;
|
|
523
1001
|
}
|
|
524
1002
|
interface Legend {
|
|
525
1003
|
title?: string;
|
|
@@ -545,33 +1023,69 @@ declare enum ModalsType {
|
|
|
545
1023
|
delete = "delete",
|
|
546
1024
|
loader = "loader",
|
|
547
1025
|
quickSideView = "quicksideview",
|
|
548
|
-
custom = "custom"
|
|
1026
|
+
custom = "custom",
|
|
1027
|
+
success = "success",
|
|
1028
|
+
info = "info",
|
|
1029
|
+
warning = "warning",
|
|
1030
|
+
danger = "danger",
|
|
1031
|
+
neutral = "neutral"
|
|
1032
|
+
}
|
|
1033
|
+
declare enum ModalsSize {
|
|
1034
|
+
sm = "sm",
|
|
1035
|
+
md = "md",
|
|
1036
|
+
lg = "lg",
|
|
1037
|
+
xl = "xl"
|
|
549
1038
|
}
|
|
550
1039
|
|
|
551
|
-
declare class ModalsComponent implements OnInit {
|
|
552
|
-
|
|
1040
|
+
declare class ModalsComponent implements OnInit, AfterViewInit {
|
|
1041
|
+
private modalService;
|
|
553
1042
|
private translateService;
|
|
1043
|
+
modalContainer: ElementRef;
|
|
1044
|
+
size: ModalsSize;
|
|
1045
|
+
customClass: string;
|
|
1046
|
+
scrollable: boolean;
|
|
1047
|
+
isAutcompModal: boolean;
|
|
554
1048
|
type: ModalsType;
|
|
555
|
-
modalTitle
|
|
1049
|
+
modalTitle?: string;
|
|
556
1050
|
itemsToDelete: any[];
|
|
557
1051
|
itemsToDeleteTitle: any;
|
|
558
|
-
|
|
1052
|
+
labelBtnAction1?: string;
|
|
1053
|
+
labelBtnAction2?: string;
|
|
559
1054
|
customBodyTemplate?: TemplateRef<any>;
|
|
560
1055
|
customBodyContext?: any;
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
1056
|
+
btnAction1: EventEmitter<string>;
|
|
1057
|
+
btnAction2: EventEmitter<string>;
|
|
1058
|
+
readonly modalsType: typeof ModalsType;
|
|
1059
|
+
readonly buttonTypeEnum: {
|
|
1060
|
+
primary: BoButtonTypeEnum.primary;
|
|
1061
|
+
secondary: BoButtonTypeEnum.secondary;
|
|
1062
|
+
link: BoButtonTypeEnum.link;
|
|
1063
|
+
info: BoButtonTypeEnum.info;
|
|
1064
|
+
warning: BoButtonTypeEnum.warning;
|
|
1065
|
+
success: BoButtonTypeEnum.success;
|
|
1066
|
+
danger: BoButtonTypeEnum.danger;
|
|
1067
|
+
dangerOutline: BoButtonTypeEnum.dangerOutline;
|
|
1068
|
+
light: BoButtonTypeEnum.light;
|
|
1069
|
+
};
|
|
1070
|
+
readonly spriteIcon: typeof SpriteIconEnum;
|
|
1071
|
+
readonly iconType: typeof IconTypeEnum;
|
|
1072
|
+
readonly iconSize: typeof IconSizeEnum;
|
|
1073
|
+
readonly iconUiType: typeof IconUiTypeEnum;
|
|
565
1074
|
ngOnInit(): void;
|
|
566
|
-
|
|
1075
|
+
ngAfterViewInit(): void;
|
|
1076
|
+
onKeyDown(e: KeyboardEvent): void;
|
|
1077
|
+
action1Click(): void;
|
|
1078
|
+
action2Click(): void;
|
|
1079
|
+
closeModal(): void;
|
|
1080
|
+
private trapFocus;
|
|
567
1081
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModalsComponent, never>;
|
|
568
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ModalsComponent, "cw-modals", never, { "type": { "alias": "type"; "required": false; }; "modalTitle": { "alias": "modalTitle"; "required": false; }; "itemsToDelete": { "alias": "itemsToDelete"; "required": false; }; "itemsToDeleteTitle": { "alias": "itemsToDeleteTitle"; "required": false; }; "
|
|
1082
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ModalsComponent, "cw-modals", never, { "size": { "alias": "size"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "scrollable": { "alias": "scrollable"; "required": false; }; "isAutcompModal": { "alias": "isAutcompModal"; "required": false; }; "type": { "alias": "type"; "required": false; }; "modalTitle": { "alias": "modalTitle"; "required": false; }; "itemsToDelete": { "alias": "itemsToDelete"; "required": false; }; "itemsToDeleteTitle": { "alias": "itemsToDeleteTitle"; "required": false; }; "labelBtnAction1": { "alias": "labelBtnAction1"; "required": false; }; "labelBtnAction2": { "alias": "labelBtnAction2"; "required": false; }; "customBodyTemplate": { "alias": "customBodyTemplate"; "required": false; }; "customBodyContext": { "alias": "customBodyContext"; "required": false; }; }, { "btnAction1": "btnAction1"; "btnAction2": "btnAction2"; }, never, never, true, never>;
|
|
569
1083
|
}
|
|
570
1084
|
|
|
571
1085
|
declare class TabContentComponent {
|
|
572
1086
|
title: string;
|
|
573
1087
|
disabled: boolean;
|
|
574
|
-
withIcon?:
|
|
1088
|
+
withIcon?: SpriteIconEnum;
|
|
575
1089
|
id: number;
|
|
576
1090
|
active: boolean;
|
|
577
1091
|
get fragment(): string;
|
|
@@ -660,6 +1174,7 @@ declare class FileToDownloadComponent {
|
|
|
660
1174
|
translate: TranslateService;
|
|
661
1175
|
readonly iconType: typeof IconTypeEnum;
|
|
662
1176
|
readonly iconSize: typeof IconSizeEnum;
|
|
1177
|
+
readonly spriteIcon = SpriteIconEnum.toolbarDownload;
|
|
663
1178
|
attachments: Attachment[];
|
|
664
1179
|
static ɵfac: i0.ɵɵFactoryDeclaration<FileToDownloadComponent, never>;
|
|
665
1180
|
static ɵcmp: i0.ɵɵComponentDeclaration<FileToDownloadComponent, "cw-file-to-download", never, { "attachments": { "alias": "attachments"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -678,11 +1193,11 @@ declare enum NumericalRangeLabelPositionEnum {
|
|
|
678
1193
|
outside = "outside"
|
|
679
1194
|
}
|
|
680
1195
|
|
|
681
|
-
declare class NumericalRangeComponent
|
|
1196
|
+
declare class NumericalRangeComponent {
|
|
682
1197
|
type: NumericalRangeTypeEnum;
|
|
683
1198
|
label: string;
|
|
684
1199
|
amount: number;
|
|
685
|
-
withIcon?:
|
|
1200
|
+
withIcon?: SpriteIconEnum;
|
|
686
1201
|
withLabelVisible?: boolean;
|
|
687
1202
|
labelPosition: NumericalRangeLabelPositionEnum;
|
|
688
1203
|
ceil?: number;
|
|
@@ -693,11 +1208,11 @@ declare class NumericalRangeComponent implements OnInit {
|
|
|
693
1208
|
readonly numericalRangeType: typeof NumericalRangeTypeEnum;
|
|
694
1209
|
readonly iconTypeEnum: typeof IconTypeEnum;
|
|
695
1210
|
readonly iconSize: typeof IconSizeEnum;
|
|
1211
|
+
readonly spriteIcon: typeof SpriteIconEnum;
|
|
696
1212
|
readonly labelPositionValue: typeof NumericalRangeLabelPositionEnum;
|
|
697
1213
|
readonly buttonType: typeof BoButtonTypeEnum;
|
|
698
1214
|
readonly buttonIconSize: typeof ButtonIconSizeEnum;
|
|
699
|
-
|
|
700
|
-
ngOnInit(): void;
|
|
1215
|
+
uniqueId: string;
|
|
701
1216
|
increaseAmount(): void;
|
|
702
1217
|
decreaseAmount(): void;
|
|
703
1218
|
static ɵfac: i0.ɵɵFactoryDeclaration<NumericalRangeComponent, never>;
|
|
@@ -729,11 +1244,28 @@ declare enum PlacementEnum {
|
|
|
729
1244
|
Right = "right"
|
|
730
1245
|
}
|
|
731
1246
|
|
|
1247
|
+
interface ModalRef {
|
|
1248
|
+
componentInstance: ModalsComponent;
|
|
1249
|
+
result: Promise<any>;
|
|
1250
|
+
}
|
|
732
1251
|
declare class ModalsService {
|
|
733
|
-
private
|
|
734
|
-
|
|
735
|
-
|
|
1252
|
+
private appRef;
|
|
1253
|
+
private injector;
|
|
1254
|
+
private modalsStack;
|
|
1255
|
+
private focusedElementsStack;
|
|
1256
|
+
dismissModal: EventEmitter<string>;
|
|
1257
|
+
openedModal: EventEmitter<boolean>;
|
|
1258
|
+
/**
|
|
1259
|
+
* Ouvre une modale et retourne un objet compatible avec l'ancienne syntaxe .result
|
|
1260
|
+
*/
|
|
1261
|
+
openModal(type: ModalsType, config?: Partial<ModalsComponent>, sizeOverride?: ModalsSize): ModalRef;
|
|
1262
|
+
/**
|
|
1263
|
+
* Ferme la modale en haut de la pile
|
|
1264
|
+
*/
|
|
1265
|
+
closeModal(): void;
|
|
736
1266
|
private getModalSizeByType;
|
|
1267
|
+
private saveFocus;
|
|
1268
|
+
private restoreFocus;
|
|
737
1269
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModalsService, never>;
|
|
738
1270
|
static ɵprov: i0.ɵɵInjectableDeclaration<ModalsService>;
|
|
739
1271
|
}
|
|
@@ -762,5 +1294,5 @@ interface DataCustomListGroup {
|
|
|
762
1294
|
fields: DataCustomList[];
|
|
763
1295
|
}
|
|
764
1296
|
|
|
765
|
-
export { AccordionComponent, AlertComponent, AlertTypeEnum, BadgeComponent, BadgePositionEnum, BadgeTypeEnum, BoButtonTypeEnum, BoTabTypeEnum, ButtonComponent, ButtonIconSizeEnum, ButtonPositionEnum, CardComponent, CardTitleRankEnum, CardTypeEnum, ClickOutsideDirective, CollapseDirective, DropdownComponent, DropdownItemDirective, FileToDownloadComponent, FoButtonTypeEnum, FoTabTypeEnum, FocusTrackerService, FormFieldComponent, FormFieldTypeEnum, IconComponent, IconNotifSizeEnum, IconNotifTypeEnum, IconNotificationComponent, IconSizeEnum, IconTypeEnum, IconUiTypeEnum, ImageComponent, LegendComponent, LegendTypeEnum, LoaderComponent, ModalsComponent, ModalsService, ModalsType, NumericalRangeComponent, NumericalRangeLabelPositionEnum, NumericalRangeTypeEnum, PlacementEnum, ResponsiveService, StepperComponent, TabComponent, TabContentComponent, ToastComponent, ToastService, TriggerTooltipEnum, TypeTooltipEnum, WizardStepComponent, WizardStepperComponent, rangeValidator };
|
|
766
|
-
export type { Attachment, DataCustomList, DataCustomListGroup, DataLegend, FormFieldOption, FormFieldRangeOption, Legend, ShowToastOptions, Toast, ToastAction };
|
|
1297
|
+
export { AccordionComponent, AlertComponent, AlertTypeEnum, BadgeComponent, BadgePositionEnum, BadgeTypeEnum, BoButtonTypeEnum, BoTabTypeEnum, ButtonComponent, ButtonIconSizeEnum, ButtonPositionEnum, CardComponent, CardTitleRankEnum, CardTypeEnum, ClickOutsideDirective, CollapseDirective, DropdownComponent, DropdownItemDirective, FileToDownloadComponent, FoButtonTypeEnum, FoTabTypeEnum, FocusTrackerService, FormFieldComponent, FormFieldTypeEnum, IconComponent, IconNotifSizeEnum, IconNotifTypeEnum, IconNotificationComponent, IconSizeEnum, IconTypeEnum, IconUiTypeEnum, ImageComponent, LegendComponent, LegendTypeEnum, LoaderComponent, ModalsComponent, ModalsService, ModalsSize, ModalsType, NumericalRangeComponent, NumericalRangeLabelPositionEnum, NumericalRangeTypeEnum, PlacementEnum, ResponsiveService, StepperComponent, TabComponent, TabContentComponent, ToastComponent, ToastService, TriggerTooltipEnum, TypeTooltipEnum, WizardStepComponent, WizardStepperComponent, rangeValidator };
|
|
1298
|
+
export type { Attachment, DataCustomList, DataCustomListGroup, DataLegend, FormFieldOption, FormFieldRangeOption, Legend, ModalRef, ShowToastOptions, Toast, ToastAction };
|