@kato-lee/components 1.0.3
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/LICENSE +21 -0
- package/README.md +7 -0
- package/assets/_fade-in.scss +40 -0
- package/assets/_fields.scss +76 -0
- package/assets/_grids.scss +317 -0
- package/assets/components/_buttons.scss +3 -0
- package/assets/components/_cards.scss +26 -0
- package/assets/components/_dialogs.scss +13 -0
- package/assets/components/_fields.scss +110 -0
- package/assets/components/_material.scss +15 -0
- package/assets/components/_pretty-box.scss +41 -0
- package/assets/components/_scroll-bar.scss +23 -0
- package/assets/components/_snack-bar.scss +18 -0
- package/assets/components/_tables.scss +235 -0
- package/assets/components/_tabs.scss +7 -0
- package/assets/components/main.scss +25 -0
- package/assets/fonts/body/Transpass-Bold.ttf +0 -0
- package/assets/fonts/body/Transpass-Light.ttf +0 -0
- package/assets/fonts/body/Transpass-Medium.ttf +0 -0
- package/assets/fonts/body/Transpass-Regular.ttf +0 -0
- package/assets/fonts/body/style-font.scss +40 -0
- package/assets/fonts/main.scss +2 -0
- package/assets/fonts/title/Poppins-Bold.ttf +0 -0
- package/assets/fonts/title/Poppins-Light.ttf +0 -0
- package/assets/fonts/title/Poppins-Medium.ttf +0 -0
- package/assets/fonts/title/Poppins-Regular.ttf +0 -0
- package/assets/fonts/title/Poppins-SemiBold.ttf +0 -0
- package/assets/fonts/title/style-font.scss +39 -0
- package/assets/layouts/_loader.scss +71 -0
- package/assets/layouts/origin.scss +775 -0
- package/assets/main.scss +4 -0
- package/assets/material/icons/icons.woff2 +0 -0
- package/assets/material/icons/local.css +1 -0
- package/assets/material/icons/remote.css +1 -0
- package/assets/material/themes/dark.scss +55 -0
- package/assets/material/themes/default.scss +106 -0
- package/assets/material/themes/main.scss +2907 -0
- package/assets/themes/_dark.scss +15 -0
- package/assets/themes/_default.scss +30 -0
- package/assets/themes/main.scss +2 -0
- package/assets/variables.scss +7 -0
- package/box-form/box-form.component.d.ts +34 -0
- package/box-form/box-form.module.d.ts +13 -0
- package/box-form/common.d.ts +5 -0
- package/box-form/index.d.ts +3 -0
- package/box-form/package.json +3 -0
- package/capsule/capsule.component.d.ts +14 -0
- package/capsule/capsule.module.d.ts +7 -0
- package/capsule/index.d.ts +2 -0
- package/capsule/package.json +3 -0
- package/cards/cards.module.d.ts +7 -0
- package/cards/index.d.ts +2 -0
- package/cards/package.json +3 -0
- package/cards/simple-card.component.d.ts +8 -0
- package/dialogs/dialogs.module.d.ts +11 -0
- package/dialogs/dismiss-dialog-button.component.d.ts +8 -0
- package/dialogs/index.d.ts +2 -0
- package/dialogs/package.json +3 -0
- package/esm2022/box-form/box-form.component.mjs +99 -0
- package/esm2022/box-form/box-form.module.mjs +40 -0
- package/esm2022/box-form/common.mjs +2 -0
- package/esm2022/box-form/index.mjs +7 -0
- package/esm2022/box-form/kato-lee-components-box-form.mjs +5 -0
- package/esm2022/capsule/capsule.component.mjs +78 -0
- package/esm2022/capsule/capsule.module.mjs +16 -0
- package/esm2022/capsule/index.mjs +6 -0
- package/esm2022/capsule/kato-lee-components-capsule.mjs +5 -0
- package/esm2022/cards/cards.module.mjs +17 -0
- package/esm2022/cards/index.mjs +6 -0
- package/esm2022/cards/kato-lee-components-cards.mjs +5 -0
- package/esm2022/cards/simple-card.component.mjs +47 -0
- package/esm2022/dialogs/dialogs.module.mjs +22 -0
- package/esm2022/dialogs/dismiss-dialog-button.component.mjs +44 -0
- package/esm2022/dialogs/index.mjs +6 -0
- package/esm2022/dialogs/kato-lee-components-dialogs.mjs +5 -0
- package/esm2022/fields/autocomplete-field/autocomplete-field.component.mjs +240 -0
- package/esm2022/fields/date-field/date-field.component.mjs +148 -0
- package/esm2022/fields/date-range-field/date-range-field.component.mjs +70 -0
- package/esm2022/fields/error/error-equals.pipe.mjs +19 -0
- package/esm2022/fields/error/error.component.mjs +55 -0
- package/esm2022/fields/error/error.module.mjs +21 -0
- package/esm2022/fields/error/error.msg.pipe.mjs +19 -0
- package/esm2022/fields/error/lang/_en.mjs +12 -0
- package/esm2022/fields/error/lang/_es.mjs +12 -0
- package/esm2022/fields/error/lang/index.mjs +3 -0
- package/esm2022/fields/fields.common.mjs +8 -0
- package/esm2022/fields/fields.module.mjs +118 -0
- package/esm2022/fields/general-field/general-field.component.mjs +188 -0
- package/esm2022/fields/index.mjs +17 -0
- package/esm2022/fields/kato-lee-components-fields.mjs +5 -0
- package/esm2022/fields/money-field/money-field.component.mjs +188 -0
- package/esm2022/fields/number-field/number-field.component.mjs +165 -0
- package/esm2022/fields/select-field/select-field.component.mjs +135 -0
- package/esm2022/fields/text-area/textarea.component.mjs +171 -0
- package/esm2022/index.mjs +2 -0
- package/esm2022/kato-lee-components.mjs +5 -0
- package/esm2022/layouts/origin/breadcrumb/breadcrumb.component.mjs +65 -0
- package/esm2022/layouts/origin/footer/footer.component.mjs +11 -0
- package/esm2022/layouts/origin/header/header.component.mjs +46 -0
- package/esm2022/layouts/origin/index.mjs +12 -0
- package/esm2022/layouts/origin/kato-lee-components-layouts-origin.mjs +5 -0
- package/esm2022/layouts/origin/layout.component.mjs +210 -0
- package/esm2022/layouts/origin/layout.module.mjs +52 -0
- package/esm2022/layouts/origin/layout.navigation.mjs +19 -0
- package/esm2022/layouts/origin/navigation-interfaces.mjs +2 -0
- package/esm2022/layouts/origin/services/index.mjs +4 -0
- package/esm2022/layouts/origin/services/route-parts.service.mjs +28 -0
- package/esm2022/layouts/origin/services/toggle-sidebar.mjs +48 -0
- package/esm2022/layouts/origin/services/validate-access.pipe.mjs +53 -0
- package/esm2022/layouts/origin/sidebar/sidebar.component.mjs +69 -0
- package/esm2022/layouts/origin/sidebar/sidenav/expansion/accordion.component.mjs +74 -0
- package/esm2022/layouts/origin/sidebar/sidenav/expansion/expansion-panel-header.component.mjs +51 -0
- package/esm2022/layouts/origin/sidebar/sidenav/expansion/expansion-panel.component.mjs +63 -0
- package/esm2022/layouts/origin/sidebar/sidenav/sidenav.component.mjs +130 -0
- package/esm2022/modal/config.mjs +2 -0
- package/esm2022/modal/index.mjs +8 -0
- package/esm2022/modal/kato-lee-components-modal.mjs +5 -0
- package/esm2022/modal/modal.component.mjs +63 -0
- package/esm2022/modal/modal.module.mjs +21 -0
- package/esm2022/modal/modal.service.mjs +33 -0
- package/esm2022/pretty-box/index.mjs +5 -0
- package/esm2022/pretty-box/kato-lee-components-pretty-box.mjs +5 -0
- package/esm2022/pretty-box/pretty-box.component.mjs +94 -0
- package/esm2022/tables/index.mjs +6 -0
- package/esm2022/tables/kato-lee-components-tables.mjs +5 -0
- package/esm2022/tables/mat-paginator.translation.mjs +22 -0
- package/esm2022/tables/tables.module.mjs +19 -0
- package/esm2022/toast/index.mjs +5 -0
- package/esm2022/toast/kato-lee-components-toast.mjs +5 -0
- package/esm2022/toast/toast.service.mjs +42 -0
- package/fesm2022/kato-lee-components-box-form.mjs +146 -0
- package/fesm2022/kato-lee-components-box-form.mjs.map +1 -0
- package/fesm2022/kato-lee-components-capsule.mjs +102 -0
- package/fesm2022/kato-lee-components-capsule.mjs.map +1 -0
- package/fesm2022/kato-lee-components-cards.mjs +72 -0
- package/fesm2022/kato-lee-components-cards.mjs.map +1 -0
- package/fesm2022/kato-lee-components-dialogs.mjs +74 -0
- package/fesm2022/kato-lee-components-dialogs.mjs.map +1 -0
- package/fesm2022/kato-lee-components-fields.mjs +1486 -0
- package/fesm2022/kato-lee-components-fields.mjs.map +1 -0
- package/fesm2022/kato-lee-components-layouts-origin.mjs +872 -0
- package/fesm2022/kato-lee-components-layouts-origin.mjs.map +1 -0
- package/fesm2022/kato-lee-components-modal.mjs +121 -0
- package/fesm2022/kato-lee-components-modal.mjs.map +1 -0
- package/fesm2022/kato-lee-components-pretty-box.mjs +105 -0
- package/fesm2022/kato-lee-components-pretty-box.mjs.map +1 -0
- package/fesm2022/kato-lee-components-tables.mjs +51 -0
- package/fesm2022/kato-lee-components-tables.mjs.map +1 -0
- package/fesm2022/kato-lee-components-toast.mjs +53 -0
- package/fesm2022/kato-lee-components-toast.mjs.map +1 -0
- package/fesm2022/kato-lee-components.mjs +4 -0
- package/fesm2022/kato-lee-components.mjs.map +1 -0
- package/fields/autocomplete-field/autocomplete-field.component.d.ts +65 -0
- package/fields/date-field/date-field.component.d.ts +46 -0
- package/fields/date-range-field/date-range-field.component.d.ts +23 -0
- package/fields/error/error-equals.pipe.d.ts +7 -0
- package/fields/error/error.component.d.ts +22 -0
- package/fields/error/error.module.d.ts +11 -0
- package/fields/error/error.msg.pipe.d.ts +7 -0
- package/fields/error/lang/_en.d.ts +1 -0
- package/fields/error/lang/_es.d.ts +1 -0
- package/fields/error/lang/index.d.ts +2 -0
- package/fields/fields.common.d.ts +5 -0
- package/fields/fields.module.d.ts +28 -0
- package/fields/general-field/general-field.component.d.ts +56 -0
- package/fields/index.d.ts +13 -0
- package/fields/money-field/money-field.component.d.ts +53 -0
- package/fields/number-field/number-field.component.d.ts +52 -0
- package/fields/package.json +3 -0
- package/fields/select-field/select-field.component.d.ts +44 -0
- package/fields/text-area/textarea.component.d.ts +55 -0
- package/index.d.ts +1 -0
- package/layouts/origin/breadcrumb/breadcrumb.component.d.ts +24 -0
- package/layouts/origin/footer/footer.component.d.ts +5 -0
- package/layouts/origin/header/header.component.d.ts +15 -0
- package/layouts/origin/index.d.ts +8 -0
- package/layouts/origin/layout.component.d.ts +58 -0
- package/layouts/origin/layout.module.d.ts +18 -0
- package/layouts/origin/layout.navigation.d.ts +10 -0
- package/layouts/origin/navigation-interfaces.d.ts +24 -0
- package/layouts/origin/package.json +3 -0
- package/layouts/origin/services/index.d.ts +3 -0
- package/layouts/origin/services/route-parts.service.d.ts +15 -0
- package/layouts/origin/services/toggle-sidebar.d.ts +10 -0
- package/layouts/origin/services/validate-access.pipe.d.ts +7 -0
- package/layouts/origin/sidebar/sidebar.component.d.ts +27 -0
- package/layouts/origin/sidebar/sidenav/expansion/accordion.component.d.ts +10 -0
- package/layouts/origin/sidebar/sidenav/expansion/expansion-panel-header.component.d.ts +11 -0
- package/layouts/origin/sidebar/sidenav/expansion/expansion-panel.component.d.ts +12 -0
- package/layouts/origin/sidebar/sidenav/sidenav.component.d.ts +23 -0
- package/modal/config.d.ts +9 -0
- package/modal/index.d.ts +4 -0
- package/modal/modal.component.d.ts +35 -0
- package/modal/modal.module.d.ts +11 -0
- package/modal/modal.service.d.ts +13 -0
- package/modal/package.json +3 -0
- package/package.json +82 -0
- package/pretty-box/index.d.ts +1 -0
- package/pretty-box/package.json +3 -0
- package/pretty-box/pretty-box.component.d.ts +24 -0
- package/tables/index.d.ts +2 -0
- package/tables/mat-paginator.translation.d.ts +2 -0
- package/tables/package.json +3 -0
- package/tables/tables.module.d.ts +9 -0
- package/toast/index.d.ts +1 -0
- package/toast/package.json +3 -0
- package/toast/toast.service.d.ts +21 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
.tak-snackbar-danger {
|
|
2
|
+
.mat-button.mat-snack-bar-action:not(:disabled) {
|
|
3
|
+
color: var(--tak-snackbar-danger-action-color) !important;
|
|
4
|
+
}
|
|
5
|
+
.mat-snackbar__surface {
|
|
6
|
+
color: var(--tak-snackbar-danger-color) !important;
|
|
7
|
+
background-color: var(--tak-snackbar-danger-background-color) !important;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
.tak-snackbar-success {
|
|
11
|
+
.mat-button.mat-snack-bar-action:not(:disabled) {
|
|
12
|
+
color: var(--tak-snackbar-success-action-color) !important;
|
|
13
|
+
}
|
|
14
|
+
.mat-snackbar__surface {
|
|
15
|
+
color: var(--tak-snackbar-success-color) !important;
|
|
16
|
+
background-color: var(--tak-snackbar-success-background-color) !important;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1,235 @@
|
|
|
1
|
+
$TAK_TABLE_PAGINATOR_HEIGHT: 56px;
|
|
2
|
+
$TAK_TABLE_HEADER_HEIGHT: 70px;
|
|
3
|
+
$TAK_TABLE_BORDER_RADIUS: 10px;
|
|
4
|
+
|
|
5
|
+
.mat-paginator-range-label {
|
|
6
|
+
color: var(--tak-paginator-range-label-color);
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.tak-cell__subcontent {
|
|
10
|
+
color: var(--tak-table-row-subcontent-color);
|
|
11
|
+
&::before {
|
|
12
|
+
content: '\A';
|
|
13
|
+
white-space: pre;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.tak-table {
|
|
18
|
+
&__container {
|
|
19
|
+
box-shadow: var(--tak-table-container-box-shadow);
|
|
20
|
+
border: 1px solid var(--tak-table-container-border-color);
|
|
21
|
+
border-radius: $TAK_TABLE_BORDER_RADIUS;
|
|
22
|
+
}
|
|
23
|
+
&__header {
|
|
24
|
+
display: flex;
|
|
25
|
+
align-items: center;
|
|
26
|
+
justify-content: space-between;
|
|
27
|
+
font-family: Roboto, sans-serif;
|
|
28
|
+
&--left {
|
|
29
|
+
padding: 10px;
|
|
30
|
+
overflow: hidden;
|
|
31
|
+
text-overflow: ellipsis;
|
|
32
|
+
white-space: nowrap;
|
|
33
|
+
& > .tak-table-title {
|
|
34
|
+
font-size: 16px;
|
|
35
|
+
font-weight: bolder;
|
|
36
|
+
}
|
|
37
|
+
& > .tak-table-subtitle {
|
|
38
|
+
font-size: 13px;
|
|
39
|
+
font-weight: bolder;
|
|
40
|
+
&::before {
|
|
41
|
+
content: '\A';
|
|
42
|
+
white-space: pre;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
&--right {
|
|
47
|
+
white-space: nowrap;
|
|
48
|
+
display: flex;
|
|
49
|
+
}
|
|
50
|
+
color: var(--tak-table-header-color);
|
|
51
|
+
height: $TAK_TABLE_HEADER_HEIGHT;
|
|
52
|
+
border-top-left-radius: $TAK_TABLE_BORDER_RADIUS;
|
|
53
|
+
border-top-right-radius: $TAK_TABLE_BORDER_RADIUS;
|
|
54
|
+
background-color: var(--tak-table-header-background-color);
|
|
55
|
+
~ .tak-table__sub-header {
|
|
56
|
+
~ .tak-table__content {
|
|
57
|
+
border-top-left-radius: 0px;
|
|
58
|
+
border-top-right-radius: 0px;
|
|
59
|
+
max-height: calc(
|
|
60
|
+
100vh -
|
|
61
|
+
(
|
|
62
|
+
(
|
|
63
|
+
var(--tak-header-height) + var(--tak-footer-height) +
|
|
64
|
+
(var(--tak-layout-outlet-padding) * 2)
|
|
65
|
+
) + $TAK_TABLE_PAGINATOR_HEIGHT + $TAK_TABLE_HEADER_HEIGHT + 4px
|
|
66
|
+
)
|
|
67
|
+
);
|
|
68
|
+
&.paginator-bottom {
|
|
69
|
+
max-height: calc(
|
|
70
|
+
100vh -
|
|
71
|
+
(
|
|
72
|
+
(
|
|
73
|
+
var(--tak-header-height) + var(--tak-footer-height) +
|
|
74
|
+
(var(--tak-layout-outlet-padding) * 2)
|
|
75
|
+
) + $TAK_TABLE_PAGINATOR_HEIGHT + $TAK_TABLE_HEADER_HEIGHT +
|
|
76
|
+
$TAK_TABLE_PAGINATOR_HEIGHT + 4px
|
|
77
|
+
)
|
|
78
|
+
);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
~ .tak-table__paginator ~ .tak-table__content {
|
|
83
|
+
border-top-left-radius: 0px;
|
|
84
|
+
border-top-right-radius: 0px;
|
|
85
|
+
max-height: calc(
|
|
86
|
+
100vh -
|
|
87
|
+
(
|
|
88
|
+
(
|
|
89
|
+
var(--tak-header-height) + var(--tak-footer-height) +
|
|
90
|
+
(var(--tak-layout-outlet-padding) * 2)
|
|
91
|
+
) + $TAK_TABLE_PAGINATOR_HEIGHT + $TAK_TABLE_HEADER_HEIGHT +
|
|
92
|
+
$TAK_TABLE_PAGINATOR_HEIGHT + 4px
|
|
93
|
+
)
|
|
94
|
+
);
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
~ .tak-table__content {
|
|
99
|
+
border-top-left-radius: 0px;
|
|
100
|
+
border-top-right-radius: 0px;
|
|
101
|
+
max-height: calc(
|
|
102
|
+
100vh -
|
|
103
|
+
(
|
|
104
|
+
(
|
|
105
|
+
var(--tak-header-height) + var(--tak-footer-height) +
|
|
106
|
+
(var(--tak-layout-outlet-padding) * 2)
|
|
107
|
+
) + $TAK_TABLE_HEADER_HEIGHT + 4px
|
|
108
|
+
)
|
|
109
|
+
);
|
|
110
|
+
&.paginator-bottom {
|
|
111
|
+
max-height: calc(
|
|
112
|
+
100vh -
|
|
113
|
+
(
|
|
114
|
+
(
|
|
115
|
+
var(--tak-header-height) + var(--tak-footer-height) +
|
|
116
|
+
(var(--tak-layout-outlet-padding) * 2)
|
|
117
|
+
) + $TAK_TABLE_PAGINATOR_HEIGHT + $TAK_TABLE_HEADER_HEIGHT + 4px
|
|
118
|
+
)
|
|
119
|
+
);
|
|
120
|
+
}
|
|
121
|
+
~ .tak-table__paginator {
|
|
122
|
+
border-top-left-radius: 0px;
|
|
123
|
+
border-top-right-radius: 0px;
|
|
124
|
+
border-bottom-left-radius: $TAK_TABLE_BORDER_RADIUS;
|
|
125
|
+
border-bottom-right-radius: $TAK_TABLE_BORDER_RADIUS;
|
|
126
|
+
& > mat-paginator {
|
|
127
|
+
border-top-left-radius: 0px;
|
|
128
|
+
border-top-right-radius: 0px;
|
|
129
|
+
border-bottom-left-radius: $TAK_TABLE_BORDER_RADIUS;
|
|
130
|
+
border-bottom-right-radius: $TAK_TABLE_BORDER_RADIUS;
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
~ .tak-table__paginator {
|
|
135
|
+
border-top-left-radius: 0px;
|
|
136
|
+
border-top-right-radius: 0px;
|
|
137
|
+
}
|
|
138
|
+
~ .tak-table__paginator ~ .tak-table__content {
|
|
139
|
+
border-top-left-radius: 0px;
|
|
140
|
+
border-top-right-radius: 0px;
|
|
141
|
+
max-height: calc(
|
|
142
|
+
100vh -
|
|
143
|
+
(
|
|
144
|
+
(
|
|
145
|
+
var(--tak-header-height) + var(--tak-footer-height) +
|
|
146
|
+
(var(--tak-layout-outlet-padding) * 2)
|
|
147
|
+
) + $TAK_TABLE_PAGINATOR_HEIGHT + $TAK_TABLE_HEADER_HEIGHT + 4px
|
|
148
|
+
)
|
|
149
|
+
);
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
&__sub-header {
|
|
153
|
+
font-family: Roboto, sans-serif;
|
|
154
|
+
height: $TAK_TABLE_PAGINATOR_HEIGHT;
|
|
155
|
+
background-color: var(--tak-paginator-container-background-color);
|
|
156
|
+
}
|
|
157
|
+
&__paginator {
|
|
158
|
+
display: flex;
|
|
159
|
+
justify-content: space-between;
|
|
160
|
+
background-color: var(--tak-paginator-container-background-color);
|
|
161
|
+
align-items: center;
|
|
162
|
+
border-top-left-radius: $TAK_TABLE_BORDER_RADIUS;
|
|
163
|
+
border-top-right-radius: $TAK_TABLE_BORDER_RADIUS;
|
|
164
|
+
& > mat-paginator {
|
|
165
|
+
border-top-left-radius: $TAK_TABLE_BORDER_RADIUS;
|
|
166
|
+
border-top-right-radius: $TAK_TABLE_BORDER_RADIUS;
|
|
167
|
+
}
|
|
168
|
+
~ .tak-table__content {
|
|
169
|
+
border-top-left-radius: 0px;
|
|
170
|
+
border-top-right-radius: 0px;
|
|
171
|
+
max-height: calc(
|
|
172
|
+
100vh -
|
|
173
|
+
(
|
|
174
|
+
(
|
|
175
|
+
var(--tak-header-height) + var(--tak-footer-height) +
|
|
176
|
+
(var(--tak-layout-outlet-padding) * 2)
|
|
177
|
+
) + $TAK_TABLE_PAGINATOR_HEIGHT + 4px
|
|
178
|
+
)
|
|
179
|
+
);
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
&__content {
|
|
183
|
+
border-radius: $TAK_TABLE_BORDER_RADIUS;
|
|
184
|
+
&.paginator-bottom {
|
|
185
|
+
border-bottom-left-radius: 0px;
|
|
186
|
+
border-bottom-right-radius: 0px;
|
|
187
|
+
max-height: calc(
|
|
188
|
+
100vh -
|
|
189
|
+
(
|
|
190
|
+
(
|
|
191
|
+
var(--tak-header-height) + var(--tak-footer-height) +
|
|
192
|
+
(var(--tak-layout-outlet-padding) * 2)
|
|
193
|
+
) + $TAK_TABLE_PAGINATOR_HEIGHT + 4px
|
|
194
|
+
)
|
|
195
|
+
);
|
|
196
|
+
}
|
|
197
|
+
overflow: auto;
|
|
198
|
+
max-height: calc(
|
|
199
|
+
100vh -
|
|
200
|
+
(
|
|
201
|
+
(
|
|
202
|
+
var(--tak-header-height) + var(--tak-footer-height) +
|
|
203
|
+
(var(--tak-layout-outlet-padding) * 2)
|
|
204
|
+
) + 2px
|
|
205
|
+
)
|
|
206
|
+
);
|
|
207
|
+
table {
|
|
208
|
+
width: 100%;
|
|
209
|
+
.mat-row {
|
|
210
|
+
height: 30px;
|
|
211
|
+
}
|
|
212
|
+
[mat-row].unbordered .mat-cell {
|
|
213
|
+
border: none;
|
|
214
|
+
}
|
|
215
|
+
[mat-row].selectable {
|
|
216
|
+
&:hover {
|
|
217
|
+
background-color: var(--tak-table-selectable-hover-color);
|
|
218
|
+
cursor: pointer;
|
|
219
|
+
transition: ease 0.3s;
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
&,
|
|
224
|
+
table {
|
|
225
|
+
border-radius: $TAK_TABLE_BORDER_RADIUS;
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
&-expandible-row {
|
|
229
|
+
height: 0px !important;
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.mat-paginator .mat-paginator-outer-container {
|
|
234
|
+
border: none;
|
|
235
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
@import 'buttons';
|
|
2
|
+
@import 'cards';
|
|
3
|
+
@import 'dialogs';
|
|
4
|
+
@import 'fields';
|
|
5
|
+
@import 'material';
|
|
6
|
+
@import 'pretty-box';
|
|
7
|
+
@import 'scroll-bar';
|
|
8
|
+
@import 'snack-bar';
|
|
9
|
+
@import 'tables';
|
|
10
|
+
@import 'tabs';
|
|
11
|
+
|
|
12
|
+
.cdk-overlay-dark-backdrop {
|
|
13
|
+
backdrop-filter: blur(3px);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.mat-menu-panel {
|
|
17
|
+
color: var(--tak-layout-dark-color);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled='true']),
|
|
21
|
+
.mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled='true']),
|
|
22
|
+
.mat-expansion-panel:not(.mat-expanded)
|
|
23
|
+
.mat-expansion-panel-header:hover:not([aria-disabled='true']) {
|
|
24
|
+
background: transparent;
|
|
25
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* StyleFont: Body Commerce
|
|
3
|
+
* development: Daniel Andres Castillo Pedroza
|
|
4
|
+
* https://material.softtion.com.co
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
@font-face {
|
|
8
|
+
font-family: 'bodycommerce';
|
|
9
|
+
font-style: normal;
|
|
10
|
+
font-weight: 300;
|
|
11
|
+
src: url('Transpass-Light.ttf') format('truetype');
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
@font-face {
|
|
15
|
+
font-family: 'bodycommerce';
|
|
16
|
+
font-style: normal;
|
|
17
|
+
font-weight: 400;
|
|
18
|
+
src: url('Transpass-Regular.ttf') format('truetype');
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
@font-face {
|
|
22
|
+
font-family: 'bodycommerce';
|
|
23
|
+
font-style: normal;
|
|
24
|
+
font-weight: 500;
|
|
25
|
+
src: url('Transpass-Medium.ttf') format('truetype');
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
@font-face {
|
|
29
|
+
font-family: 'bodycommerce';
|
|
30
|
+
font-style: normal;
|
|
31
|
+
font-weight: 600;
|
|
32
|
+
src: url('Transpass-Bold.ttf') format('truetype');
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
@font-face {
|
|
36
|
+
font-family: 'bodycommerce';
|
|
37
|
+
font-style: normal;
|
|
38
|
+
font-weight: 700;
|
|
39
|
+
src: url('Transpass-Bold.ttf') format('truetype');
|
|
40
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* StyleFont: Title Commerce
|
|
3
|
+
* development: Daniel Andres Castillo Pedroza
|
|
4
|
+
* https://material.softtion.com.co
|
|
5
|
+
*/
|
|
6
|
+
@font-face {
|
|
7
|
+
font-family: 'titlecommerce';
|
|
8
|
+
font-style: normal;
|
|
9
|
+
font-weight: 300;
|
|
10
|
+
src: url('Poppins-Light.ttf') format('truetype');
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
@font-face {
|
|
14
|
+
font-family: 'titlecommerce';
|
|
15
|
+
font-style: normal;
|
|
16
|
+
font-weight: 400;
|
|
17
|
+
src: url('Poppins-Regular.ttf') format('truetype');
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
@font-face {
|
|
21
|
+
font-family: 'titlecommerce';
|
|
22
|
+
font-style: normal;
|
|
23
|
+
font-weight: 500;
|
|
24
|
+
src: url('Poppins-Medium.ttf') format('truetype');
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
@font-face {
|
|
28
|
+
font-family: 'titlecommerce';
|
|
29
|
+
font-style: normal;
|
|
30
|
+
font-weight: 600;
|
|
31
|
+
src: url('Poppins-SemiBold.ttf') format('truetype');
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
@font-face {
|
|
35
|
+
font-family: 'titlecommerce';
|
|
36
|
+
font-style: normal;
|
|
37
|
+
font-weight: 700;
|
|
38
|
+
src: url('Poppins-Bold.ttf') format('truetype');
|
|
39
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
.tak-double-bounce1 {
|
|
2
|
+
background: var(--tak-loader-double-bounce1);
|
|
3
|
+
}
|
|
4
|
+
.tak-double-bounce2 {
|
|
5
|
+
background: var(--tak-loader-double-bounce2);
|
|
6
|
+
}
|
|
7
|
+
.tak-double-bounce1,
|
|
8
|
+
.tak-double-bounce2 {
|
|
9
|
+
width: 100%;
|
|
10
|
+
height: 100%;
|
|
11
|
+
border-radius: 50%;
|
|
12
|
+
opacity: 0.6;
|
|
13
|
+
position: absolute;
|
|
14
|
+
top: 0;
|
|
15
|
+
left: 0;
|
|
16
|
+
animation: takSkBounce 2s infinite ease-in-out;
|
|
17
|
+
}
|
|
18
|
+
.tak-double-bounce2 {
|
|
19
|
+
animation-delay: -1s;
|
|
20
|
+
}
|
|
21
|
+
.tak-app-loader,
|
|
22
|
+
.tak-view-loader {
|
|
23
|
+
height: 100%;
|
|
24
|
+
width: 100%;
|
|
25
|
+
position: absolute;
|
|
26
|
+
top: 0;
|
|
27
|
+
left: 0;
|
|
28
|
+
display: flex;
|
|
29
|
+
align-items: center;
|
|
30
|
+
}
|
|
31
|
+
.tak-loader-spinner {
|
|
32
|
+
width: 40px;
|
|
33
|
+
height: 40px;
|
|
34
|
+
position: relative;
|
|
35
|
+
margin: auto;
|
|
36
|
+
}
|
|
37
|
+
.tak-double-bounce2 {
|
|
38
|
+
-webkit-animation-delay: -1s;
|
|
39
|
+
animation-delay: -1s;
|
|
40
|
+
}
|
|
41
|
+
.tak-view-loader {
|
|
42
|
+
display: block;
|
|
43
|
+
background: var(--tak-loader-overlay-backdrop-background-color);
|
|
44
|
+
z-index: 998;
|
|
45
|
+
max-height: calc(100vh);
|
|
46
|
+
margin: auto;
|
|
47
|
+
display: flex;
|
|
48
|
+
}
|
|
49
|
+
.tak-view-loader * {
|
|
50
|
+
margin: auto;
|
|
51
|
+
}
|
|
52
|
+
@-webkit-keyframes takSkBounce {
|
|
53
|
+
0%,
|
|
54
|
+
100% {
|
|
55
|
+
-webkit-transform: scale(0);
|
|
56
|
+
}
|
|
57
|
+
50% {
|
|
58
|
+
-webkit-transform: scale(1);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
@keyframes takSkBounce {
|
|
62
|
+
0%,
|
|
63
|
+
100% {
|
|
64
|
+
transform: scale(0);
|
|
65
|
+
-webkit-transform: scale(0);
|
|
66
|
+
}
|
|
67
|
+
50% {
|
|
68
|
+
transform: scale(1);
|
|
69
|
+
-webkit-transform: scale(1);
|
|
70
|
+
}
|
|
71
|
+
}
|