@tacdaed/fragments 1.0.0-beta.3 → 1.0.0-beta.4
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 +14 -0
- package/ng-package.json +20 -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/tacdaed-fragments.mjs +0 -8928
- package/fesm2022/tacdaed-fragments.mjs.map +0 -1
- package/index.d.ts +0 -3929
package/README.md
CHANGED
|
@@ -31,6 +31,20 @@ To enable syntax highlighting, you must import a Highlight.js theme in your app
|
|
|
31
31
|
]
|
|
32
32
|
```
|
|
33
33
|
|
|
34
|
+
### Add assets to `angular.json`
|
|
35
|
+
|
|
36
|
+
To take assets resource from fragments, like font-family, you must add in assets array in `angular.json` this configuration:
|
|
37
|
+
|
|
38
|
+
```json
|
|
39
|
+
"assets": [
|
|
40
|
+
{
|
|
41
|
+
"glob": "**/*",
|
|
42
|
+
"input": "node_modules/@tacdaed/fragments/assets/resources",
|
|
43
|
+
"output": "/assets/resources"
|
|
44
|
+
}
|
|
45
|
+
]
|
|
46
|
+
```
|
|
47
|
+
|
|
34
48
|
#### Choosing a Highlight.js Theme
|
|
35
49
|
|
|
36
50
|
You can choose any theme from:
|
package/ng-package.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../node_modules/ng-packagr/ng-package.schema.json",
|
|
3
|
+
"dest": "../../dist/fragments",
|
|
4
|
+
"allowedNonPeerDependencies": [
|
|
5
|
+
"uuid"
|
|
6
|
+
],
|
|
7
|
+
"lib": {
|
|
8
|
+
"entryFile": "src/public-api.ts",
|
|
9
|
+
"styleIncludePaths": [
|
|
10
|
+
"projects/fragments/assets/styles/scss"
|
|
11
|
+
]
|
|
12
|
+
},
|
|
13
|
+
"assets": [
|
|
14
|
+
{
|
|
15
|
+
"glob": "**/*.scss",
|
|
16
|
+
"input": "./assets/styles/scss",
|
|
17
|
+
"output": "/assets/styles/scss"
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|
package/package.json
CHANGED
|
@@ -1,29 +1,22 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@tacdaed/fragments",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
4
|
-
"peerDependencies": {
|
|
5
|
-
"@angular/common": "^20.2.0",
|
|
6
|
-
"@angular/core": "^20.2.0",
|
|
7
|
-
"rxjs": "^7.8.0",
|
|
8
|
-
"@fortawesome/fontawesome-free": "^6.5.0",
|
|
9
|
-
"animejs": "^4.1.0",
|
|
10
|
-
"bootstrap": "^5.3.0",
|
|
11
|
-
"highlight.js": "^11.11.0"
|
|
12
|
-
},
|
|
13
|
-
"dependencies": {
|
|
14
|
-
"tslib": "2.3.0",
|
|
15
|
-
"uuid": "11.1.0"
|
|
16
|
-
},
|
|
17
|
-
"
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
},
|
|
24
|
-
".": {
|
|
25
|
-
"types": "./index.d.ts",
|
|
26
|
-
"default": "./fesm2022/tacdaed-fragments.mjs"
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@tacdaed/fragments",
|
|
3
|
+
"version": "1.0.0-beta.4",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular/common": "^20.2.0",
|
|
6
|
+
"@angular/core": "^20.2.0",
|
|
7
|
+
"rxjs": "^7.8.0",
|
|
8
|
+
"@fortawesome/fontawesome-free": "^6.5.0",
|
|
9
|
+
"animejs": "^4.1.0",
|
|
10
|
+
"bootstrap": "^5.3.0",
|
|
11
|
+
"highlight.js": "^11.11.0"
|
|
12
|
+
},
|
|
13
|
+
"dependencies": {
|
|
14
|
+
"tslib": "2.3.0",
|
|
15
|
+
"uuid": "11.1.0"
|
|
16
|
+
},
|
|
17
|
+
"devDependencies": {
|
|
18
|
+
"@types/uuid": "9.0.8",
|
|
19
|
+
"typescript": "~5.5.4"
|
|
20
|
+
},
|
|
21
|
+
"sideEffects": false
|
|
22
|
+
}
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
<div
|
|
2
|
+
class="frg-accordion"
|
|
3
|
+
[class.frg-accordion--multi]="multi"
|
|
4
|
+
[class.is-animated]="animated"
|
|
5
|
+
[attr.data-style]="styleType"
|
|
6
|
+
[attr.data-size]="size">
|
|
7
|
+
@for (item of viewItems; track item?.id; let i = $index) {
|
|
8
|
+
<div
|
|
9
|
+
class="frg-accordion__item"
|
|
10
|
+
[attr.data-style]="item?.style || styleType"
|
|
11
|
+
[attr.data-size]="item?.size || size"
|
|
12
|
+
[class.is-expanded]="isExpanded(item?.id)"
|
|
13
|
+
[class.is-disabled]="item?.disabled">
|
|
14
|
+
<button
|
|
15
|
+
type="button"
|
|
16
|
+
#headerBtn
|
|
17
|
+
class="frg-accordion__header"
|
|
18
|
+
[attr.data-size]="item?.size || size"
|
|
19
|
+
[attr.id]="headerId(item!.id!)"
|
|
20
|
+
[attr.aria-controls]="panelId(item!.id!)"
|
|
21
|
+
[attr.aria-expanded]="isExpanded(item?.id)"
|
|
22
|
+
[attr.aria-disabled]="item?.disabled || null"
|
|
23
|
+
[disabled]="item?.disabled"
|
|
24
|
+
(click)="onHeaderClick(i, $event)"
|
|
25
|
+
(keydown)="onHeaderKeydown($event, i)">
|
|
26
|
+
<span class="frg-accordion__header-content">
|
|
27
|
+
@if (item?.iconTemplate || iconTemplate || item?.icon) {
|
|
28
|
+
<span class="frg-accordion__icon" aria-hidden="true">
|
|
29
|
+
@if (item?.iconTemplate) {
|
|
30
|
+
<ng-container
|
|
31
|
+
[ngTemplateOutlet]="item?.iconTemplate"
|
|
32
|
+
[ngTemplateOutletContext]="buildContext(item!, i)">
|
|
33
|
+
</ng-container>
|
|
34
|
+
} @else if (iconTemplate) {
|
|
35
|
+
<ng-container
|
|
36
|
+
[ngTemplateOutlet]="iconTemplate"
|
|
37
|
+
[ngTemplateOutletContext]="buildContext(item!, i)">
|
|
38
|
+
</ng-container>
|
|
39
|
+
} @else if (item?.icon) {
|
|
40
|
+
<span class="frg-accordion__icon-shape">{{ item?.icon }}</span>
|
|
41
|
+
}
|
|
42
|
+
</span>
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
<span class="frg-accordion__heading">
|
|
46
|
+
@if (item?.headerTemplate || headerTemplate) {
|
|
47
|
+
<ng-container
|
|
48
|
+
[ngTemplateOutlet]="item?.headerTemplate || headerTemplate"
|
|
49
|
+
[ngTemplateOutletContext]="buildContext(item!, i)">
|
|
50
|
+
</ng-container>
|
|
51
|
+
} @else {
|
|
52
|
+
<span class="frg-accordion__title">{{ item?.title }}</span>
|
|
53
|
+
@if (item?.subtitle) {
|
|
54
|
+
<span class="frg-accordion__subtitle">{{ item?.subtitle }}</span>
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
</span>
|
|
58
|
+
</span>
|
|
59
|
+
|
|
60
|
+
<span
|
|
61
|
+
class="frg-accordion__chevron"
|
|
62
|
+
aria-hidden="true"
|
|
63
|
+
[class.is-custom]="item?.toggleIconTemplate || toggleIconTemplate"
|
|
64
|
+
[class.is-open]="isExpanded(item?.id)">
|
|
65
|
+
@if (item?.toggleIconTemplate || toggleIconTemplate) {
|
|
66
|
+
<ng-container
|
|
67
|
+
[ngTemplateOutlet]="item?.toggleIconTemplate || toggleIconTemplate"
|
|
68
|
+
[ngTemplateOutletContext]="buildContext(item!, i)">
|
|
69
|
+
</ng-container>
|
|
70
|
+
} @else {
|
|
71
|
+
<span class="frg-accordion__chevron-icon"></span>
|
|
72
|
+
}
|
|
73
|
+
</span>
|
|
74
|
+
</button>
|
|
75
|
+
|
|
76
|
+
<section
|
|
77
|
+
class="frg-accordion__panel-wrapper"
|
|
78
|
+
[class.is-open]="isExpanded(item?.id)"
|
|
79
|
+
[attr.id]="panelId(item!.id!)"
|
|
80
|
+
[attr.aria-labelledby]="headerId(item!.id!)"
|
|
81
|
+
[attr.aria-hidden]="!isExpanded(item?.id)">
|
|
82
|
+
<div
|
|
83
|
+
class="frg-accordion__panel"
|
|
84
|
+
#panelBody
|
|
85
|
+
tabindex="-1"
|
|
86
|
+
[class.is-open]="isExpanded(item?.id)">
|
|
87
|
+
@if (item?.contentTemplate || contentTemplate) {
|
|
88
|
+
<ng-container
|
|
89
|
+
[ngTemplateOutlet]="item?.contentTemplate || contentTemplate"
|
|
90
|
+
[ngTemplateOutletContext]="buildContext(item!, i)">
|
|
91
|
+
</ng-container>
|
|
92
|
+
} @else {
|
|
93
|
+
@if (item?.content) {
|
|
94
|
+
{{ item?.content }}
|
|
95
|
+
} @else if (item?.data; as payload) {
|
|
96
|
+
{{ payload }}
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
</div>
|
|
100
|
+
</section>
|
|
101
|
+
</div>
|
|
102
|
+
}
|
|
103
|
+
</div>
|
|
@@ -0,0 +1,382 @@
|
|
|
1
|
+
@use "sass:color";
|
|
2
|
+
@use "sass:list";
|
|
3
|
+
@use './../../../../assets/styles/scss/variables' as *;
|
|
4
|
+
|
|
5
|
+
:host {
|
|
6
|
+
display: block;
|
|
7
|
+
font-family: $base-font;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.frg-accordion {
|
|
11
|
+
display: flex;
|
|
12
|
+
flex-direction: column;
|
|
13
|
+
gap: 0;
|
|
14
|
+
background: transparent;
|
|
15
|
+
|
|
16
|
+
&.is-animated {
|
|
17
|
+
.frg-accordion__panel-wrapper {
|
|
18
|
+
transition: grid-template-rows 0.22s ease, opacity 0.22s ease;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.frg-accordion__panel {
|
|
22
|
+
transition: padding 0.22s ease, opacity 0.22s ease;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&__item {
|
|
27
|
+
position: relative;
|
|
28
|
+
background: transparent;
|
|
29
|
+
overflow: hidden;
|
|
30
|
+
border-bottom: 1px solid $frg-accordion-border-color;
|
|
31
|
+
transition:
|
|
32
|
+
background-color 0.2s ease,
|
|
33
|
+
box-shadow 0.2s ease;
|
|
34
|
+
|
|
35
|
+
&.is-expanded {
|
|
36
|
+
background: $frg-accordion-header-background-color;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
&.is-disabled {
|
|
40
|
+
opacity: 0.65;
|
|
41
|
+
cursor: not-allowed;
|
|
42
|
+
background: color.scale($color-light, $lightness: -1%);
|
|
43
|
+
border-bottom-color: $frg-accordion-border-color;
|
|
44
|
+
|
|
45
|
+
& .frg-accordion__header {
|
|
46
|
+
cursor: not-allowed;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
&__header {
|
|
52
|
+
width: 100%;
|
|
53
|
+
display: flex;
|
|
54
|
+
align-items: center;
|
|
55
|
+
justify-content: space-between;
|
|
56
|
+
border: none;
|
|
57
|
+
gap: 1rem;
|
|
58
|
+
padding: 0.9rem 1rem;
|
|
59
|
+
background: transparent;
|
|
60
|
+
color: $color-dark;
|
|
61
|
+
cursor: pointer;
|
|
62
|
+
text-align: left;
|
|
63
|
+
transition: color 0.2s ease, background-color 0.2s ease;
|
|
64
|
+
|
|
65
|
+
&:hover {
|
|
66
|
+
color: $color-dark-neutral;
|
|
67
|
+
background-color: color.scale($color-light, $lightness: -25%);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
&:focus-visible {
|
|
71
|
+
outline: none;
|
|
72
|
+
box-shadow: inset 0 -2px 0 $color-primary;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.frg-accordion__header-content {
|
|
76
|
+
display: flex;
|
|
77
|
+
align-items: center;
|
|
78
|
+
gap: 0.85rem;
|
|
79
|
+
flex: 1 1 auto;
|
|
80
|
+
min-width: 0;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.frg-accordion__icon {
|
|
84
|
+
display: inline-flex;
|
|
85
|
+
align-items: center;
|
|
86
|
+
justify-content: center;
|
|
87
|
+
width: 2.5rem;
|
|
88
|
+
height: 2.5rem;
|
|
89
|
+
border-radius: 0.65rem;
|
|
90
|
+
background-color: color.scale($color-light, $lightness: -4%);
|
|
91
|
+
color: $color-dark;
|
|
92
|
+
flex-shrink: 0;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.frg-accordion__icon-shape {
|
|
96
|
+
display: inline-flex;
|
|
97
|
+
align-items: center;
|
|
98
|
+
justify-content: center;
|
|
99
|
+
font-size: $font-size-lg;
|
|
100
|
+
line-height: 1;
|
|
101
|
+
width: 100%;
|
|
102
|
+
height: 100%;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.frg-accordion__heading {
|
|
106
|
+
display: flex;
|
|
107
|
+
flex-direction: column;
|
|
108
|
+
gap: 0.15rem;
|
|
109
|
+
min-width: 0;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.frg-accordion__title {
|
|
113
|
+
font-size: $font-size-md;
|
|
114
|
+
font-weight: 600;
|
|
115
|
+
line-height: 1.3;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.frg-accordion__subtitle {
|
|
119
|
+
font-size: $font-size-sm;
|
|
120
|
+
color: $color-dark-soft;
|
|
121
|
+
line-height: 1.2;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.frg-accordion__chevron {
|
|
125
|
+
width: 1.5rem;
|
|
126
|
+
height: 1.5rem;
|
|
127
|
+
display: inline-flex;
|
|
128
|
+
align-items: center;
|
|
129
|
+
justify-content: center;
|
|
130
|
+
flex-shrink: 0;
|
|
131
|
+
transition: transform 0.16s ease;
|
|
132
|
+
|
|
133
|
+
&.is-custom {
|
|
134
|
+
width: auto;
|
|
135
|
+
height: auto;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.frg-accordion__chevron-icon {
|
|
140
|
+
display: inline-block;
|
|
141
|
+
width: 0.5rem;
|
|
142
|
+
height: 0.5rem;
|
|
143
|
+
border-right: 2px solid $color-dark-neutral;
|
|
144
|
+
border-bottom: 2px solid $color-dark-neutral;
|
|
145
|
+
transform: rotate(45deg);
|
|
146
|
+
transition: transform 0.16s ease, color 0.2s ease, border-color 0.2s ease;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.frg-accordion__chevron.is-custom .frg-accordion__chevron-icon {
|
|
150
|
+
display: none;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
&__item.is-expanded {
|
|
155
|
+
.frg-accordion__chevron-icon {
|
|
156
|
+
transform: rotate(225deg);
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.frg-accordion__chevron.is-custom {
|
|
160
|
+
transform: rotate(180deg);
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
&__panel-wrapper {
|
|
165
|
+
display: grid;
|
|
166
|
+
grid-template-rows: 0fr;
|
|
167
|
+
opacity: 0;
|
|
168
|
+
overflow: hidden;
|
|
169
|
+
background-color: $color-light;
|
|
170
|
+
|
|
171
|
+
&.is-open {
|
|
172
|
+
grid-template-rows: 1fr;
|
|
173
|
+
opacity: 1;
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
&__panel {
|
|
178
|
+
padding: 0 1rem;
|
|
179
|
+
color: $color-dark-neutral;
|
|
180
|
+
outline: none;
|
|
181
|
+
line-height: 1.5;
|
|
182
|
+
overflow: hidden;
|
|
183
|
+
opacity: 0;
|
|
184
|
+
|
|
185
|
+
&.is-open {
|
|
186
|
+
padding: 0.9rem 1rem 1rem;
|
|
187
|
+
opacity: 1;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
&:focus-visible {
|
|
191
|
+
outline: 2px solid $color-primary;
|
|
192
|
+
outline-offset: 2px;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.frg-accordion__item[data-size='medium'] {
|
|
198
|
+
.frg-accordion__header {
|
|
199
|
+
padding: 0.75rem 0.9rem;
|
|
200
|
+
gap: 0.85rem;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.frg-accordion__icon {
|
|
204
|
+
width: 2.25rem;
|
|
205
|
+
height: 2.25rem;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.frg-accordion__title {
|
|
209
|
+
font-size: $font-size-sm;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.frg-accordion__subtitle {
|
|
213
|
+
font-size: $font-size-xs;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.frg-accordion__chevron {
|
|
217
|
+
width: 1.35rem;
|
|
218
|
+
height: 1.35rem;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.frg-accordion__panel {
|
|
222
|
+
padding: 0 0.9rem;
|
|
223
|
+
|
|
224
|
+
&.is-open {
|
|
225
|
+
padding: 0.75rem 0.9rem 0.9rem;
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.frg-accordion__item[data-size='small'] {
|
|
231
|
+
.frg-accordion__header {
|
|
232
|
+
padding: 0.6rem 0.75rem;
|
|
233
|
+
gap: 0.65rem;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.frg-accordion__icon {
|
|
237
|
+
width: 2rem;
|
|
238
|
+
height: 2rem;
|
|
239
|
+
border-radius: 0.5rem;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.frg-accordion__title {
|
|
243
|
+
font-size: $font-size-xs;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.frg-accordion__subtitle {
|
|
247
|
+
font-size: $font-size-2xs;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.frg-accordion__chevron {
|
|
251
|
+
width: 1.25rem;
|
|
252
|
+
height: 1.25rem;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.frg-accordion__chevron-icon {
|
|
256
|
+
width: 0.45rem;
|
|
257
|
+
height: 0.45rem;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.frg-accordion__panel {
|
|
261
|
+
padding: 0 0.75rem;
|
|
262
|
+
|
|
263
|
+
&.is-open {
|
|
264
|
+
padding: 0.6rem 0.75rem 0.75rem;
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
$accordion-colors: (
|
|
270
|
+
'primary': $color-primary,
|
|
271
|
+
'secondary': $color-secondary,
|
|
272
|
+
'tertiary': $color-tertiary,
|
|
273
|
+
'info': $color-info,
|
|
274
|
+
'success': $color-success,
|
|
275
|
+
'warning': $color-warning,
|
|
276
|
+
'danger': $color-danger,
|
|
277
|
+
'dark': $color-dark,
|
|
278
|
+
'light': $color-light,
|
|
279
|
+
'outline-primary': $color-primary,
|
|
280
|
+
'outline-secondary': $color-secondary,
|
|
281
|
+
'outline-tertiary': $color-tertiary,
|
|
282
|
+
'outline-info': $color-info,
|
|
283
|
+
'outline-success': $color-success,
|
|
284
|
+
'outline-warning': $color-warning,
|
|
285
|
+
'outline-danger': $color-danger,
|
|
286
|
+
'outline-dark': $color-dark,
|
|
287
|
+
'outline-light': $color-light-soft,
|
|
288
|
+
'default': $color-dark-neutral
|
|
289
|
+
);
|
|
290
|
+
|
|
291
|
+
@each $variant, $tone in $accordion-colors {
|
|
292
|
+
.frg-accordion__item[data-style="#{$variant}"] {
|
|
293
|
+
$solid-variants: ('primary', 'secondary', 'tertiary', 'dark', 'light');
|
|
294
|
+
$outline-variants: (
|
|
295
|
+
'outline-primary',
|
|
296
|
+
'outline-secondary',
|
|
297
|
+
'outline-tertiary',
|
|
298
|
+
'outline-info',
|
|
299
|
+
'outline-success',
|
|
300
|
+
'outline-warning',
|
|
301
|
+
'outline-danger',
|
|
302
|
+
'outline-dark',
|
|
303
|
+
'outline-light'
|
|
304
|
+
);
|
|
305
|
+
|
|
306
|
+
@if list.index($outline-variants, $variant) {
|
|
307
|
+
border-bottom-color: color.scale($tone, $lightness: -5%);
|
|
308
|
+
|
|
309
|
+
.frg-accordion__panel-wrapper {
|
|
310
|
+
border-top-color: color.scale($tone, $lightness: -5%);
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
.frg-accordion__header {
|
|
315
|
+
@if list.index($solid-variants, $variant) {
|
|
316
|
+
$header-tone: if($variant == 'dark', color.scale($tone, $lightness: 10%), $tone);
|
|
317
|
+
background-color: $header-tone;
|
|
318
|
+
color: if($variant == 'light', $color-dark, $color-light);
|
|
319
|
+
|
|
320
|
+
&:hover {
|
|
321
|
+
background-color: color.scale($header-tone, $lightness: if($variant == 'light', -6%, -4%));
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.frg-accordion__subtitle {
|
|
325
|
+
color: if(
|
|
326
|
+
$variant == 'light',
|
|
327
|
+
color.scale($color-dark-soft, $lightness: -10%),
|
|
328
|
+
color.scale($color-light, $lightness: -8%)
|
|
329
|
+
);
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.frg-accordion__icon {
|
|
333
|
+
background-color: color.scale($header-tone, $lightness: if($variant == 'light', 8%, -8%));
|
|
334
|
+
color: if($variant == 'light', $color-dark, $color-light);
|
|
335
|
+
}
|
|
336
|
+
} @else {
|
|
337
|
+
color: if($variant == 'light', $color-dark, color.scale($tone, $lightness: -5%));
|
|
338
|
+
&:hover {
|
|
339
|
+
background-color: color.scale($tone, $lightness: 90%);
|
|
340
|
+
}
|
|
341
|
+
}
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.frg-accordion__chevron-icon {
|
|
345
|
+
@if list.index($solid-variants, $variant) {
|
|
346
|
+
border-color: if($variant == 'light', $color-dark, $color-light);
|
|
347
|
+
} @else {
|
|
348
|
+
border-color: if($variant == 'light', $color-dark-soft, color.scale($tone, $lightness: -5%));
|
|
349
|
+
}
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
&.is-expanded {
|
|
353
|
+
box-shadow: none;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
&.is-disabled {
|
|
357
|
+
border-bottom-color: $frg-accordion-border-color;
|
|
358
|
+
|
|
359
|
+
.frg-accordion__panel-wrapper {
|
|
360
|
+
border-top-color: $frg-accordion-border-color;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
.frg-accordion__header {
|
|
364
|
+
background-color: $color-light;
|
|
365
|
+
color: $color-dark;
|
|
366
|
+
|
|
367
|
+
.frg-accordion__subtitle {
|
|
368
|
+
color: $color-dark-soft;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
.frg-accordion__icon {
|
|
372
|
+
background-color: color.scale($color-light, $lightness: -6%);
|
|
373
|
+
color: $color-dark-soft;
|
|
374
|
+
}
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
.frg-accordion__chevron-icon {
|
|
378
|
+
border-color: $color-dark-soft;
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
}
|
|
382
|
+
}
|