@updevs/components 1.0.0-alpha.1 → 1.0.0-alpha.100

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.
Files changed (198) hide show
  1. package/README.md +1 -24
  2. package/assets/styles/_bootstrap-components.scss +55 -0
  3. package/assets/styles/_bootstrap-config.scss +7 -0
  4. package/assets/styles/_bootstrap-override.scss +78 -0
  5. package/assets/styles/_config.scss +9 -0
  6. package/assets/styles/_core.scss +80 -0
  7. package/assets/styles/_debug.scss +49 -0
  8. package/assets/styles/_mixins.scss +2 -0
  9. package/assets/styles/_props.scss +91 -0
  10. package/assets/styles/_seven-columns.scss +73 -0
  11. package/assets/styles/_updevs.scss +25 -0
  12. package/assets/styles/_utilities-marketing.scss +209 -0
  13. package/assets/styles/_utilities.scss +133 -0
  14. package/assets/styles/_variables-dark.scss +19 -0
  15. package/assets/styles/_variables.scss +1003 -0
  16. package/assets/styles/fonts/_webfonts.scss +15 -0
  17. package/assets/styles/helpers/_index.scss +143 -0
  18. package/assets/styles/layout/_animations.scss +62 -0
  19. package/assets/styles/layout/_core.scss +62 -0
  20. package/assets/styles/layout/_dark.scss +77 -0
  21. package/assets/styles/layout/_footer.scss +12 -0
  22. package/assets/styles/layout/_navbar.scss +392 -0
  23. package/assets/styles/layout/_page.scss +170 -0
  24. package/assets/styles/layout/_root.scss +64 -0
  25. package/assets/styles/marketing/_browser.scss +67 -0
  26. package/assets/styles/marketing/_core.scss +8 -0
  27. package/assets/styles/marketing/_filters.scss +0 -0
  28. package/assets/styles/marketing/_hero.scss +70 -0
  29. package/assets/styles/marketing/_pricing.scss +111 -0
  30. package/assets/styles/marketing/_sections.scss +124 -0
  31. package/assets/styles/marketing/_shape.scss +31 -0
  32. package/assets/styles/mixins/_functions.scss +96 -0
  33. package/assets/styles/mixins/_mixins.scss +68 -0
  34. package/assets/styles/ui/_accordion.scss +178 -0
  35. package/assets/styles/ui/_alerts.scss +101 -0
  36. package/assets/styles/ui/_avatars.scss +145 -0
  37. package/assets/styles/ui/_badges.scss +113 -0
  38. package/assets/styles/ui/_breadcrumbs.scss +50 -0
  39. package/assets/styles/ui/_button-group.scss +16 -0
  40. package/assets/styles/ui/_buttons.scss +261 -0
  41. package/assets/styles/ui/_calendars.scss +104 -0
  42. package/assets/styles/ui/_cards.scss +595 -0
  43. package/assets/styles/ui/_carousel.scss +68 -0
  44. package/assets/styles/ui/_charts.scss +61 -0
  45. package/assets/styles/ui/_chat.scss +38 -0
  46. package/assets/styles/ui/_chips.scss +0 -0
  47. package/assets/styles/ui/_close.scss +60 -0
  48. package/assets/styles/ui/_datagrid.scss +17 -0
  49. package/assets/styles/ui/_dropdowns.scss +120 -0
  50. package/assets/styles/ui/_empty.scss +60 -0
  51. package/assets/styles/ui/_flags.scss +31 -0
  52. package/assets/styles/ui/_forms.scss +250 -0
  53. package/assets/styles/ui/_grid.scss +115 -0
  54. package/assets/styles/ui/_icons.scss +72 -0
  55. package/assets/styles/ui/_images.scss +19 -0
  56. package/assets/styles/ui/_legend.scss +12 -0
  57. package/assets/styles/ui/_lists.scss +123 -0
  58. package/assets/styles/ui/_loaders.scss +72 -0
  59. package/assets/styles/ui/_login.scss +3 -0
  60. package/assets/styles/ui/_markdown.scss +53 -0
  61. package/assets/styles/ui/_modals.scss +67 -0
  62. package/assets/styles/ui/_nav.scss +106 -0
  63. package/assets/styles/ui/_offcanvas.scss +17 -0
  64. package/assets/styles/ui/_pagination.scss +58 -0
  65. package/assets/styles/ui/_payments.scss +28 -0
  66. package/assets/styles/ui/_placeholder.scss +9 -0
  67. package/assets/styles/ui/_popovers.scss +2 -0
  68. package/assets/styles/ui/_progress.scss +107 -0
  69. package/assets/styles/ui/_ribbons.scss +157 -0
  70. package/assets/styles/ui/_segmented.scss +101 -0
  71. package/assets/styles/ui/_signature.scss +15 -0
  72. package/assets/styles/ui/_social.scss +52 -0
  73. package/assets/styles/ui/_stars.scss +13 -0
  74. package/assets/styles/ui/_status.scss +163 -0
  75. package/assets/styles/ui/_steps.scss +156 -0
  76. package/assets/styles/ui/_switch-icon.scss +211 -0
  77. package/assets/styles/ui/_tables.scss +176 -0
  78. package/assets/styles/ui/_tags.scss +57 -0
  79. package/assets/styles/ui/_timeline.scss +61 -0
  80. package/assets/styles/ui/_toasts.scss +18 -0
  81. package/assets/styles/ui/_toolbar.scss +10 -0
  82. package/assets/styles/ui/_tracking.scss +29 -0
  83. package/assets/styles/ui/_type.scss +330 -0
  84. package/assets/styles/ui/forms/_form-check.scss +91 -0
  85. package/assets/styles/ui/forms/_form-colorinput.scss +54 -0
  86. package/assets/styles/ui/forms/_form-custom.scss +28 -0
  87. package/assets/styles/ui/forms/_form-icon.scss +35 -0
  88. package/assets/styles/ui/forms/_form-imagecheck.scss +105 -0
  89. package/assets/styles/ui/forms/_form-selectgroup.scss +153 -0
  90. package/assets/styles/ui/forms/_validation.scss +13 -0
  91. package/assets/styles/ui/typo/_hr.scss +76 -0
  92. package/assets/styles/utils/_background.scss +15 -0
  93. package/assets/styles/utils/_colors.scss +101 -0
  94. package/assets/styles/utils/_opacity.scss +7 -0
  95. package/assets/styles/utils/_scroll.scss +45 -0
  96. package/assets/styles/utils/_shadow.scss +17 -0
  97. package/assets/styles/utils/_sizing.scss +10 -0
  98. package/assets/styles/utils/_text.scss +14 -0
  99. package/assets/styles/vendor/_apexcharts.scss +52 -0
  100. package/assets/styles/vendor/_coloris.scss +72 -0
  101. package/assets/styles/vendor/_dropzone.scss +27 -0
  102. package/assets/styles/vendor/_fslightbox.scss +13 -0
  103. package/assets/styles/vendor/_jsvectormap.scss +47 -0
  104. package/assets/styles/vendor/_litepicker.scss +69 -0
  105. package/assets/styles/vendor/_nouislider.scss +49 -0
  106. package/assets/styles/vendor/_plyr.scss +3 -0
  107. package/assets/styles/vendor/_stars-rating.scss +22 -0
  108. package/assets/styles/vendor/_tom-select.scss +81 -0
  109. package/assets/styles/vendor/_turbo.scss +3 -0
  110. package/assets/styles/vendor/_typed.scss +4 -0
  111. package/assets/styles/vendor/_wysiwyg.scss +46 -0
  112. package/fesm2022/updevs-components-badge.mjs +89 -0
  113. package/fesm2022/updevs-components-badge.mjs.map +1 -0
  114. package/fesm2022/updevs-components-button.mjs +193 -0
  115. package/fesm2022/updevs-components-button.mjs.map +1 -0
  116. package/fesm2022/updevs-components-calendar.mjs +582 -0
  117. package/fesm2022/updevs-components-calendar.mjs.map +1 -0
  118. package/fesm2022/updevs-components-card.mjs +242 -0
  119. package/fesm2022/updevs-components-card.mjs.map +1 -0
  120. package/fesm2022/updevs-components-drag-and-drop.mjs +185 -0
  121. package/fesm2022/updevs-components-drag-and-drop.mjs.map +1 -0
  122. package/fesm2022/updevs-components-dropdown.mjs +247 -0
  123. package/fesm2022/updevs-components-dropdown.mjs.map +1 -0
  124. package/fesm2022/updevs-components-form-controls-abstractions.mjs +106 -0
  125. package/fesm2022/updevs-components-form-controls-abstractions.mjs.map +1 -0
  126. package/fesm2022/updevs-components-form-controls-checkbox.mjs +99 -0
  127. package/fesm2022/updevs-components-form-controls-checkbox.mjs.map +1 -0
  128. package/fesm2022/updevs-components-form-controls-date-picker.mjs +175 -0
  129. package/fesm2022/updevs-components-form-controls-date-picker.mjs.map +1 -0
  130. package/fesm2022/updevs-components-form-controls-file-upload.mjs +272 -0
  131. package/fesm2022/updevs-components-form-controls-file-upload.mjs.map +1 -0
  132. package/fesm2022/updevs-components-form-controls-input.mjs +281 -0
  133. package/fesm2022/updevs-components-form-controls-input.mjs.map +1 -0
  134. package/fesm2022/updevs-components-form-controls-radio.mjs +98 -0
  135. package/fesm2022/updevs-components-form-controls-radio.mjs.map +1 -0
  136. package/fesm2022/updevs-components-form-controls-select.mjs +600 -0
  137. package/fesm2022/updevs-components-form-controls-select.mjs.map +1 -0
  138. package/fesm2022/updevs-components-form-controls-textarea.mjs +79 -0
  139. package/fesm2022/updevs-components-form-controls-textarea.mjs.map +1 -0
  140. package/fesm2022/updevs-components-form-controls-time-picker.mjs +345 -0
  141. package/fesm2022/updevs-components-form-controls-time-picker.mjs.map +1 -0
  142. package/fesm2022/updevs-components-form.mjs +562 -0
  143. package/fesm2022/updevs-components-form.mjs.map +1 -0
  144. package/fesm2022/updevs-components-layout.mjs +1054 -0
  145. package/fesm2022/updevs-components-layout.mjs.map +1 -0
  146. package/fesm2022/updevs-components-link.mjs +79 -0
  147. package/fesm2022/updevs-components-link.mjs.map +1 -0
  148. package/fesm2022/updevs-components-list.mjs +215 -0
  149. package/fesm2022/updevs-components-list.mjs.map +1 -0
  150. package/fesm2022/updevs-components-modal.mjs +505 -0
  151. package/fesm2022/updevs-components-modal.mjs.map +1 -0
  152. package/fesm2022/updevs-components-paginator.mjs +160 -0
  153. package/fesm2022/updevs-components-paginator.mjs.map +1 -0
  154. package/fesm2022/updevs-components-popover.mjs +215 -0
  155. package/fesm2022/updevs-components-popover.mjs.map +1 -0
  156. package/fesm2022/updevs-components-pricing.mjs +130 -0
  157. package/fesm2022/updevs-components-pricing.mjs.map +1 -0
  158. package/fesm2022/updevs-components-table.mjs +2060 -0
  159. package/fesm2022/updevs-components-table.mjs.map +1 -0
  160. package/fesm2022/updevs-components.mjs +33 -0
  161. package/fesm2022/updevs-components.mjs.map +1 -0
  162. package/package.json +127 -14
  163. package/types/updevs-components-badge.d.ts +44 -0
  164. package/types/updevs-components-button.d.ts +75 -0
  165. package/types/updevs-components-calendar.d.ts +175 -0
  166. package/types/updevs-components-card.d.ts +92 -0
  167. package/types/updevs-components-drag-and-drop.d.ts +74 -0
  168. package/types/updevs-components-dropdown.d.ts +124 -0
  169. package/types/updevs-components-form-controls-abstractions.d.ts +49 -0
  170. package/types/updevs-components-form-controls-checkbox.d.ts +33 -0
  171. package/types/updevs-components-form-controls-date-picker.d.ts +80 -0
  172. package/types/updevs-components-form-controls-file-upload.d.ts +69 -0
  173. package/types/updevs-components-form-controls-input.d.ts +95 -0
  174. package/types/updevs-components-form-controls-radio.d.ts +32 -0
  175. package/types/updevs-components-form-controls-select.d.ts +200 -0
  176. package/types/updevs-components-form-controls-textarea.d.ts +31 -0
  177. package/types/updevs-components-form-controls-time-picker.d.ts +164 -0
  178. package/types/updevs-components-form.d.ts +356 -0
  179. package/types/updevs-components-layout.d.ts +490 -0
  180. package/types/updevs-components-link.d.ts +34 -0
  181. package/types/updevs-components-list.d.ts +107 -0
  182. package/types/updevs-components-modal.d.ts +155 -0
  183. package/types/updevs-components-paginator.d.ts +58 -0
  184. package/types/updevs-components-popover.d.ts +63 -0
  185. package/types/updevs-components-pricing.d.ts +91 -0
  186. package/types/updevs-components-table.d.ts +619 -0
  187. package/types/updevs-components.d.ts +44 -0
  188. package/CHANGELOG.md +0 -8
  189. package/ng-package.json +0 -7
  190. package/src/lib/components.component.spec.ts +0 -23
  191. package/src/lib/components.component.ts +0 -14
  192. package/src/lib/components.module.ts +0 -17
  193. package/src/lib/components.service.spec.ts +0 -16
  194. package/src/lib/components.service.ts +0 -9
  195. package/src/public-api.ts +0 -7
  196. package/tsconfig.lib.json +0 -14
  197. package/tsconfig.lib.prod.json +0 -10
  198. package/tsconfig.spec.json +0 -14
