@kato-lee/components 1.0.8 → 1.1.0
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/assets/_grids.scss +5 -5
- package/assets/fonts/fonts.scss +11 -0
- package/assets/themes/_default.scss +0 -1
- package/box-form/{box-form.component.d.ts → component.d.ts} +2 -2
- package/box-form/index.d.ts +2 -2
- package/box-form/module.d.ts +8 -0
- package/capsule/{capsule.component.d.ts → component.d.ts} +1 -1
- package/capsule/index.d.ts +2 -2
- package/capsule/{capsule.module.d.ts → module.d.ts} +3 -2
- package/cards/{simple-card.component.d.ts → component.d.ts} +1 -1
- package/cards/index.d.ts +2 -2
- package/cards/{cards.module.d.ts → module.d.ts} +3 -2
- package/dialogs/dismiss-dialog-button.component.d.ts +1 -1
- package/dialogs/index.d.ts +1 -1
- package/dialogs/module.d.ts +9 -0
- package/esm2022/box-form/component.mjs +112 -0
- package/esm2022/box-form/index.mjs +3 -3
- package/esm2022/box-form/module.mjs +17 -0
- package/esm2022/capsule/component.mjs +78 -0
- package/esm2022/capsule/index.mjs +3 -3
- package/esm2022/capsule/module.mjs +17 -0
- package/esm2022/cards/component.mjs +48 -0
- package/esm2022/cards/index.mjs +3 -3
- package/esm2022/cards/module.mjs +18 -0
- package/esm2022/dialogs/dismiss-dialog-button.component.mjs +14 -12
- package/esm2022/dialogs/index.mjs +2 -2
- package/esm2022/dialogs/module.mjs +19 -0
- package/esm2022/fields/autocomplete/component.mjs +259 -0
- package/esm2022/fields/autocomplete/index.mjs +2 -0
- package/esm2022/fields/common.mjs +11 -0
- package/esm2022/fields/date/component.mjs +163 -0
- package/esm2022/fields/date/index.mjs +2 -0
- package/esm2022/fields/date-range/component.mjs +85 -0
- package/esm2022/fields/date-range/index.mjs +2 -0
- package/esm2022/fields/error/component.mjs +57 -0
- package/esm2022/fields/error/error-equals.pipe.mjs +3 -3
- package/esm2022/fields/error/error.msg.pipe.mjs +3 -3
- package/esm2022/fields/general/component.mjs +202 -0
- package/esm2022/fields/general/index.mjs +2 -0
- package/esm2022/fields/index.mjs +14 -14
- package/esm2022/fields/module.mjs +82 -0
- package/esm2022/fields/money/component.mjs +202 -0
- package/esm2022/fields/money/index.mjs +2 -0
- package/esm2022/fields/number/component.mjs +179 -0
- package/esm2022/fields/number/index.mjs +2 -0
- package/esm2022/fields/remote-autocomplete/component.mjs +188 -0
- package/esm2022/fields/remote-autocomplete/index.mjs +2 -0
- package/esm2022/fields/select/component.mjs +158 -0
- package/esm2022/fields/select/index.mjs +2 -0
- package/esm2022/fields/text-area/component.mjs +186 -0
- package/esm2022/fields/validators.mjs +11 -0
- package/esm2022/modal/component.mjs +66 -0
- package/esm2022/modal/index.mjs +4 -4
- package/esm2022/modal/module.mjs +17 -0
- package/esm2022/modal/service.mjs +33 -0
- package/esm2022/pretty-box/component.mjs +94 -0
- package/esm2022/pretty-box/index.mjs +2 -2
- package/esm2022/tables/index.mjs +2 -2
- package/esm2022/tables/module.mjs +23 -0
- package/esm2022/toast/index.mjs +2 -2
- package/esm2022/toast/service.mjs +42 -0
- package/fesm2022/kato-lee-components-box-form.mjs +19 -29
- package/fesm2022/kato-lee-components-box-form.mjs.map +1 -1
- package/fesm2022/kato-lee-components-capsule.mjs +5 -4
- package/fesm2022/kato-lee-components-capsule.mjs.map +1 -1
- package/fesm2022/kato-lee-components-cards.mjs +7 -5
- package/fesm2022/kato-lee-components-cards.mjs.map +1 -1
- package/fesm2022/kato-lee-components-dialogs.mjs +16 -18
- package/fesm2022/kato-lee-components-dialogs.mjs.map +1 -1
- package/fesm2022/kato-lee-components-fields.mjs +135 -106
- package/fesm2022/kato-lee-components-fields.mjs.map +1 -1
- package/fesm2022/kato-lee-components-modal.mjs +9 -10
- package/fesm2022/kato-lee-components-modal.mjs.map +1 -1
- package/fesm2022/kato-lee-components-pretty-box.mjs +6 -6
- package/fesm2022/kato-lee-components-pretty-box.mjs.map +1 -1
- package/fesm2022/kato-lee-components-tables.mjs +1 -0
- package/fesm2022/kato-lee-components-tables.mjs.map +1 -1
- package/fesm2022/kato-lee-components-toast.mjs.map +1 -1
- package/fields/{autocomplete-field/autocomplete-field.component.d.ts → autocomplete/component.d.ts} +2 -2
- package/fields/autocomplete/index.d.ts +1 -0
- package/fields/{date-field/date-field.component.d.ts → date/component.d.ts} +2 -2
- package/fields/date/index.d.ts +1 -0
- package/fields/{date-range-field/date-range-field.component.d.ts → date-range/component.d.ts} +2 -2
- package/fields/date-range/index.d.ts +1 -0
- package/fields/error/{error.component.d.ts → component.d.ts} +1 -1
- package/fields/error/error-equals.pipe.d.ts +1 -1
- package/fields/error/error.msg.pipe.d.ts +1 -1
- package/fields/{general-field/general-field.component.d.ts → general/component.d.ts} +2 -2
- package/fields/general/index.d.ts +1 -0
- package/fields/index.d.ts +13 -13
- package/fields/module.d.ts +19 -0
- package/fields/{money-field/money-field.component.d.ts → money/component.d.ts} +1 -1
- package/fields/money/index.d.ts +1 -0
- package/fields/{number-field/number-field.component.d.ts → number/component.d.ts} +1 -1
- package/fields/number/index.d.ts +1 -0
- package/fields/remote-autocomplete/index.d.ts +1 -0
- package/fields/{select-field/select-field.component.d.ts → select/component.d.ts} +2 -2
- package/fields/select/index.d.ts +1 -0
- package/fields/text-area/{textarea.component.d.ts → component.d.ts} +1 -1
- package/modal/{modal.component.d.ts → component.d.ts} +1 -1
- package/modal/index.d.ts +3 -3
- package/modal/module.d.ts +8 -0
- package/package.json +11 -17
- package/pretty-box/component.d.ts +24 -0
- package/pretty-box/index.d.ts +1 -1
- package/tables/index.d.ts +1 -1
- package/tables/{tables.module.d.ts → module.d.ts} +1 -0
- package/toast/index.d.ts +1 -1
- 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 +0 -40
- package/assets/fonts/main.scss +0 -18
- 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 +0 -39
- package/assets/layouts/_loader.scss +0 -71
- package/assets/layouts/origin.scss +0 -776
- package/box-form/box-form.module.d.ts +0 -13
- package/dialogs/dialogs.module.d.ts +0 -11
- package/esm2022/box-form/box-form.component.mjs +0 -99
- package/esm2022/box-form/box-form.module.mjs +0 -40
- package/esm2022/capsule/capsule.component.mjs +0 -78
- package/esm2022/capsule/capsule.module.mjs +0 -16
- package/esm2022/cards/cards.module.mjs +0 -17
- package/esm2022/cards/simple-card.component.mjs +0 -47
- package/esm2022/dialogs/dialogs.module.mjs +0 -22
- package/esm2022/fields/autocomplete-field/autocomplete-field.component.mjs +0 -240
- package/esm2022/fields/date-field/date-field.component.mjs +0 -148
- package/esm2022/fields/date-range-field/date-range-field.component.mjs +0 -70
- package/esm2022/fields/error/error.component.mjs +0 -55
- package/esm2022/fields/error/error.module.mjs +0 -21
- package/esm2022/fields/fields.common.mjs +0 -11
- package/esm2022/fields/fields.module.mjs +0 -128
- package/esm2022/fields/fields.validators.mjs +0 -11
- package/esm2022/fields/general-field/general-field.component.mjs +0 -188
- package/esm2022/fields/money-field/money-field.component.mjs +0 -188
- package/esm2022/fields/number-field/number-field.component.mjs +0 -165
- package/esm2022/fields/remote-autocomplete-field/remote-autocomplete-field.component.mjs +0 -188
- package/esm2022/fields/select-field/select-field.component.mjs +0 -135
- package/esm2022/fields/text-area/textarea.component.mjs +0 -171
- package/esm2022/layouts/origin/breadcrumb/breadcrumb.component.mjs +0 -65
- package/esm2022/layouts/origin/footer/footer.component.mjs +0 -11
- package/esm2022/layouts/origin/header/header.component.mjs +0 -46
- package/esm2022/layouts/origin/index.mjs +0 -12
- package/esm2022/layouts/origin/kato-lee-components-layouts-origin.mjs +0 -5
- package/esm2022/layouts/origin/layout.component.mjs +0 -210
- package/esm2022/layouts/origin/layout.module.mjs +0 -52
- package/esm2022/layouts/origin/layout.navigation.mjs +0 -19
- package/esm2022/layouts/origin/navigation-interfaces.mjs +0 -2
- package/esm2022/layouts/origin/services/index.mjs +0 -4
- package/esm2022/layouts/origin/services/route-parts.service.mjs +0 -28
- package/esm2022/layouts/origin/services/toggle-sidebar.mjs +0 -48
- package/esm2022/layouts/origin/services/validate-access.pipe.mjs +0 -53
- package/esm2022/layouts/origin/sidebar/sidebar.component.mjs +0 -69
- package/esm2022/layouts/origin/sidebar/sidenav/expansion/accordion.component.mjs +0 -74
- package/esm2022/layouts/origin/sidebar/sidenav/expansion/expansion-panel-header.component.mjs +0 -51
- package/esm2022/layouts/origin/sidebar/sidenav/expansion/expansion-panel.component.mjs +0 -63
- package/esm2022/layouts/origin/sidebar/sidenav/sidenav.component.mjs +0 -130
- package/esm2022/modal/modal.component.mjs +0 -63
- package/esm2022/modal/modal.module.mjs +0 -21
- package/esm2022/modal/modal.service.mjs +0 -33
- package/esm2022/pretty-box/pretty-box.component.mjs +0 -94
- package/esm2022/tables/tables.module.mjs +0 -22
- package/esm2022/toast/toast.service.mjs +0 -42
- package/fesm2022/kato-lee-components-layouts-origin.mjs +0 -872
- package/fesm2022/kato-lee-components-layouts-origin.mjs.map +0 -1
- package/fields/error/error.module.d.ts +0 -11
- package/fields/fields.module.d.ts +0 -29
- package/layouts/origin/breadcrumb/breadcrumb.component.d.ts +0 -24
- package/layouts/origin/footer/footer.component.d.ts +0 -5
- package/layouts/origin/header/header.component.d.ts +0 -15
- package/layouts/origin/index.d.ts +0 -8
- package/layouts/origin/layout.component.d.ts +0 -58
- package/layouts/origin/layout.module.d.ts +0 -18
- package/layouts/origin/layout.navigation.d.ts +0 -10
- package/layouts/origin/navigation-interfaces.d.ts +0 -24
- package/layouts/origin/services/index.d.ts +0 -3
- package/layouts/origin/services/route-parts.service.d.ts +0 -15
- package/layouts/origin/services/toggle-sidebar.d.ts +0 -10
- package/layouts/origin/services/validate-access.pipe.d.ts +0 -7
- package/layouts/origin/sidebar/sidebar.component.d.ts +0 -27
- package/layouts/origin/sidebar/sidenav/expansion/accordion.component.d.ts +0 -10
- package/layouts/origin/sidebar/sidenav/expansion/expansion-panel-header.component.d.ts +0 -11
- package/layouts/origin/sidebar/sidenav/expansion/expansion-panel.component.d.ts +0 -12
- package/layouts/origin/sidebar/sidenav/sidenav.component.d.ts +0 -23
- package/modal/modal.module.d.ts +0 -11
- package/pretty-box/pretty-box.component.d.ts +0 -24
- /package/fields/{fields.common.d.ts → common.d.ts} +0 -0
- /package/fields/{remote-autocomplete-field/remote-autocomplete-field.component.d.ts → remote-autocomplete/component.d.ts} +0 -0
- /package/fields/{fields.validators.d.ts → validators.d.ts} +0 -0
- /package/modal/{modal.service.d.ts → service.d.ts} +0 -0
- /package/toast/{toast.service.d.ts → service.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kato-lee/components",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"@kato-lee/cdk": "^14.2.7",
|
|
6
6
|
"@kato-lee/material": "^14.2.7"
|
|
@@ -24,11 +24,11 @@
|
|
|
24
24
|
"esm": "./esm2022/box-form/kato-lee-components-box-form.mjs",
|
|
25
25
|
"default": "./fesm2022/kato-lee-components-box-form.mjs"
|
|
26
26
|
},
|
|
27
|
-
"./
|
|
28
|
-
"types": "./
|
|
29
|
-
"esm2022": "./esm2022/
|
|
30
|
-
"esm": "./esm2022/
|
|
31
|
-
"default": "./fesm2022/kato-lee-components-
|
|
27
|
+
"./capsule": {
|
|
28
|
+
"types": "./capsule/index.d.ts",
|
|
29
|
+
"esm2022": "./esm2022/capsule/kato-lee-components-capsule.mjs",
|
|
30
|
+
"esm": "./esm2022/capsule/kato-lee-components-capsule.mjs",
|
|
31
|
+
"default": "./fesm2022/kato-lee-components-capsule.mjs"
|
|
32
32
|
},
|
|
33
33
|
"./cards": {
|
|
34
34
|
"types": "./cards/index.d.ts",
|
|
@@ -36,11 +36,11 @@
|
|
|
36
36
|
"esm": "./esm2022/cards/kato-lee-components-cards.mjs",
|
|
37
37
|
"default": "./fesm2022/kato-lee-components-cards.mjs"
|
|
38
38
|
},
|
|
39
|
-
"./
|
|
40
|
-
"types": "./
|
|
41
|
-
"esm2022": "./esm2022/
|
|
42
|
-
"esm": "./esm2022/
|
|
43
|
-
"default": "./fesm2022/kato-lee-components-
|
|
39
|
+
"./dialogs": {
|
|
40
|
+
"types": "./dialogs/index.d.ts",
|
|
41
|
+
"esm2022": "./esm2022/dialogs/kato-lee-components-dialogs.mjs",
|
|
42
|
+
"esm": "./esm2022/dialogs/kato-lee-components-dialogs.mjs",
|
|
43
|
+
"default": "./fesm2022/kato-lee-components-dialogs.mjs"
|
|
44
44
|
},
|
|
45
45
|
"./fields": {
|
|
46
46
|
"types": "./fields/index.d.ts",
|
|
@@ -71,12 +71,6 @@
|
|
|
71
71
|
"esm2022": "./esm2022/toast/kato-lee-components-toast.mjs",
|
|
72
72
|
"esm": "./esm2022/toast/kato-lee-components-toast.mjs",
|
|
73
73
|
"default": "./fesm2022/kato-lee-components-toast.mjs"
|
|
74
|
-
},
|
|
75
|
-
"./layouts/origin": {
|
|
76
|
-
"types": "./layouts/origin/index.d.ts",
|
|
77
|
-
"esm2022": "./esm2022/layouts/origin/kato-lee-components-layouts-origin.mjs",
|
|
78
|
-
"esm": "./esm2022/layouts/origin/kato-lee-components-layouts-origin.mjs",
|
|
79
|
-
"default": "./fesm2022/kato-lee-components-layouts-origin.mjs"
|
|
80
74
|
}
|
|
81
75
|
}
|
|
82
76
|
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, ElementRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TakPrettyBoxComponent implements AfterViewInit {
|
|
4
|
+
private _cd;
|
|
5
|
+
header: ElementRef;
|
|
6
|
+
footer: ElementRef;
|
|
7
|
+
scroll: ElementRef;
|
|
8
|
+
calcHeight: string | number;
|
|
9
|
+
headerHeightPx: number;
|
|
10
|
+
footerHeightPx: number;
|
|
11
|
+
encapsulated: boolean;
|
|
12
|
+
private _hasHeader;
|
|
13
|
+
private _hasFooter;
|
|
14
|
+
private _substractFromHeight;
|
|
15
|
+
constructor(_cd: ChangeDetectorRef);
|
|
16
|
+
ngAfterViewInit(): void;
|
|
17
|
+
scrollTop(): void;
|
|
18
|
+
private _config;
|
|
19
|
+
get minHeightFt(): string;
|
|
20
|
+
get hasHeader(): boolean;
|
|
21
|
+
get hasFooter(): boolean;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TakPrettyBoxComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TakPrettyBoxComponent, "tak-pretty-box", never, { "calcHeight": { "alias": "calcHeight"; "required": false; }; "headerHeightPx": { "alias": "headerHeightPx"; "required": false; }; "footerHeightPx": { "alias": "footerHeightPx"; "required": false; }; "encapsulated": { "alias": "encapsulated"; "required": false; }; }, {}, never, ["[tak-pretty-box-header]", "[tak-pretty-box-content]", "[tak-pretty-box-footer]"], true, never>;
|
|
24
|
+
}
|
package/pretty-box/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './
|
|
1
|
+
export * from './component';
|
package/tables/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import * as i1 from "@kato-lee/material/table";
|
|
|
3
3
|
import * as i2 from "@kato-lee/material/sort";
|
|
4
4
|
import * as i3 from "@kato-lee/material/paginator";
|
|
5
5
|
import * as i4 from "./no-records.component";
|
|
6
|
+
/** @deprecated Use standalone */
|
|
6
7
|
export declare class TakTablesModule {
|
|
7
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<TakTablesModule, never>;
|
|
8
9
|
static ɵmod: i0.ɵɵNgModuleDeclaration<TakTablesModule, never, [typeof i1.MatTableModule, typeof i2.MatSortModule, typeof i3.MatPaginatorModule, typeof i4.TakTableNoRecordsComponent], [typeof i1.MatTableModule, typeof i2.MatSortModule, typeof i3.MatPaginatorModule, typeof i4.TakTableNoRecordsComponent]>;
|
package/toast/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './
|
|
1
|
+
export * from './service';
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,40 +0,0 @@
|
|
|
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
|
-
}
|
package/assets/fonts/main.scss
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
@import 'body/style-font';
|
|
2
|
-
@import 'title/style-font';
|
|
3
|
-
|
|
4
|
-
body {
|
|
5
|
-
font-family: 'bodycommerce' !important;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.default-title-font {
|
|
9
|
-
font-family: 'titlecommerce' !important;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
.default-body-font {
|
|
13
|
-
font-family: 'bodycommerce' !important;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.font-weight-bolder {
|
|
17
|
-
font-weight: bolder !important;
|
|
18
|
-
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,39 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,71 +0,0 @@
|
|
|
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
|
-
}
|