@foxeltech/angular-ui 0.0.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/BeVietnamPro/BeVietnamPro-Bold.ttf +0 -0
- package/BeVietnamPro/BeVietnamPro-ExtraLight.ttf +0 -0
- package/BeVietnamPro/BeVietnamPro-Light.ttf +0 -0
- package/BeVietnamPro/BeVietnamPro-Medium.ttf +0 -0
- package/BeVietnamPro/BeVietnamPro-Regular.ttf +0 -0
- package/BeVietnamPro/BeVietnamPro-SemiBold.ttf +0 -0
- package/BeVietnamPro/BeVietnamPro-Thin.ttf +0 -0
- package/README.md +3 -0
- package/SpaceMono-Regular.ttf +0 -0
- package/animations.css +130 -0
- package/components.css +480 -0
- package/dialogs.css +70 -0
- package/dm-sans/DMSans-Bold.ttf +0 -0
- package/dm-sans/DMSans-Light.ttf +0 -0
- package/dm-sans/DMSans-Medium.ttf +0 -0
- package/dm-sans/DMSans-Regular.ttf +0 -0
- package/dm-sans/DMSans-SemiBold.ttf +0 -0
- package/dm-sans/DMSans-Thin.ttf +0 -0
- package/fesm2022/foxeltech-angular-ui.mjs +3450 -0
- package/fesm2022/foxeltech-angular-ui.mjs.map +1 -0
- package/fonts.css +125 -0
- package/index.d.ts +1022 -0
- package/orbitron/Orbitron-Bold.ttf +0 -0
- package/orbitron/Orbitron-Medium.ttf +0 -0
- package/orbitron/Orbitron-Regular.ttf +0 -0
- package/orbitron/Orbitron-SemiBold.ttf +0 -0
- package/package.json +56 -0
- package/src/lib/styles/animations.css +130 -0
- package/src/lib/styles/components.css +480 -0
- package/src/lib/styles/dialogs.css +70 -0
- package/src/lib/styles/fonts.css +125 -0
- package/src/lib/styles/tailwind.css +18 -0
- package/src/lib/styles/theme.css +67 -0
- package/src/lib/ui/components/button/button.component.html +223 -0
- package/src/lib/ui/components/chart/chart.component.html +11 -0
- package/src/lib/ui/components/checkbox/checkbox.component.html +42 -0
- package/src/lib/ui/components/circle-progress-bar/circle-progress-bar.component.html +44 -0
- package/src/lib/ui/components/datetime-picker/datetime-picker.component.html +36 -0
- package/src/lib/ui/components/dnd-upload/dnd-upload.component.html +34 -0
- package/src/lib/ui/components/drawer/drawer.component.html +101 -0
- package/src/lib/ui/components/flow-connection/flow-connection.component.html +10 -0
- package/src/lib/ui/components/hero-icon/hero-icon.component.html +8 -0
- package/src/lib/ui/components/input/input.component.css +0 -0
- package/src/lib/ui/components/input/input.component.html +48 -0
- package/src/lib/ui/components/kanban-board/kanban-board.component.html +43 -0
- package/src/lib/ui/components/loading-panel/loading-panel.component.html +51 -0
- package/src/lib/ui/components/radio-button/radio-button.component.css +0 -0
- package/src/lib/ui/components/radio-button/radio-button.component.html +35 -0
- package/src/lib/ui/components/radio-button-toggle/radio-button-toggle.component.html +34 -0
- package/src/lib/ui/components/rich-text-area/rich-text-area.component.html +3 -0
- package/src/lib/ui/components/search-bar/search-bar.component.html +22 -0
- package/src/lib/ui/components/select/select.component.css +102 -0
- package/src/lib/ui/components/select/select.component.html +42 -0
- package/src/lib/ui/components/skeleton-table-loading/skeleton-table-loading.component.html +21 -0
- package/src/lib/ui/components/slider/slider.component.html +54 -0
- package/src/lib/ui/components/switch/switch.component.html +21 -0
- package/src/lib/ui/components/tab-component/tab.component.html +1 -0
- package/src/lib/ui/components/tab-group/tab-group.component.html +75 -0
- package/src/lib/ui/components/table-cell/table-cell.component.html +7 -0
- package/src/lib/ui/components/tag/tag.component.html +15 -0
- package/src/lib/ui/components/toast/toast.component.html +48 -0
- package/src/lib/ui/components/toast-container/toast-container.component.html +12 -0
- package/src/lib/ui/components/tree-diagram/tree-diagram.component.html +40 -0
- package/src/lib/ui/dialogs/confirmation/confirmation.component.html +17 -0
- package/tailwind-config.d.ts +4 -0
- package/tailwind.config.js +88 -0
- package/tailwind.css +18 -0
- package/theme.css +67 -0
package/fonts.css
ADDED
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: 'BeVietnamPro';
|
|
3
|
+
src: url('./BeVietnamPro/BeVietnamPro-Thin.ttf') format('truetype');
|
|
4
|
+
font-weight: 100;
|
|
5
|
+
font-style: normal;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
@font-face {
|
|
9
|
+
font-family: 'BeVietnamPro';
|
|
10
|
+
src: url('./BeVietnamPro/BeVietnamPro-ExtraLight.ttf') format('truetype');
|
|
11
|
+
font-weight: 200;
|
|
12
|
+
font-style: normal;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
@font-face {
|
|
16
|
+
font-family: 'BeVietnamPro';
|
|
17
|
+
src: url('./BeVietnamPro/BeVietnamPro-Light.ttf') format('truetype');
|
|
18
|
+
font-weight: 300;
|
|
19
|
+
font-style: normal;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
@font-face {
|
|
23
|
+
font-family: 'BeVietnamPro';
|
|
24
|
+
src: url('./BeVietnamPro/BeVietnamPro-Regular.ttf') format('truetype');
|
|
25
|
+
font-weight: 400;
|
|
26
|
+
font-style: normal;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
@font-face {
|
|
30
|
+
font-family: 'BeVietnamPro';
|
|
31
|
+
src: url('./BeVietnamPro/BeVietnamPro-Medium.ttf') format('truetype');
|
|
32
|
+
font-weight: 500;
|
|
33
|
+
font-style: normal;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
@font-face {
|
|
37
|
+
font-family: 'BeVietnamPro';
|
|
38
|
+
src: url('./BeVietnamPro/BeVietnamPro-SemiBold.ttf') format('truetype');
|
|
39
|
+
font-weight: 600;
|
|
40
|
+
font-style: normal;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
@font-face {
|
|
44
|
+
font-family: 'BeVietnamPro';
|
|
45
|
+
src: url('./BeVietnamPro/BeVietnamPro-Bold.ttf') format('truetype');
|
|
46
|
+
font-weight: 700;
|
|
47
|
+
font-style: normal;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
@font-face {
|
|
51
|
+
font-family: 'DMSans';
|
|
52
|
+
src: url('./dm-sans/DMSans-Thin.ttf') format('truetype');
|
|
53
|
+
font-weight: 200;
|
|
54
|
+
font-style: normal;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
@font-face {
|
|
58
|
+
font-family: 'DMSans';
|
|
59
|
+
src: url('./dm-sans/DMSans-Light.ttf') format('truetype');
|
|
60
|
+
font-weight: 300;
|
|
61
|
+
font-style: normal;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
@font-face {
|
|
65
|
+
font-family: 'DMSans';
|
|
66
|
+
src: url('./dm-sans/DMSans-Regular.ttf') format('truetype');
|
|
67
|
+
font-weight: 400;
|
|
68
|
+
font-style: normal;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
@font-face {
|
|
72
|
+
font-family: 'DMSans';
|
|
73
|
+
src: url('./dm-sans/DMSans-Medium.ttf') format('truetype');
|
|
74
|
+
font-weight: 500;
|
|
75
|
+
font-style: normal;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
@font-face {
|
|
79
|
+
font-family: 'DMSans';
|
|
80
|
+
src: url('./dm-sans/DMSans-SemiBold.ttf') format('truetype');
|
|
81
|
+
font-weight: 600;
|
|
82
|
+
font-style: normal;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
@font-face {
|
|
86
|
+
font-family: 'DMSans';
|
|
87
|
+
src: url('./dm-sans/DMSans-Bold.ttf') format('truetype');
|
|
88
|
+
font-weight: 700;
|
|
89
|
+
font-style: normal;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
@font-face {
|
|
93
|
+
font-family: 'Orbitron';
|
|
94
|
+
src: url('./orbitron/Orbitron-Regular.ttf') format('truetype');
|
|
95
|
+
font-weight: 400;
|
|
96
|
+
font-style: normal;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
@font-face {
|
|
100
|
+
font-family: 'Orbitron';
|
|
101
|
+
src: url('./orbitron/Orbitron-Medium.ttf') format('truetype');
|
|
102
|
+
font-weight: 500;
|
|
103
|
+
font-style: normal;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
@font-face {
|
|
107
|
+
font-family: 'Orbitron';
|
|
108
|
+
src: url('./orbitron/Orbitron-SemiBold.ttf') format('truetype');
|
|
109
|
+
font-weight: 600;
|
|
110
|
+
font-style: normal;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
@font-face {
|
|
114
|
+
font-family: 'Orbitron';
|
|
115
|
+
src: url('./orbitron/Orbitron-Bold.ttf') format('truetype');
|
|
116
|
+
font-weight: 700;
|
|
117
|
+
font-style: normal;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
@font-face {
|
|
121
|
+
font-family: 'SpaceMonoRegular';
|
|
122
|
+
src: url('./SpaceMono-Regular.ttf') format('truetype');
|
|
123
|
+
font-weight: normal;
|
|
124
|
+
font-style: normal;
|
|
125
|
+
}
|