@tacdaed/fragments 1.0.0-beta.0 → 1.0.0-beta.1
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 -1
- package/ng-package.json +25 -0
- package/package.json +22 -29
- package/src/lib/components/accordion/accordion.component.html +103 -0
- package/src/lib/components/accordion/accordion.component.scss +382 -0
- package/src/lib/components/accordion/accordion.component.spec.ts +147 -0
- package/src/lib/components/accordion/accordion.component.ts +211 -0
- package/src/lib/components/accordion/accordion.type.ts +82 -0
- package/src/lib/components/breadcrumb/breadcrumb.component.html +43 -0
- package/src/lib/components/breadcrumb/breadcrumb.component.scss +112 -0
- package/src/lib/components/breadcrumb/breadcrumb.component.spec.ts +33 -0
- package/src/lib/components/breadcrumb/breadcrumb.component.ts +103 -0
- package/src/lib/components/breadcrumb/breadcrumb.interface.ts +7 -0
- package/src/lib/components/button/button.component.html +57 -0
- package/src/lib/components/button/button.component.scss +445 -0
- package/src/lib/components/button/button.component.spec.ts +99 -0
- package/src/lib/components/button/button.component.ts +143 -0
- package/src/lib/components/button/button.type.ts +7 -0
- package/src/lib/components/card/card.component.html +44 -0
- package/src/lib/components/card/card.component.scss +114 -0
- package/src/lib/components/card/card.component.spec.ts +65 -0
- package/src/lib/components/card/card.component.ts +21 -0
- package/src/lib/components/card/card.type.ts +3 -0
- package/src/lib/components/code-block/code-block.component.html +55 -0
- package/src/lib/components/code-block/code-block.component.scss +122 -0
- package/src/lib/components/code-block/code-block.component.spec.ts +81 -0
- package/src/lib/components/code-block/code-block.component.ts +302 -0
- package/src/lib/components/code-block/code-block.interface.ts +28 -0
- package/src/lib/components/code-block/code-block.type.ts +73 -0
- package/src/lib/components/decorative/sparkle-field/sparkle-field.component.html +14 -0
- package/src/lib/components/decorative/sparkle-field/sparkle-field.component.scss +20 -0
- package/src/lib/components/decorative/sparkle-field/sparkle-field.component.spec.ts +38 -0
- package/src/lib/components/decorative/sparkle-field/sparkle-field.component.ts +181 -0
- package/src/lib/components/input/input-base.ts +187 -0
- package/src/lib/components/input/input-calendar/input-calendar.component.html +76 -0
- package/src/lib/components/input/input-calendar/input-calendar.component.scss +179 -0
- package/src/lib/components/input/input-calendar/input-calendar.component.spec.ts +44 -0
- package/src/lib/components/input/input-calendar/input-calendar.component.ts +299 -0
- package/src/lib/components/input/input-checkbox/input-checkbox.component.html +37 -0
- package/src/lib/components/input/input-checkbox/input-checkbox.component.scss +128 -0
- package/src/lib/components/input/input-checkbox/input-checkbox.component.spec.ts +43 -0
- package/src/lib/components/input/input-checkbox/input-checkbox.component.ts +112 -0
- package/src/lib/components/input/input-checkbox-group/input-checkbox-group.component.html +43 -0
- package/src/lib/components/input/input-checkbox-group/input-checkbox-group.component.scss +140 -0
- package/src/lib/components/input/input-checkbox-group/input-checkbox-group.component.spec.ts +62 -0
- package/src/lib/components/input/input-checkbox-group/input-checkbox-group.component.ts +136 -0
- package/src/lib/components/input/input-clock-picker/input-clock-picker.component.html +81 -0
- package/src/lib/components/input/input-clock-picker/input-clock-picker.component.scss +228 -0
- package/src/lib/components/input/input-clock-picker/input-clock-picker.component.spec.ts +62 -0
- package/src/lib/components/input/input-clock-picker/input-clock-picker.component.ts +178 -0
- package/src/lib/components/input/input-consts.ts +132 -0
- package/src/lib/components/input/input-date/input-date-validators.ts +41 -0
- package/src/lib/components/input/input-date/input-date.component.html +41 -0
- package/src/lib/components/input/input-date/input-date.component.scss +95 -0
- package/src/lib/components/input/input-date/input-date.component.spec.ts +43 -0
- package/src/lib/components/input/input-date/input-date.component.ts +359 -0
- package/src/lib/components/input/input-date-time/input-date-time.component.html +70 -0
- package/src/lib/components/input/input-date-time/input-date-time.component.scss +133 -0
- package/src/lib/components/input/input-date-time/input-date-time.component.spec.ts +36 -0
- package/src/lib/components/input/input-date-time/input-date-time.component.ts +387 -0
- package/src/lib/components/input/input-file-upload/input-file-upload.component.html +89 -0
- package/src/lib/components/input/input-file-upload/input-file-upload.component.scss +171 -0
- package/src/lib/components/input/input-file-upload/input-file-upload.component.spec.ts +43 -0
- package/src/lib/components/input/input-file-upload/input-file-upload.component.ts +351 -0
- package/src/lib/components/input/input-interface.ts +8 -0
- package/src/lib/components/input/input-number/input-number-validators.ts +0 -0
- package/src/lib/components/input/input-number/input-number.component.html +51 -0
- package/src/lib/components/input/input-number/input-number.component.scss +140 -0
- package/src/lib/components/input/input-number/input-number.component.spec.ts +44 -0
- package/src/lib/components/input/input-number/input-number.component.ts +343 -0
- package/src/lib/components/input/input-radio-group/input-radio-group.component.html +44 -0
- package/src/lib/components/input/input-radio-group/input-radio-group.component.scss +139 -0
- package/src/lib/components/input/input-radio-group/input-radio-group.component.spec.ts +58 -0
- package/src/lib/components/input/input-radio-group/input-radio-group.component.ts +132 -0
- package/src/lib/components/input/input-slider/input-slider.component.html +111 -0
- package/src/lib/components/input/input-slider/input-slider.component.scss +203 -0
- package/src/lib/components/input/input-slider/input-slider.component.spec.ts +46 -0
- package/src/lib/components/input/input-slider/input-slider.component.ts +410 -0
- package/src/lib/components/input/input-text/input-text-validators.ts +67 -0
- package/src/lib/components/input/input-text/input-text.component.html +71 -0
- package/src/lib/components/input/input-text/input-text.component.scss +118 -0
- package/src/lib/components/input/input-text/input-text.component.spec.ts +55 -0
- package/src/lib/components/input/input-text/input-text.component.ts +215 -0
- package/src/lib/components/input/input-time/input-time-validators.ts +42 -0
- package/src/lib/components/input/input-time/input-time.component.html +92 -0
- package/src/lib/components/input/input-time/input-time.component.scss +191 -0
- package/src/lib/components/input/input-time/input-time.component.spec.ts +39 -0
- package/src/lib/components/input/input-time/input-time.component.ts +691 -0
- package/src/lib/components/input/input-toggle-switch/input-toggle-switch.component.html +36 -0
- package/src/lib/components/input/input-toggle-switch/input-toggle-switch.component.scss +121 -0
- package/src/lib/components/input/input-toggle-switch/input-toggle-switch.component.spec.ts +54 -0
- package/src/lib/components/input/input-toggle-switch/input-toggle-switch.component.ts +117 -0
- package/src/lib/components/input/input-type.ts +18 -0
- package/src/lib/components/input/input-validation/input-validation.component.html +19 -0
- package/src/lib/components/input/input-validation/input-validation.component.scss +39 -0
- package/src/lib/components/input/input-validation/input-validation.component.spec.ts +45 -0
- package/src/lib/components/input/input-validation/input-validation.component.ts +13 -0
- package/src/lib/components/input/input.pipe.ts +14 -0
- package/src/lib/components/layout/container/container.component.html +1 -0
- package/src/lib/components/layout/container/container.component.scss +33 -0
- package/src/lib/components/layout/container/container.component.ts +32 -0
- package/src/lib/components/layout/container/container.type.ts +1 -0
- package/src/lib/components/layout/divider/divider.component.html +1 -0
- package/src/lib/components/layout/divider/divider.component.scss +60 -0
- package/src/lib/components/layout/divider/divider.component.ts +38 -0
- package/src/lib/components/layout/divider/divider.type.ts +2 -0
- package/src/lib/components/layout/section/section.component.html +21 -0
- package/src/lib/components/layout/section/section.component.scss +43 -0
- package/src/lib/components/layout/section/section.component.ts +33 -0
- package/src/lib/components/layout/section/section.type.ts +2 -0
- package/src/lib/components/layout/separator/separator.component.html +9 -0
- package/src/lib/components/layout/separator/separator.component.scss +52 -0
- package/src/lib/components/layout/separator/separator.component.ts +25 -0
- package/src/lib/components/layout/separator/separator.type.ts +1 -0
- package/src/lib/components/loader/content-blur/content-blur.component.html +13 -0
- package/src/lib/components/loader/content-blur/content-blur.component.scss +43 -0
- package/src/lib/components/loader/content-blur/content-blur.component.spec.ts +42 -0
- package/src/lib/components/loader/content-blur/content-blur.component.ts +34 -0
- package/src/lib/components/loader/loader.type.ts +2 -0
- package/src/lib/components/loader/progress-bar/progress-bar.component.html +26 -0
- package/src/lib/components/loader/progress-bar/progress-bar.component.scss +151 -0
- package/src/lib/components/loader/progress-bar/progress-bar.component.spec.ts +47 -0
- package/src/lib/components/loader/progress-bar/progress-bar.component.ts +28 -0
- package/src/lib/components/loader/progress-bar/progress-bar.type.ts +8 -0
- package/src/lib/components/loader/pulse-loader/pulse-loader.component.html +12 -0
- package/src/lib/components/loader/pulse-loader/pulse-loader.component.scss +202 -0
- package/src/lib/components/loader/pulse-loader/pulse-loader.component.spec.ts +55 -0
- package/src/lib/components/loader/pulse-loader/pulse-loader.component.ts +73 -0
- package/src/lib/components/loader/pulse-loader/pulse-loader.type.ts +6 -0
- package/src/lib/components/loader/skeleton-loader/skeleton-loader.component.html +13 -0
- package/src/lib/components/loader/skeleton-loader/skeleton-loader.component.scss +113 -0
- package/src/lib/components/loader/skeleton-loader/skeleton-loader.component.spec.ts +37 -0
- package/src/lib/components/loader/skeleton-loader/skeleton-loader.component.ts +51 -0
- package/src/lib/components/loader/skeleton-loader/skeleton-loader.type.ts +6 -0
- package/src/lib/components/loader/spinner/spinner.component.html +20 -0
- package/src/lib/components/loader/spinner/spinner.component.scss +137 -0
- package/src/lib/components/loader/spinner/spinner.component.spec.ts +43 -0
- package/src/lib/components/loader/spinner/spinner.component.ts +32 -0
- package/src/lib/components/loader/spinner/spinner.type.ts +6 -0
- package/src/lib/components/modal/modal.component.html +47 -0
- package/src/lib/components/modal/modal.component.scss +139 -0
- package/src/lib/components/modal/modal.component.spec.ts +60 -0
- package/src/lib/components/modal/modal.component.ts +83 -0
- package/src/lib/components/modal/modal.type.ts +9 -0
- package/src/lib/components/morph/blob-moph/blob-moprh.component.spec.ts +79 -0
- package/src/lib/components/morph/blob-moph/blob-moprh.component.ts +96 -0
- package/src/lib/components/morph/blob-moph/blob-morph.component.html +34 -0
- package/src/lib/components/morph/blob-moph/blob-morph.component.scss +7 -0
- package/src/lib/components/morph/morph.abstract.ts +13 -0
- package/src/lib/components/pagination/pagination.interface.ts +4 -0
- package/src/lib/components/pagination/small-pagination/small-pagination.component.html +61 -0
- package/src/lib/components/pagination/small-pagination/small-pagination.component.scss +187 -0
- package/src/lib/components/pagination/small-pagination/small-pagination.component.spec.ts +88 -0
- package/src/lib/components/pagination/small-pagination/small-pagination.component.ts +177 -0
- package/src/lib/components/selection-lists/multi-select/multi-select.component.html +170 -0
- package/src/lib/components/selection-lists/multi-select/multi-select.component.scss +312 -0
- package/src/lib/components/selection-lists/multi-select/multi-select.component.spec.ts +61 -0
- package/src/lib/components/selection-lists/multi-select/multi-select.component.ts +372 -0
- package/src/lib/components/selection-lists/selection-list/selection-list.component.html +125 -0
- package/src/lib/components/selection-lists/selection-list/selection-list.component.scss +267 -0
- package/src/lib/components/selection-lists/selection-list/selection-list.component.spec.ts +66 -0
- package/src/lib/components/selection-lists/selection-list/selection-list.component.ts +315 -0
- package/src/lib/components/selection-lists/selection-lists-base.ts +35 -0
- package/src/lib/components/selection-lists/selection-lists-const.ts +17 -0
- package/src/lib/components/selection-lists/selection-lists-interface.ts +7 -0
- package/src/lib/components/selection-lists/selection-lists.type.ts +1 -0
- package/src/lib/components/side-nav/side-nav.component.html +101 -0
- package/src/lib/components/side-nav/side-nav.component.scss +295 -0
- package/src/lib/components/side-nav/side-nav.component.spec.ts +0 -0
- package/src/lib/components/side-nav/side-nav.component.ts +18 -0
- package/src/lib/components/side-nav/side-nav.type.ts +28 -0
- package/src/lib/components/snackbar/snackbar.component.html +33 -0
- package/src/lib/components/snackbar/snackbar.component.scss +195 -0
- package/src/lib/components/snackbar/snackbar.component.ts +112 -0
- package/src/lib/components/snackbar/snackbar.type.ts +27 -0
- package/src/lib/components/status/chip/chip.component.html +51 -0
- package/src/lib/components/status/chip/chip.component.scss +149 -0
- package/src/lib/components/status/chip/chip.component.spec.ts +62 -0
- package/src/lib/components/status/chip/chip.component.ts +83 -0
- package/src/lib/components/status/chip/chip.type.ts +42 -0
- package/src/lib/components/status/directives/badge/badge.directive.spec.ts +60 -0
- package/src/lib/components/status/directives/badge/badge.directive.ts +190 -0
- package/src/lib/components/status/directives/badge/badge.interface.ts +19 -0
- package/src/lib/components/status/pill/pill.component.html +40 -0
- package/src/lib/components/status/pill/pill.component.scss +113 -0
- package/src/lib/components/status/pill/pill.component.spec.ts +47 -0
- package/src/lib/components/status/pill/pill.component.ts +83 -0
- package/src/lib/components/status/pill/pill.type.ts +42 -0
- package/src/lib/components/status/status.interface.ts +57 -0
- package/src/lib/components/status/status.type.ts +62 -0
- package/src/lib/components/status/tag/tag.component.html +39 -0
- package/src/lib/components/status/tag/tag.component.scss +140 -0
- package/src/lib/components/status/tag/tag.component.spec.ts +47 -0
- package/src/lib/components/status/tag/tag.component.ts +83 -0
- package/src/lib/components/status/tag/tag.type.ts +42 -0
- package/src/lib/components/stepper/stepper.component.html +83 -0
- package/src/lib/components/stepper/stepper.component.scss +196 -0
- package/src/lib/components/stepper/stepper.component.ts +482 -0
- package/src/lib/components/stepper/stepper.type.ts +60 -0
- package/src/lib/components/table/table.component.html +438 -0
- package/src/lib/components/table/table.component.scss +259 -0
- package/src/lib/components/table/table.component.spec.ts +117 -0
- package/src/lib/components/table/table.component.ts +215 -0
- package/src/lib/components/table/table.enum.ts +4 -0
- package/src/lib/components/table/table.function.ts +47 -0
- package/src/lib/components/table/table.interface.ts +143 -0
- package/src/lib/components/table/table.pipe.ts +62 -0
- package/src/lib/components/table/table.type.ts +15 -0
- package/src/lib/components/tabs/tabs.component.html +88 -0
- package/src/lib/components/tabs/tabs.component.scss +305 -0
- package/src/lib/components/tabs/tabs.component.spec.ts +94 -0
- package/src/lib/components/tabs/tabs.component.ts +282 -0
- package/src/lib/components/tabs/tabs.type.ts +81 -0
- package/src/lib/components/title-bar/title-bar.component.html +21 -0
- package/src/lib/components/title-bar/title-bar.component.scss +139 -0
- package/src/lib/components/title-bar/title-bar.component.spec.ts +44 -0
- package/src/lib/components/title-bar/title-bar.component.ts +13 -0
- package/src/lib/components/toast/toast.component.html +36 -0
- package/src/lib/components/toast/toast.component.scss +241 -0
- package/src/lib/components/toast/toast.component.ts +165 -0
- package/src/lib/components/toast/toast.type.ts +37 -0
- package/src/lib/components/toast-stack/toast-stack.component.html +30 -0
- package/src/lib/components/toast-stack/toast-stack.component.scss +35 -0
- package/src/lib/components/toast-stack/toast-stack.component.ts +51 -0
- package/src/lib/consts/country-prefix.ts +244 -0
- package/src/lib/directives/tooltip/popover.directive.ts +274 -0
- package/src/lib/directives/tooltip/tooltip.directive.spec.ts +86 -0
- package/src/lib/directives/tooltip/tooltip.directive.ts +234 -0
- package/src/lib/directives/tooltip/tooltip.interface.ts +29 -0
- package/src/lib/directives/tooltip/tooltip.type.ts +9 -0
- package/src/lib/interfaces/common.interfaces.ts +4 -0
- package/src/lib/pipes/chunk.pipe.ts +16 -0
- package/src/lib/pipes/safe-html.pipe.ts +14 -0
- package/src/lib/pipes/sanitize-html.pipe.ts +23 -0
- package/src/lib/types/base.types.ts +23 -0
- package/src/lib/types/common.types.ts +98 -0
- package/src/lib/types/form.types.ts +5 -0
- package/src/lib/utils/common.utils.ts +53 -0
- package/src/lib/utils/date.utils.ts +474 -0
- package/src/lib/utils/number.utils.ts +16 -0
- package/src/lib/utils/uuid.utils.ts +39 -0
- package/src/public-api.ts +114 -0
- package/tsconfig.lib.json +17 -0
- package/tsconfig.lib.prod.json +10 -0
- package/tsconfig.spec.json +9 -0
- package/fesm2022/fragments.mjs +0 -8928
- package/fesm2022/fragments.mjs.map +0 -1
- package/index.d.ts +0 -3929
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { v4 as uuidv4 } from 'uuid';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Generates a RFC4122 version 4 UUID string.
|
|
5
|
+
* Uses the 'uuid' library for guaranteed uniqueness.
|
|
6
|
+
* @returns {string} A UUID v4 string.
|
|
7
|
+
*/
|
|
8
|
+
export function generateUUID(): string {
|
|
9
|
+
return uuidv4();
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Returns the current timestamp in ISO 8601 format.
|
|
14
|
+
* Useful for logging or time-stamping events in a standardized way.
|
|
15
|
+
* @returns {string} Current date-time as ISO string.
|
|
16
|
+
*/
|
|
17
|
+
export function getTimestampISO(): string {
|
|
18
|
+
return new Date().toISOString();
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* Returns the current timestamp in milliseconds since Unix epoch.
|
|
23
|
+
* Useful for performance measurements or relative time calculations.
|
|
24
|
+
* @returns {number} Current timestamp in milliseconds.
|
|
25
|
+
*/
|
|
26
|
+
export function getTimestampMillis(): number {
|
|
27
|
+
return Date.now();
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Generates a simple unique ID string with an optional prefix.
|
|
32
|
+
* Uses random alphanumeric characters and current time for uniqueness.
|
|
33
|
+
* Good for quick IDs that don't require strict UUID format.
|
|
34
|
+
* @param {string} prefix Optional string prefix (default: 'id').
|
|
35
|
+
* @returns {string} Unique ID string with prefix.
|
|
36
|
+
*/
|
|
37
|
+
export function generateUniqueId(prefix = 'id'): string {
|
|
38
|
+
return `${prefix}-${Math.random().toString(36).substring(2, 11)}`;
|
|
39
|
+
}
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
//#region [Components]
|
|
2
|
+
export * from './lib/components/accordion/accordion.component';
|
|
3
|
+
export * from './lib/components/button/button.component';
|
|
4
|
+
export * from './lib/components/card/card.component';
|
|
5
|
+
export * from './lib/components/modal/modal.component';
|
|
6
|
+
export * from './lib/components/toast/toast.component';
|
|
7
|
+
export * from './lib/components/toast-stack/toast-stack.component';
|
|
8
|
+
export * from './lib/components/snackbar/snackbar.component';
|
|
9
|
+
export * from './lib/components/code-block/code-block.component';
|
|
10
|
+
export * from './lib/components/breadcrumb/breadcrumb.component';
|
|
11
|
+
export * from './lib/components/layout/container/container.component';
|
|
12
|
+
export * from './lib/components/layout/divider/divider.component';
|
|
13
|
+
export * from './lib/components/layout/separator/separator.component';
|
|
14
|
+
export * from './lib/components/layout/section/section.component';
|
|
15
|
+
export * from './lib/components/morph/blob-moph/blob-moprh.component';
|
|
16
|
+
export * from './lib/components/decorative/sparkle-field/sparkle-field.component';
|
|
17
|
+
export * from './lib/components/pagination/small-pagination/small-pagination.component';
|
|
18
|
+
export * from './lib/components/table/table.component';
|
|
19
|
+
export * from './lib/components/tabs/tabs.component';
|
|
20
|
+
export * from './lib/components/title-bar/title-bar.component';
|
|
21
|
+
export * from './lib/components/side-nav/side-nav.component';
|
|
22
|
+
export * from './lib/components/stepper/stepper.component';
|
|
23
|
+
export * from './lib/components/input/input-text/input-text.component';
|
|
24
|
+
export * from './lib/components/input/input-number/input-number.component';
|
|
25
|
+
export * from './lib/components/input/input-date/input-date.component';
|
|
26
|
+
export * from './lib/components/input/input-calendar/input-calendar.component';
|
|
27
|
+
export * from './lib/components/input/input-time/input-time.component';
|
|
28
|
+
export * from './lib/components/input/input-date-time/input-date-time.component';
|
|
29
|
+
export * from './lib/components/input/input-clock-picker/input-clock-picker.component';
|
|
30
|
+
export * from './lib/components/input/input-validation/input-validation.component';
|
|
31
|
+
export * from './lib/components/input/input-toggle-switch/input-toggle-switch.component';
|
|
32
|
+
export * from './lib/components/input/input-checkbox/input-checkbox.component';
|
|
33
|
+
export * from './lib/components/input/input-checkbox-group/input-checkbox-group.component';
|
|
34
|
+
export * from './lib/components/input/input-radio-group/input-radio-group.component';
|
|
35
|
+
export * from './lib/components/input/input-slider/input-slider.component';
|
|
36
|
+
export * from './lib/components/input/input-file-upload/input-file-upload.component';
|
|
37
|
+
export * from './lib/components/loader/spinner/spinner.component';
|
|
38
|
+
export * from './lib/components/loader/progress-bar/progress-bar.component';
|
|
39
|
+
export * from './lib/components/loader/pulse-loader/pulse-loader.component';
|
|
40
|
+
export * from './lib/components/loader/skeleton-loader/skeleton-loader.component';
|
|
41
|
+
export * from './lib/components/loader/content-blur/content-blur.component';
|
|
42
|
+
export * from './lib/components/selection-lists/selection-list/selection-list.component';
|
|
43
|
+
export * from './lib/components/selection-lists/multi-select/multi-select.component';
|
|
44
|
+
export * from './lib/components/status/tag/tag.component';
|
|
45
|
+
export * from './lib/components/status/chip/chip.component';
|
|
46
|
+
export * from './lib/components/status/pill/pill.component';
|
|
47
|
+
export * from './lib/components/breadcrumb/breadcrumb.interface';
|
|
48
|
+
//#endregion
|
|
49
|
+
|
|
50
|
+
//#region [Directives]
|
|
51
|
+
export * from './lib/directives/tooltip/tooltip.directive';
|
|
52
|
+
export * from './lib/directives/tooltip/popover.directive';
|
|
53
|
+
export * from './lib/components/status/directives/badge/badge.directive';
|
|
54
|
+
//#endregion
|
|
55
|
+
|
|
56
|
+
//#region [Enums]
|
|
57
|
+
export * from './lib/components/table/table.enum';
|
|
58
|
+
//#endregion
|
|
59
|
+
|
|
60
|
+
//#region [Interfaces]
|
|
61
|
+
export * from './lib/components/code-block/code-block.interface';
|
|
62
|
+
export * from './lib/components/pagination/pagination.interface';
|
|
63
|
+
export * from './lib/components/table/table.interface';
|
|
64
|
+
export * from './lib/components/selection-lists/selection-lists-interface';
|
|
65
|
+
export * from './lib/components/status/status.interface';
|
|
66
|
+
export * from './lib/components/status/directives/badge/badge.interface';
|
|
67
|
+
//#endregion
|
|
68
|
+
|
|
69
|
+
//#region [Functions]
|
|
70
|
+
export * from './lib/components/table/table.function';
|
|
71
|
+
//#endregion
|
|
72
|
+
|
|
73
|
+
//#region [Pipes]
|
|
74
|
+
export * from './lib/components/table/table.pipe';
|
|
75
|
+
export * from './lib/pipes/sanitize-html.pipe';
|
|
76
|
+
export * from './lib/pipes/safe-html.pipe';
|
|
77
|
+
export * from './lib/pipes/chunk.pipe';
|
|
78
|
+
//#endregion
|
|
79
|
+
|
|
80
|
+
//#region [Types]
|
|
81
|
+
export * from './lib/components/accordion/accordion.type';
|
|
82
|
+
export * from './lib/components/button/button.type';
|
|
83
|
+
export * from './lib/components/card/card.type';
|
|
84
|
+
export * from './lib/components/code-block/code-block.type';
|
|
85
|
+
export * from './lib/components/modal/modal.type';
|
|
86
|
+
export * from './lib/components/toast/toast.type';
|
|
87
|
+
export * from './lib/components/snackbar/snackbar.type';
|
|
88
|
+
export * from './lib/components/table/table.type';
|
|
89
|
+
export * from './lib/components/loader/spinner/spinner.type';
|
|
90
|
+
export * from './lib/components/loader/progress-bar/progress-bar.type';
|
|
91
|
+
export * from './lib/components/loader/pulse-loader/pulse-loader.type';
|
|
92
|
+
export * from './lib/components/loader/skeleton-loader/skeleton-loader.type';
|
|
93
|
+
export * from './lib/components/status/status.type';
|
|
94
|
+
export * from './lib/components/status/tag/tag.type';
|
|
95
|
+
export * from './lib/components/status/chip/chip.type';
|
|
96
|
+
export * from './lib/components/status/pill/pill.type';
|
|
97
|
+
export * from './lib/components/tabs/tabs.type';
|
|
98
|
+
export * from './lib/components/stepper/stepper.type';
|
|
99
|
+
export * from './lib/components/side-nav/side-nav.type';
|
|
100
|
+
export * from './lib/components/layout/container/container.type';
|
|
101
|
+
export * from './lib/components/layout/divider/divider.type';
|
|
102
|
+
export * from './lib/components/layout/separator/separator.type';
|
|
103
|
+
export * from './lib/components/layout/section/section.type';
|
|
104
|
+
export * from './lib/directives/tooltip/tooltip.type';
|
|
105
|
+
export * from './lib/types/base.types';
|
|
106
|
+
export * from './lib/types/form.types';
|
|
107
|
+
export * from './lib/types/common.types';
|
|
108
|
+
//#endregion
|
|
109
|
+
|
|
110
|
+
//#region [Utils]
|
|
111
|
+
export * from './lib/utils/common.utils';
|
|
112
|
+
export * from './lib/utils/number.utils';
|
|
113
|
+
export * from './lib/utils/uuid.utils';
|
|
114
|
+
//#endregion
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "../../tsconfig.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"outDir": "../../out-tsc/lib",
|
|
5
|
+
"declaration": true,
|
|
6
|
+
"declarationMap": true,
|
|
7
|
+
"inlineSources": true,
|
|
8
|
+
"types": [
|
|
9
|
+
"node"
|
|
10
|
+
],
|
|
11
|
+
"moduleResolution": "bundler",
|
|
12
|
+
"esModuleInterop": true,
|
|
13
|
+
"allowSyntheticDefaultImports": true,
|
|
14
|
+
"skipLibCheck": true
|
|
15
|
+
},
|
|
16
|
+
"exclude": ["**/*.spec.ts"]
|
|
17
|
+
}
|