@brickclay-org/ui 0.0.10 → 0.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts ADDED
@@ -0,0 +1,420 @@
1
+ import * as i0 from '@angular/core';
2
+ import { OnInit, OnDestroy, OnChanges, EventEmitter, SimpleChanges, AfterViewInit, QueryList, ElementRef } from '@angular/core';
3
+ import * as rxjs from 'rxjs';
4
+ import * as i1 from '@angular/common';
5
+ import { ControlValueAccessor } from '@angular/forms';
6
+
7
+ declare const BrickclayIcons: {
8
+ readonly arrowleft: "assets/icons/chevron-left.svg";
9
+ readonly arrowRight: "assets/icons/chevron-right.svg";
10
+ readonly calenderIcon: "assets/icons/calender.svg";
11
+ readonly timerIcon: "assets/icons/timer.svg";
12
+ };
13
+
14
+ declare class BrickclayLib {
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<BrickclayLib, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<BrickclayLib, "lib-brickclay-lib", never, {}, {}, never, never, true, never>;
17
+ }
18
+
19
+ declare class CalendarManagerService {
20
+ private calendarInstances;
21
+ private closeAllSubject;
22
+ closeAll$: rxjs.Observable<void>;
23
+ /**
24
+ * Register a calendar instance with its close function
25
+ */
26
+ register(closeFn: () => void): () => void;
27
+ /**
28
+ * Close all calendars except the one being opened
29
+ */
30
+ closeAllExcept(exceptCloseFn: () => void): void;
31
+ /**
32
+ * Close all calendars
33
+ */
34
+ closeAll(): void;
35
+ static ɵfac: i0.ɵɵFactoryDeclaration<CalendarManagerService, never>;
36
+ static ɵprov: i0.ɵɵInjectableDeclaration<CalendarManagerService>;
37
+ }
38
+
39
+ interface CalendarRange {
40
+ start: Date;
41
+ end: Date;
42
+ }
43
+ interface CalendarSelection {
44
+ startDate: Date | null;
45
+ endDate: Date | null;
46
+ selectedDates?: Date[];
47
+ }
48
+ declare class CustomCalendarComponent implements OnInit, OnDestroy, OnChanges {
49
+ private calendarManager;
50
+ enableTimepicker: boolean;
51
+ autoApply: boolean;
52
+ closeOnAutoApply: boolean;
53
+ showCancel: boolean;
54
+ linkedCalendars: boolean;
55
+ singleDatePicker: boolean;
56
+ showWeekNumbers: boolean;
57
+ showISOWeekNumbers: boolean;
58
+ customRangeDirection: boolean;
59
+ lockStartDate: boolean;
60
+ position: 'center' | 'left' | 'right';
61
+ drop: 'up' | 'down';
62
+ dualCalendar: boolean;
63
+ showRanges: boolean;
64
+ timeFormat: 12 | 24;
65
+ enableSeconds: boolean;
66
+ customRanges?: Record<string, CalendarRange>;
67
+ multiDateSelection: boolean;
68
+ maxDate?: Date;
69
+ minDate?: Date;
70
+ placeholder: string;
71
+ opens: 'left' | 'right' | 'center';
72
+ inline: boolean;
73
+ isDisplayCrossIcon: boolean;
74
+ selected: EventEmitter<CalendarSelection>;
75
+ opened: EventEmitter<void>;
76
+ closed: EventEmitter<void>;
77
+ /**
78
+ * External value passed from parent. If provided, component will select these dates on init / change.
79
+ * Accepts { startDate: Date|null, endDate: Date|null, selectedDates?: Date[] }
80
+ */
81
+ selectedValue: CalendarSelection | null;
82
+ /** Optional display format for the input value. Uses moment formatting tokens. */
83
+ displayFormat: string;
84
+ brickclayIcons: {
85
+ readonly arrowleft: "assets/icons/chevron-left.svg";
86
+ readonly arrowRight: "assets/icons/chevron-right.svg";
87
+ readonly calenderIcon: "assets/icons/calender.svg";
88
+ readonly timerIcon: "assets/icons/timer.svg";
89
+ };
90
+ show: boolean;
91
+ today: Date;
92
+ month: number;
93
+ year: number;
94
+ calendar: {
95
+ day: number;
96
+ currentMonth: boolean;
97
+ }[][];
98
+ leftMonth: number;
99
+ leftYear: number;
100
+ rightMonth: number;
101
+ rightYear: number;
102
+ leftCalendar: {
103
+ day: number;
104
+ currentMonth: boolean;
105
+ }[][];
106
+ rightCalendar: {
107
+ day: number;
108
+ currentMonth: boolean;
109
+ }[][];
110
+ startDate: Date | null;
111
+ endDate: Date | null;
112
+ selectedDates: Date[];
113
+ disableHighlight: boolean;
114
+ hoveredDate: Date | null;
115
+ minuteInputValues: {
116
+ [key: string]: string;
117
+ };
118
+ selectedHour: number;
119
+ selectedMinute: number;
120
+ selectedSecond: number;
121
+ selectedAMPM: 'AM' | 'PM';
122
+ startHour: number;
123
+ startMinute: number;
124
+ startSecond: number;
125
+ startAMPM: 'AM' | 'PM';
126
+ endHour: number;
127
+ endMinute: number;
128
+ endSecond: number;
129
+ endAMPM: 'AM' | 'PM';
130
+ openTimePickerId: string | null;
131
+ closePickerCounter: {
132
+ [key: string]: number;
133
+ };
134
+ defaultRanges: Record<string, CalendarRange>;
135
+ activeRange: string | null;
136
+ rangeOrder: string[];
137
+ private unregisterFn?;
138
+ private closeAllSubscription?;
139
+ private closeFn?;
140
+ constructor(calendarManager: CalendarManagerService);
141
+ onClickOutside(event: MouseEvent): void;
142
+ ngOnInit(): void;
143
+ ngOnChanges(changes: SimpleChanges): void;
144
+ ngOnDestroy(): void;
145
+ checkAndSetActiveRange(): void;
146
+ initializeDefaultRanges(): void;
147
+ initializeTimeFromDate(date: Date, isStart: boolean): void;
148
+ toggle(): void;
149
+ close(): void;
150
+ onDateHover(day: number | null, fromRight?: boolean): void;
151
+ onDateLeave(): void;
152
+ selectDate(day: number | null, fromRight?: boolean): void;
153
+ handleMultiDateSelection(selected: Date): void;
154
+ getDateString(date: Date): string;
155
+ isDateInMultiSelection(year: number, month: number, day: number): boolean;
156
+ apply(): void;
157
+ cancel(): void;
158
+ clear(): void;
159
+ chooseRange(key: string): void;
160
+ emitSelection(): void;
161
+ addDays(date: Date, days: number): Date;
162
+ generateCalendar(): void;
163
+ nextMonth(): void;
164
+ prevMonth(): void;
165
+ nextLeftMonth(): void;
166
+ prevLeftMonth(): void;
167
+ nextRightMonth(): void;
168
+ prevRightMonth(): void;
169
+ initializeDual(): void;
170
+ generateDualCalendars(): void;
171
+ buildCalendar(year: number, month: number): {
172
+ day: number;
173
+ currentMonth: boolean;
174
+ }[][];
175
+ isDateSelected(year: number, month: number, day: number): boolean;
176
+ isDateInRange(year: number, month: number, day: number): boolean;
177
+ isDateDisabled(year: number, month: number, day: number): boolean;
178
+ isToday(year: number, month: number, day: number): boolean;
179
+ getDisplayValue(): string;
180
+ getTimeInputValue(isStart?: boolean): string;
181
+ getSingleTimeInputValue(): string;
182
+ getSingleTimePickerDisplay(): string;
183
+ getDualTimePickerDisplay(isStart?: boolean): string;
184
+ onTimePickerOpened(pickerId: string): void;
185
+ onTimePickerClosed(pickerId: string): void;
186
+ shouldClosePicker(pickerId: string): number;
187
+ private parsePickerTimeString;
188
+ onSingleTimePickerChange(time: string): void;
189
+ onDualTimePickerChange(time: string, isStart?: boolean): void;
190
+ onTimeChange(event: any, isStart?: boolean): void;
191
+ onSingleTimeChange(event: any): void;
192
+ incrementHour(isStart?: boolean): void;
193
+ decrementHour(isStart?: boolean): void;
194
+ incrementMinute(isStart?: boolean): void;
195
+ decrementMinute(isStart?: boolean): void;
196
+ toggleAMPM(isStart?: boolean): void;
197
+ incrementSingleHour(): void;
198
+ decrementSingleHour(): void;
199
+ incrementSingleMinute(): void;
200
+ decrementSingleMinute(): void;
201
+ toggleSingleAMPM(): void;
202
+ getMonthName(month: number): string;
203
+ onHourInput(event: any, isStart?: boolean, isSingle?: boolean): void;
204
+ onHourBlur(event: any, isStart?: boolean, isSingle?: boolean): void;
205
+ onMinuteInput(event: any, isStart?: boolean, isSingle?: boolean): void;
206
+ onMinuteBlur(event: any, isStart?: boolean, isSingle?: boolean): void;
207
+ getDisplayHour(hour: number): number;
208
+ getMinuteDisplayValue(isStart: boolean, isSingle: boolean): string;
209
+ applyTimeToDate(date: Date, isStart: boolean): void;
210
+ onTimeInputFocus(event: any): void;
211
+ formatAllMinuteInputs(): void;
212
+ static ɵfac: i0.ɵɵFactoryDeclaration<CustomCalendarComponent, never>;
213
+ static ɵcmp: i0.ɵɵComponentDeclaration<CustomCalendarComponent, "brickclay-custom-calendar", never, { "enableTimepicker": { "alias": "enableTimepicker"; "required": false; }; "autoApply": { "alias": "autoApply"; "required": false; }; "closeOnAutoApply": { "alias": "closeOnAutoApply"; "required": false; }; "showCancel": { "alias": "showCancel"; "required": false; }; "linkedCalendars": { "alias": "linkedCalendars"; "required": false; }; "singleDatePicker": { "alias": "singleDatePicker"; "required": false; }; "showWeekNumbers": { "alias": "showWeekNumbers"; "required": false; }; "showISOWeekNumbers": { "alias": "showISOWeekNumbers"; "required": false; }; "customRangeDirection": { "alias": "customRangeDirection"; "required": false; }; "lockStartDate": { "alias": "lockStartDate"; "required": false; }; "position": { "alias": "position"; "required": false; }; "drop": { "alias": "drop"; "required": false; }; "dualCalendar": { "alias": "dualCalendar"; "required": false; }; "showRanges": { "alias": "showRanges"; "required": false; }; "timeFormat": { "alias": "timeFormat"; "required": false; }; "enableSeconds": { "alias": "enableSeconds"; "required": false; }; "customRanges": { "alias": "customRanges"; "required": false; }; "multiDateSelection": { "alias": "multiDateSelection"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "opens": { "alias": "opens"; "required": false; }; "inline": { "alias": "inline"; "required": false; }; "isDisplayCrossIcon": { "alias": "isDisplayCrossIcon"; "required": false; }; "selectedValue": { "alias": "selectedValue"; "required": false; }; "displayFormat": { "alias": "displayFormat"; "required": false; }; }, { "selected": "selected"; "opened": "opened"; "closed": "closed"; }, never, never, true, never>;
214
+ }
215
+
216
+ interface TimeConfiguration {
217
+ date: Date;
218
+ allDay: boolean;
219
+ startTime: string;
220
+ endTime: string;
221
+ }
222
+ interface ScheduledDateSelection {
223
+ mode: 'single' | 'multiple' | 'range';
224
+ singleDate?: {
225
+ startDate: Date;
226
+ endDate: Date;
227
+ allDay: boolean;
228
+ startTime: string;
229
+ endTime: string;
230
+ };
231
+ multipleDates?: TimeConfiguration[];
232
+ dateRange?: {
233
+ startDate: Date;
234
+ endDate: Date;
235
+ allDay: boolean;
236
+ startTime: string;
237
+ endTime: string;
238
+ };
239
+ }
240
+ declare class ScheduledDatePickerComponent implements OnInit {
241
+ timeFormat: 12 | 24;
242
+ enableSeconds: boolean;
243
+ scheduled: EventEmitter<ScheduledDateSelection>;
244
+ cleared: EventEmitter<void>;
245
+ activeTab: 'single' | 'multiple' | 'range';
246
+ openTimePickerId: string | null;
247
+ closePickerCounter: {
248
+ [key: string]: number;
249
+ };
250
+ singleDate: Date | null;
251
+ singleAllDay: boolean;
252
+ singleStartTime: string;
253
+ singleEndTime: string;
254
+ multipleDates: TimeConfiguration[];
255
+ rangeStartDate: Date | null;
256
+ rangeEndDate: Date | null;
257
+ rangeAllDay: boolean;
258
+ rangeStartTime: string;
259
+ rangeEndTime: string;
260
+ ngOnInit(): void;
261
+ onTabChange(tab: 'single' | 'multiple' | 'range'): void;
262
+ onTimePickerOpened(pickerId: string): void;
263
+ onTimePickerClosed(pickerId: string): void;
264
+ shouldClosePicker(pickerId: string): number;
265
+ onSingleDateSelected(event: CalendarSelection): void;
266
+ onSingleAllDayChange(): void;
267
+ onSingleStartTimeChange(time: string): void;
268
+ onSingleEndTimeChange(time: string): void;
269
+ updateSingleDateTimes(): void;
270
+ onMultipleDatesSelected(event: CalendarSelection): void;
271
+ onMultipleDateAllDayChange(index: number): void;
272
+ onMultipleDateStartTimeChange(index: number, time: string): void;
273
+ onMultipleDateEndTimeChange(index: number, time: string): void;
274
+ onRangeSelected(event: CalendarSelection): void;
275
+ onRangeAllDayChange(): void;
276
+ onRangeStartTimeChange(time: string): void;
277
+ onRangeEndTimeChange(time: string): void;
278
+ updateRangeTimes(): void;
279
+ parseTimeString(timeStr: string): {
280
+ hours: number;
281
+ minutes: number;
282
+ };
283
+ getDateString(date: Date): string;
284
+ formatDate(date: Date): string;
285
+ emitScheduled(): void;
286
+ clear(): void;
287
+ apply(): void;
288
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScheduledDatePickerComponent, never>;
289
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScheduledDatePickerComponent, "brickclay-scheduled-date-picker", never, { "timeFormat": { "alias": "timeFormat"; "required": false; }; "enableSeconds": { "alias": "enableSeconds"; "required": false; }; }, { "scheduled": "scheduled"; "cleared": "cleared"; }, never, never, true, never>;
290
+ }
291
+
292
+ declare class TimePickerComponent implements OnInit, OnChanges, AfterViewInit {
293
+ value: string;
294
+ label: string;
295
+ placeholder: string;
296
+ position: 'left' | 'right';
297
+ pickerId: string;
298
+ closePicker: number;
299
+ timeFormat: 12 | 24;
300
+ showSeconds: boolean;
301
+ timeChange: EventEmitter<string>;
302
+ pickerOpened: EventEmitter<string>;
303
+ pickerClosed: EventEmitter<string>;
304
+ timeScrollElements: QueryList<ElementRef>;
305
+ showPicker: boolean;
306
+ currentHour: number;
307
+ currentMinute: number;
308
+ currentAMPM: string;
309
+ currentSecond: number;
310
+ brickclayIcons: {
311
+ readonly arrowleft: "assets/icons/chevron-left.svg";
312
+ readonly arrowRight: "assets/icons/chevron-right.svg";
313
+ readonly calenderIcon: "assets/icons/calender.svg";
314
+ readonly timerIcon: "assets/icons/timer.svg";
315
+ };
316
+ ngOnInit(): void;
317
+ ngAfterViewInit(): void;
318
+ parseTimeValue(): void;
319
+ getHours(): number[];
320
+ getMinutes(): number[];
321
+ getSeconds(): number[];
322
+ getAMPMOptions(): string[];
323
+ parseTimeStringToComponents(timeStr: string): {
324
+ hour: number;
325
+ minute: number;
326
+ second: number;
327
+ ampm: string;
328
+ };
329
+ formatTimeFromComponents(hour: number, minute: number, second: number, ampm: string): string;
330
+ togglePicker(): void;
331
+ onHourChange(hour: number): void;
332
+ onMinuteChange(minute: number): void;
333
+ onSecondChange(second: number): void;
334
+ onAMPMChange(ampm: string): void;
335
+ updateTime(): void;
336
+ scrollToSelectedTimes(): void;
337
+ onDocumentClick(event: MouseEvent): void;
338
+ private previousCloseCounter;
339
+ ngOnChanges(changes: SimpleChanges): void;
340
+ onInputKeydown(event: KeyboardEvent): void;
341
+ static ɵfac: i0.ɵɵFactoryDeclaration<TimePickerComponent, never>;
342
+ static ɵcmp: i0.ɵɵComponentDeclaration<TimePickerComponent, "brickclay-time-picker", never, { "value": { "alias": "value"; "required": false; }; "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "position": { "alias": "position"; "required": false; }; "pickerId": { "alias": "pickerId"; "required": false; }; "closePicker": { "alias": "closePicker"; "required": false; }; "timeFormat": { "alias": "timeFormat"; "required": false; }; "showSeconds": { "alias": "showSeconds"; "required": false; }; }, { "timeChange": "timeChange"; "pickerOpened": "pickerOpened"; "pickerClosed": "pickerClosed"; }, never, never, true, never>;
343
+ }
344
+
345
+ /**
346
+ * Optional NgModule wrapper for projects that prefer module-based usage.
347
+ *
348
+ * Note:
349
+ * - The components themselves are standalone, so you can also import them
350
+ * directly into any standalone component without using this module.
351
+ * - This module is mainly for:
352
+ * - Existing apps that still use feature modules
353
+ * - Easier "plug-and-play" integration: import CalendarModule once and use
354
+ * the three exported components anywhere in your templates.
355
+ */
356
+ declare class CalendarModule {
357
+ static ɵfac: i0.ɵɵFactoryDeclaration<CalendarModule, never>;
358
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CalendarModule, never, [typeof i1.CommonModule, typeof CustomCalendarComponent, typeof ScheduledDatePickerComponent, typeof TimePickerComponent], [typeof CustomCalendarComponent, typeof ScheduledDatePickerComponent, typeof TimePickerComponent]>;
359
+ static ɵinj: i0.ɵɵInjectorDeclaration<CalendarModule>;
360
+ }
361
+
362
+ declare class ToggleComponent implements ControlValueAccessor {
363
+ label: string;
364
+ disabled: boolean;
365
+ toggleClass: string;
366
+ change: EventEmitter<boolean>;
367
+ isChecked: boolean;
368
+ onChange: (_: boolean) => void;
369
+ onTouched: () => void;
370
+ toggle(): void;
371
+ writeValue(value: boolean): void;
372
+ registerOnChange(fn: any): void;
373
+ registerOnTouched(fn: any): void;
374
+ setDisabledState(isDisabled: boolean): void;
375
+ static ɵfac: i0.ɵɵFactoryDeclaration<ToggleComponent, never>;
376
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToggleComponent, "brickclay-toggle", never, { "label": { "alias": "label"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "toggleClass": { "alias": "toggleClass"; "required": false; }; }, { "change": "change"; }, never, never, true, never>;
377
+ }
378
+
379
+ declare class CheckboxComponent implements ControlValueAccessor {
380
+ checkboxClass: string;
381
+ label: string;
382
+ labelClass: string;
383
+ disabled: boolean;
384
+ change: EventEmitter<boolean>;
385
+ isChecked: boolean;
386
+ private onChange;
387
+ private onTouched;
388
+ toggle(): void;
389
+ /** ------------------ ControlValueAccessor methods ------------------ */
390
+ writeValue(value: boolean): void;
391
+ registerOnChange(fn: any): void;
392
+ registerOnTouched(fn: any): void;
393
+ setDisabledState(isDisabled: boolean): void;
394
+ static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
395
+ static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "brickclay-checkbox", never, { "checkboxClass": { "alias": "checkboxClass"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelClass": { "alias": "labelClass"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "change": "change"; }, never, never, true, never>;
396
+ }
397
+
398
+ declare class RadioComponent implements ControlValueAccessor {
399
+ radioClass: string;
400
+ label: string;
401
+ labelClass: string;
402
+ value: any;
403
+ disabled: boolean;
404
+ variant: 'dot' | 'tick';
405
+ change: EventEmitter<any>;
406
+ modelValue: any;
407
+ onChange: (_: any) => void;
408
+ onTouched: () => void;
409
+ select(): void;
410
+ get isChecked(): boolean;
411
+ writeValue(value: any): void;
412
+ registerOnChange(fn: any): void;
413
+ registerOnTouched(fn: any): void;
414
+ setDisabledState(isDisabled: boolean): void;
415
+ static ɵfac: i0.ɵɵFactoryDeclaration<RadioComponent, never>;
416
+ static ɵcmp: i0.ɵɵComponentDeclaration<RadioComponent, "brickclay-radio-button", never, { "radioClass": { "alias": "radioClass"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelClass": { "alias": "labelClass"; "required": false; }; "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, { "change": "change"; }, never, never, true, never>;
417
+ }
418
+
419
+ export { BrickclayIcons, BrickclayLib, CalendarManagerService, CalendarModule, CheckboxComponent, CustomCalendarComponent, RadioComponent, ScheduledDatePickerComponent, TimePickerComponent, ToggleComponent };
420
+ export type { CalendarRange, CalendarSelection, ScheduledDateSelection, TimeConfiguration };
package/package.json CHANGED
@@ -1,15 +1,24 @@
1
- {
2
- "name": "@brickclay-org/ui",
3
- "version": "0.0.10",
4
- "main": "fesm2022/brickclay-org-ui.mjs",
5
- "module": "fesm2022/brickclay-org-ui.mjs",
6
- "typings": "index.d.ts",
7
- "peerDependencies": {
8
- "@angular/common": ">=17.0.0 <21.0.0",
9
- "@angular/core": ">=17.0.0 <21.0.0"
10
- },
11
- "dependencies": {
12
- "tslib": "^2.3.0"
13
- },
14
- "sideEffects": false
15
- }
1
+ {
2
+ "name": "@brickclay-org/ui",
3
+ "version": "0.0.14",
4
+ "peerDependencies": {
5
+ "@angular/common": ">=17.0.0 <=21.0.0",
6
+ "@angular/core": ">=17.0.0 <=21.0.0",
7
+ "moment": "^2.29.0"
8
+ },
9
+ "dependencies": {
10
+ "tslib": "^2.3.0"
11
+ },
12
+ "sideEffects": false,
13
+ "module": "fesm2022/brickclay-org-ui.mjs",
14
+ "typings": "index.d.ts",
15
+ "exports": {
16
+ "./package.json": {
17
+ "default": "./package.json"
18
+ },
19
+ ".": {
20
+ "types": "./index.d.ts",
21
+ "default": "./fesm2022/brickclay-org-ui.mjs"
22
+ }
23
+ }
24
+ }
@@ -0,0 +1,19 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_3797_46309)">
3
+ <path d="M14.545 5.45448V11.6363C14.545 13.8181 13.4541 15.2727 10.9086 15.2727H5.09047C2.54501 15.2727 1.4541 13.8181 1.4541 11.6363V5.45448C1.4541 3.27266 2.54501 1.81812 5.09047 1.81812H10.9086C13.4541 1.81812 14.545 3.27266 14.545 5.45448Z" stroke="#141414" stroke-width="1.2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M5.09082 0.727295V2.90911" stroke="#141414" stroke-width="1.2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M10.9092 0.727295V2.90911" stroke="#141414" stroke-width="1.2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M1.81836 5.88354H14.182" stroke="#141414" stroke-width="1.2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path d="M10.6868 9.23619H10.6933" stroke="#141414" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round"/>
8
+ <path d="M10.6868 11.4181H10.6933" stroke="#141414" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round"/>
9
+ <path d="M7.99636 9.23619H8.00289" stroke="#141414" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round"/>
10
+ <path d="M7.99636 11.4181H8.00289" stroke="#141414" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round"/>
11
+ <path d="M5.30495 9.23644H5.31149" stroke="#141414" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round"/>
12
+ <path d="M5.30495 11.4181H5.31149" stroke="#141414" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round"/>
13
+ </g>
14
+ <defs>
15
+ <clipPath id="clip0_3797_46309">
16
+ <rect width="16" height="16" fill="white"/>
17
+ </clipPath>
18
+ </defs>
19
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg width="12" height="7" viewBox="0 0 12 7" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_535_3111)">
3
+ <path d="M0.835938 1.16797L5.83593 6.16797L10.8359 1.16797" stroke="#6B7080" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="clip0_535_3111">
7
+ <rect width="7" height="12" fill="white" transform="matrix(0 -1 1 0 0 7)"/>
8
+ </clipPath>
9
+ </defs>
10
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="7" height="12" viewBox="0 0 7 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M5.83398 0.833313L0.833984 5.83331L5.83398 10.8333" stroke="#6B7080" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="7" height="12" viewBox="0 0 7 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0.833984 10.8333L5.83398 5.83331L0.833984 0.833313" stroke="#6B7080" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg width="12" height="7" viewBox="0 0 12 7" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_535_3113)">
3
+ <path d="M10.8359 6.16797L5.83593 1.16797L0.835938 6.16797" stroke="#6B7080" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="clip0_535_3113">
7
+ <rect width="7" height="12" fill="white" transform="matrix(0 -1 1 0 0 7)"/>
8
+ </clipPath>
9
+ </defs>
10
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M5 9L1 5L5 1" stroke="#B9BBC6" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_268_9)">
3
+ <path d="M1 9L5 5L1 1" stroke="#B9BBC6" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="clip0_268_9">
7
+ <rect width="6" height="10" fill="white"/>
8
+ </clipPath>
9
+ </defs>
10
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M7 14C10.8593 14 14 10.8593 14 7C14 3.14067 10.8594 0 7 0C3.14063 0 0 3.14067 0 7C0 10.8593 3.14067 14 7 14ZM7 0.933318C10.346 0.933318 13.0667 3.65398 13.0667 7C13.0667 10.346 10.346 13.0667 7 13.0667C3.65398 13.0667 0.933318 10.346 0.933318 7C0.933318 3.65398 3.65401 0.933318 7 0.933318Z" fill="#BBBDC5"/>
3
+ <path d="M9.04153 9.23071C9.12788 9.3007 9.23052 9.33339 9.3332 9.33339C9.47086 9.33339 9.60619 9.27272 9.69718 9.15839C9.85819 8.95772 9.82549 8.66372 9.62486 8.50271L7.46652 6.77604V3.26671C7.46652 3.01004 7.25653 2.80005 6.99986 2.80005C6.74319 2.80005 6.5332 3.01004 6.5332 3.26671V7.00006C6.5332 7.1424 6.59855 7.27539 6.7082 7.36404L9.04153 9.23071Z" fill="#BBBDC5"/>
4
+ </svg>
@@ -0,0 +1,26 @@
1
+ /*---- Checkbox Sizes Class ---- */
2
+ .xsm {
3
+ @apply size-[14px];
4
+ }
5
+ .sm {
6
+ @apply size-[16px];
7
+ }
8
+ .md {
9
+ @apply size-[18px];
10
+ }
11
+ .lg {
12
+ @apply size-[20px];
13
+ }
14
+ /*---- Tick Sizes Class ---- */
15
+ .xsm svg {
16
+ @apply size-[10.5px];
17
+ }
18
+ .sm svg {
19
+ @apply size-[12px];
20
+ }
21
+ .md svg {
22
+ @apply size-[13.5px];
23
+ }
24
+ .lg svg {
25
+ @apply size-[14px];
26
+ }
@@ -0,0 +1,39 @@
1
+ /*---- Checkbox Sizes Class ---- */
2
+ .xsm {
3
+ @apply size-[14px];
4
+ }
5
+ .sm {
6
+ @apply size-[16px];
7
+ }
8
+ .md {
9
+ @apply size-[18px];
10
+ }
11
+ .lg {
12
+ @apply size-[19px];
13
+ }
14
+ /*---- Dot Sizes Class ---- */
15
+ .xsm .dot {
16
+ @apply size-[6px];
17
+ }
18
+ .sm .dot {
19
+ @apply size-[8px];
20
+ }
21
+ .md .dot {
22
+ @apply size-[10px];
23
+ }
24
+ .lg .dot {
25
+ @apply size-[11px];
26
+ }
27
+ /*---- Tick Sizes Class ---- */
28
+ .xsm .tick {
29
+ @apply size-[8px];
30
+ }
31
+ .sm .tick {
32
+ @apply size-[9px];
33
+ }
34
+ .md .tick {
35
+ @apply size-[12px];
36
+ }
37
+ .lg .tick {
38
+ @apply size-[13px];
39
+ }