package/README.md CHANGED
@@ -1,24 +1 @@
1
- # Components
2
-
3
- This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 15.1.0.
4
-
5
- ## Code scaffolding
6
-
7
- Run `ng generate component component-name --project components` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project components`.
8
- > Note: Don't forget to add `--project components` or else it will be added to the default project in your `angular.json` file.
9
-
10
- ## Build
11
-
12
- Run `ng build components` to build the project. The build artifacts will be stored in the `dist/` directory.
13
-
14
- ## Publishing
15
-
16
- After building your library with `ng build components`, go to the dist folder `cd dist/components` and run `npm publish`.
17
-
18
- ## Running unit tests
19
-
20
- Run `ng test components` to execute the unit tests via [Karma](https://karma-runner.github.io).
21
-
22
- ## Further help
23
-
24
- To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
1
+ # UpDevs Components Library for Angular v18
@@ -0,0 +1,55 @@
1
+ // Layout & components
2
+ @import "bootstrap/scss/root";
3
+ @import "bootstrap/scss/reboot";
4
+ @import "bootstrap/scss/type";
5
+ @import "bootstrap/scss/images";
6
+ @import "bootstrap/scss/containers";
7
+ @import "bootstrap/scss/grid";
8
+ @import "bootstrap/scss/tables";
9
+ @import "bootstrap/scss/forms";
10
+ @import "bootstrap/scss/buttons";
11
+ @import "bootstrap/scss/transitions";
12
+ @import "bootstrap/scss/dropdown";
13
+ @import "bootstrap/scss/button-group";
14
+ @import "bootstrap/scss/nav";
15
+ @import "bootstrap/scss/navbar";
16
+ @import "bootstrap/scss/card";
17
+ @import "bootstrap/scss/accordion";
18
+ @import "bootstrap/scss/breadcrumb";
19
+ @import "bootstrap/scss/pagination";
20
+ @import "bootstrap/scss/badge";
21
+ @import "bootstrap/scss/alert";
22
+ @import "bootstrap/scss/progress";
23
+ @import "bootstrap/scss/list-group";
24
+ @import "bootstrap/scss/close";
25
+ @import "bootstrap/scss/toasts";
26
+ @import "bootstrap/scss/modal";
27
+ @import "bootstrap/scss/tooltip";
28
+ @import "bootstrap/scss/popover";
29
+ @import "bootstrap/scss/carousel";
30
+ @import "bootstrap/scss/spinners";
31
+ @import "bootstrap/scss/offcanvas";
32
+ @import "bootstrap/scss/placeholders";
33
+
34
+ // Helpers
35
+ @import "bootstrap/scss/helpers";
36
+ @import "bootstrap/scss/utilities";
37
+
38
+ // extend `text-align` utility
39
+ $utilities: map-merge(
40
+ $utilities,
41
+ (
42
+ "text-align": map-merge(
43
+ map-get($utilities, "text-align"),
44
+ (
45
+ values: map-merge(
46
+ map-get(map-get($utilities, "text-align"), "values"),
47
+ (justify: justify),
48
+ ),
49
+ ),
50
+ ),
51
+ )
52
+ );
53
+
54
+ // include utilities API last to generate classes based on the Sass map in `_utilities.scss`
55
+ @import "bootstrap/scss/utilities/api";
@@ -0,0 +1,7 @@
1
+ // Config
2
+ @import "bootstrap/scss/functions";
3
+ @import "bootstrap/scss/variables";
4
+ @import "bootstrap/scss/variables-dark";
5
+ @import "bootstrap/scss/maps";
6
+ @import "bootstrap/scss/mixins";
7
+ @import "bootstrap/scss/utilities";
@@ -0,0 +1,78 @@
1
+ @mixin caret($direction: down) {
2
+ $selector: "after";
3
+
4
+ @if $direction == "left" {
5
+ $selector: "before";
6
+ }
7
+
8
+ &:#{$selector} {
9
+ content: "";
10
+ display: inline-block;
11
+ vertical-align: $caret-vertical-align;
12
+ width: $caret-width;
13
+ height: $caret-width;
14
+ border-bottom: 1px var(--#{$prefix}border-style);
15
+ border-left: 1px var(--#{$prefix}border-style);
16
+ margin-right: 0.1em;
17
+
18
+ @if $direction != "left" {
19
+ margin-left: $caret-spacing;
20
+ } @else {
21
+ margin-right: $caret-spacing;
22
+ }
23
+
24
+ @if $direction == down {
25
+ transform: rotate(-45deg);
26
+ } @else if $direction == up {
27
+ transform: rotate(135deg);
28
+ } @else if $direction == end {
29
+ transform: rotate(-135deg);
30
+ } @else {
31
+ transform: rotate(45deg);
32
+ }
33
+ }
34
+
35
+ @if $direction == "left" {
36
+ &:after {
37
+ content: none;
38
+ }
39
+ }
40
+ }
41
+
42
+ @mixin alert-variant($background: null, $border: null, $color: null) {
43
+ // Override bootstrap core
44
+ }
45
+
46
+ @mixin button-variant(
47
+ $background: null,
48
+ $border: null,
49
+ $color: null,
50
+ $hover-background: null,
51
+ $hover-border: null,
52
+ $hover-color: null,
53
+ $active-background: null,
54
+ $active-border: null,
55
+ $active-color: null,
56
+ $disabled-background: null,
57
+ $disabled-border: null,
58
+ $disabled-color: null
59
+ ) {
60
+ // Override bootstrap core
61
+ }
62
+
63
+ @mixin button-outline-variant(
64
+ $color: null,
65
+ $color-hover: null,
66
+ $active-background: null,
67
+ $active-border: null,
68
+ $active-color: null
69
+ ) {
70
+ // Override bootstrap core
71
+ }
72
+
73
+ //
74
+ // TODO: remove when https://github.com/twbs/bootstrap/pull/37425/ will be released
75
+ //
76
+ @function opaque($background, $foreground) {
77
+ @return mix(rgba($foreground, 1), $background, opacity($foreground) * 100%);
78
+ }
@@ -0,0 +1,9 @@
1
+ @import "bootstrap/scss/functions";
2
+
3
+ @import "variables";
4
+ @import "variables-dark";
5
+ @import "utilities";
6
+ @import "mixins";
7
+
8
+ @import "bootstrap-config";
9
+ @import "bootstrap-override";
@@ -0,0 +1,80 @@
1
+ @import "config";
2
+ @import "bootstrap-components";
3
+
4
+ @import "props";
5
+
6
+ @import "fonts/webfonts";
7
+
8
+ @import "layout/root";
9
+ @import "layout/animations";
10
+ @import "layout/core";
11
+ @import "layout/navbar";
12
+ @import "layout/page";
13
+ @import "layout/footer";
14
+ @import "layout/dark";
15
+
16
+ @import "ui/accordion";
17
+ @import "ui/alerts";
18
+ @import "ui/avatars";
19
+ @import "ui/badges";
20
+ @import "ui/breadcrumbs";
21
+ @import "ui/buttons";
22
+ @import "ui/button-group";
23
+ @import "ui/calendars";
24
+ @import "ui/carousel";
25
+ @import "ui/cards";
26
+ @import "ui/close";
27
+ @import "ui/dropdowns";
28
+ @import "ui/datagrid";
29
+ @import "ui/empty";
30
+ @import "ui/grid";
31
+ @import "ui/icons";
32
+ @import "ui/images";
33
+ @import "ui/forms";
34
+ @import "ui/forms/form-icon";
35
+ @import "ui/forms/form-colorinput";
36
+ @import "ui/forms/form-imagecheck";
37
+ @import "ui/forms/form-selectgroup";
38
+ @import "ui/forms/form-custom";
39
+ @import "ui/forms/form-check";
40
+ @import "ui/forms/validation";
41
+ @import "ui/legend";
42
+ @import "ui/lists";
43
+ @import "ui/loaders";
44
+ @import "ui/login";
45
+ @import "ui/modals";
46
+ @import "ui/nav";
47
+ @import "ui/stars";
48
+ @import "ui/pagination";
49
+ @import "ui/popovers";
50
+ @import "ui/progress";
51
+ @import "ui/ribbons";
52
+ @import "ui/markdown";
53
+ @import "ui/placeholder";
54
+ @import "ui/segmented";
55
+ @import "ui/steps";
56
+ @import "ui/status";
57
+ @import "ui/switch-icon";
58
+ @import "ui/tables";
59
+ @import "ui/tags";
60
+ @import "ui/toasts";
61
+ @import "ui/toolbar";
62
+ @import "ui/tracking";
63
+ @import "ui/timeline";
64
+ @import "ui/type";
65
+ @import "ui/charts";
66
+ @import "ui/offcanvas";
67
+ @import "ui/chat";
68
+ @import "ui/signature";
69
+
70
+ @import "helpers/index";
71
+
72
+ @import "utils/background";
73
+ @import "utils/colors";
74
+ @import "utils/scroll";
75
+ @import "utils/sizing";
76
+ @import "utils/opacity";
77
+ @import "utils/shadow";
78
+ @import "utils/text";
79
+
80
+ @import "debug";
@@ -0,0 +1,49 @@
1
+ $debug: false;
2
+
3
+ @if $debug {
4
+ $colors: (
5
+ "blue": $blue,
6
+ "azure": $azure,
7
+ "indigo": $indigo,
8
+ "purple": $purple,
9
+ "pink": $pink,
10
+ "red": $red,
11
+ "orange": $orange,
12
+ "yellow": $yellow,
13
+ "lime": $lime,
14
+ "green": $green,
15
+ "teal": $teal,
16
+ "cyan": $cyan,
17
+ );
18
+
19
+ @each $name, $color in $colors {
20
+ @debug ("#{$name}: '#{$color}'");
21
+ @debug ("#{$name}-100: '#{tint-color($color, 8)}'");
22
+ @debug ("#{$name}-200: '#{tint-color($color, 6)}'");
23
+ @debug ("#{$name}-300: '#{tint-color($color, 4)}'");
24
+ @debug ("#{$name}-400: '#{tint-color($color, 2)}'");
25
+ @debug ("#{$name}-500: '#{$color}'");
26
+ @debug ("#{$name}-600: '#{shade-color($color, 2)}'");
27
+ @debug ("#{$name}-700: '#{shade-color($color, 4)}'");
28
+ @debug ("#{$name}-800: '#{shade-color($color, 6)}'");
29
+ @debug ("#{$name}-900: '#{shade-color($color, 8)}'");
30
+ }
31
+
32
+ @debug ("gray: '#{$gray-500}'");
33
+ @debug ("gray-100: '#{$gray-100}'");
34
+ @debug ("gray-200: '#{$gray-200}'");
35
+ @debug ("gray-300: '#{$gray-300}'");
36
+ @debug ("gray-400: '#{$gray-400}'");
37
+ @debug ("gray-500: '#{$gray-500}'");
38
+ @debug ("gray-600: '#{$gray-600}'");
39
+ @debug ("gray-700: '#{$gray-700}'");
40
+ @debug ("gray-800: '#{$gray-800}'");
41
+ @debug ("gray-900: '#{$gray-900}'");
42
+
43
+ @debug ("border-color: '#{$border-color}'");
44
+ @debug ("text-secondary: '#{$text-secondary}'");
45
+
46
+ @each $name, $color in $social-colors {
47
+ @debug ("#{$name}: '#{$color}'");
48
+ }
49
+ }
@@ -0,0 +1,2 @@
1
+ @import "mixins/mixins";
2
+ @import "mixins/functions";
@@ -0,0 +1,91 @@
1
+ @import "config";
2
+
3
+ :root,
4
+ :host {
5
+ /** Fonts */
6
+ --#{$prefix}font-monospace: #{$font-family-monospace};
7
+ --#{$prefix}font-sans-serif: #{$font-family-sans-serif};
8
+ --#{$prefix}font-serif: #{$font-family-serif};
9
+ --#{$prefix}font-comic: #{$font-family-comic};
10
+
11
+ /** Gray colors */
12
+ --#{$prefix}gray-50: #{$gray-50};
13
+ --#{$prefix}gray-100: #{$gray-100};
14
+ --#{$prefix}gray-200: #{$gray-200};
15
+ --#{$prefix}gray-300: #{$gray-300};
16
+ --#{$prefix}gray-400: #{$gray-400};
17
+ --#{$prefix}gray-500: #{$gray-500};
18
+ --#{$prefix}gray-600: #{$gray-600};
19
+ --#{$prefix}gray-700: #{$gray-700};
20
+ --#{$prefix}gray-800: #{$gray-800};
21
+ --#{$prefix}gray-900: #{$gray-900};
22
+ --#{$prefix}gray-950: #{$gray-950};
23
+
24
+ --#{$prefix}white: #{$white};
25
+ --#{$prefix}black: #{$black};
26
+ --#{$prefix}dark: #{$dark};
27
+ --#{$prefix}light: #{$light};
28
+
29
+ /** Brand colors */
30
+ --#{$prefix}brand: #{$primary};
31
+
32
+ /** Theme colors */
33
+ @each $name, $color in map-merge($theme-colors, $social-colors) {
34
+ --#{$prefix}#{$name}: #{$color};
35
+ --#{$prefix}#{$name}-rgb: #{to-rgb($color)};
36
+ --#{$prefix}#{$name}-fg: #{if(contrast-ratio($color) > $min-contrast-ratio, var(--#{$prefix}light), var(--#{$prefix}dark))};
37
+ --#{$prefix}#{$name}-darken: #{theme-color-darker($color)};
38
+ --#{$prefix}#{$name}-darken: color-mix(in oklab, var(--#{$prefix}#{$name}), transparent 20%);
39
+ --#{$prefix}#{$name}-lt: #{theme-color-lighter($color)};
40
+ --#{$prefix}#{$name}-lt: color-mix(in oklab, var(--#{$prefix}#{$name}) 10%, transparent);
41
+ --#{$prefix}#{$name}-200: color-mix(in oklab, var(--#{$prefix}#{$name}) 20%, transparent);
42
+ --#{$prefix}#{$name}-lt-rgb: #{to-rgb(theme-color-lighter($color))};
43
+ }
44
+
45
+ /** Gray colors */
46
+ @each $name, $color in $gray-colors {
47
+ --#{$prefix}#{$name}-fg: #{if(contrast-ratio($color, white) > $min-contrast-ratio, var(--#{$prefix}white), var(--#{$prefix}body-color))};
48
+ }
49
+
50
+ /** Spacers */
51
+ @each $name, $value in $spacers {
52
+ --#{$prefix}spacer-#{$name}: #{$value};
53
+ }
54
+
55
+ /** Font sizes */
56
+ @each $name, $value in $font-weights {
57
+ --#{$prefix}font-weight-#{$name}: #{$value};
58
+ }
59
+
60
+ @each $name, $value in $font-sizes {
61
+ --#{$prefix}font-size-h#{$name}: #{$value};
62
+ }
63
+
64
+ @each $name, $value in $line-heights {
65
+ --#{$prefix}line-height-#{$name}: #{$value};
66
+ }
67
+
68
+ /** Shadows */
69
+ @each $name, $value in $box-shadows {
70
+ --#{$prefix}shadow#{if($name, '-#{$name}', '')}: #{$value};
71
+ }
72
+
73
+ /** Border radiuses */
74
+ --#{$prefix}border-radius-scale: 1;
75
+ @each $name, $value in $border-radiuses {
76
+ @if $name {
77
+ --#{$prefix}border-radius-#{$name}: calc(#{$value} * var(--#{$prefix}border-radius-scale, 1));
78
+ } @else {
79
+ --#{$prefix}border-radius: #{$value};
80
+ }
81
+ }
82
+
83
+ /** Backdrops */
84
+ --#{$prefix}backdrop-opacity: #{$backdrop-opacity};
85
+ --#{$prefix}backdrop-bg: var(--#{$prefix}bg-surface-dark);
86
+ @each $name, $value in $backdrops {
87
+ --#{$prefix}backdrop-bg#{if($name, '-#{$name}', '')}: #{$value};
88
+ }
89
+ --#{$prefix}backdrop-blur: #{$backdrop-blur};
90
+ --#{$prefix}backdrop-filter: blur(var(--#{$prefix}backdrop-blur));
91
+ }
@@ -0,0 +1,73 @@
1
+ @media (min-width: 768px) {
2
+ .seven-cols .col-1 {
3
+ width: 100%;
4
+ }
5
+
6
+ .seven-cols .col-6 {
7
+ width: 85.7142857143%;
8
+ }
9
+ }
10
+
11
+ @media (min-width: 992px) {
12
+ .seven-cols .col-1 {
13
+ width: 14.285714285714285714285714285714%;
14
+ }
15
+
16
+ .seven-cols .col-2 {
17
+ width: 28.5714285714%;
18
+ }
19
+
20
+ .seven-cols .col-3 {
21
+ width: 42.8571428571%;
22
+ }
23
+
24
+ .seven-cols .col-4 {
25
+ width: 57.1428571429%;
26
+ }
27
+
28
+ .seven-cols .col-5 {
29
+ width: 71.4285714286%;
30
+ }
31
+
32
+ .seven-cols .col-6 {
33
+ width: 85.7142857143%;
34
+ }
35
+
36
+ .seven-cols .col-7 {
37
+ width: 100%;
38
+ }
39
+ }
40
+
41
+ /**
42
+ * The following is not really needed in this case
43
+ * Only to demonstrate the usage of @media for large screens
44
+ */
45
+ @media (min-width: 1200px) {
46
+ .seven-cols .col-1 {
47
+ width: 14.285714285714285714285714285714%;
48
+ }
49
+
50
+ .seven-cols .col-2 {
51
+ width: 28.5714285714%;
52
+ }
53
+
54
+ .seven-cols .col-3 {
55
+ width: 42.8571428571%;
56
+ }
57
+
58
+ .seven-cols .col-4 {
59
+ width: 57.1428571429%;
60
+ }
61
+
62
+ .seven-cols .col-5 {
63
+ width: 71.4285714286%;
64
+ }
65
+
66
+ .seven-cols .col-6 {
67
+ width: 85.7142857143%;
68
+ }
69
+
70
+ .seven-cols .col-7 {
71
+ width: 100%;
72
+ }
73
+ }
@@ -0,0 +1,25 @@
1
+ @import "core";
2
+
3
+ .upd-brand-logo {
4
+ content: var(--upd-brand-logo-src);
5
+ }
6
+
7
+ .upd-right-login-image {
8
+ content: var(--upd-right-login-image-src);
9
+ }
10
+
11
+ .upd-right-login-cover-image {
12
+ background-image: var(--upd-right-login-cover-image-bg);
13
+ }
14
+
15
+ // TODO: Workaround. Wait for resolution of bug: https://github.com/tabler/tabler/issues/2271
16
+ @media (min-width: 992px) {
17
+ :host,
18
+ :root {
19
+ margin-left: 0;
20
+ }
21
+ }
22
+
23
+ body {
24
+ overflow-y: scroll;
25
+ }