@itfin/components 1.2.90 → 1.2.91

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itfin/components",
3
- "version": "1.2.90",
3
+ "version": "1.2.91",
4
4
  "author": "Vitalii Savchuk <esvit666@gmail.com>",
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -0,0 +1,34 @@
1
+ // Include functions first (so you can manipulate colors, SVGs, calc, etc)
2
+ @import "~bootstrap/scss/functions.scss";
3
+
4
+ // Include remainder of required Bootstrap stylesheets
5
+ @import "~bootstrap/scss/variables.scss";
6
+ @import "~bootstrap/scss/mixins.scss";
7
+ @import "~bootstrap/scss/maps.scss";
8
+ @import "~bootstrap/scss/utilities.scss";
9
+
10
+ $custom-colors: (
11
+ "white": #fff,
12
+ "black": #1e1e1e
13
+ );
14
+ $theme-colors: map-merge($theme-colors, $custom-colors);
15
+
16
+ // Text colors
17
+ $all-colors: map-merge-multiple($theme-colors, $custom-colors, $blues, $indigos, $purples, $pinks, $reds, $oranges, $yellows, $greens, $teals, $cyans);
18
+ $utilities: map-merge(
19
+ $utilities,
20
+ (
21
+ "color": map-merge(
22
+ map-get($utilities, "color"),
23
+ (
24
+ values: map-merge(
25
+ map-get(map-get($utilities, "color"), "values"),
26
+ (
27
+ $all-colors
28
+ ),
29
+ ),
30
+ ),
31
+ ),
32
+ )
33
+ );
34
+ //@import "~bootstrap/scss/utilities/api"; // створює дублікати класів, які вже є в bootstrap
@@ -1,4 +1,5 @@
1
1
  @import './variables.scss';
2
+ @import './bootstrap.scss';
2
3
 
3
4
  $color-income: #0d935b;
4
5
  $color-outcome: #b91e1e;
@@ -1,7 +1,4 @@
1
- // 1. Include functions first (so you can manipulate colors, SVGs, calc, etc)
2
- @import "~bootstrap/scss/functions.scss";
3
-
4
- // 2. Include any default variable overrides here
1
+ // Include any default variable overrides here
5
2
  $font-family-base: 'Fira Sans', sans-serif;
6
3
  $headings-font-family: 'Fira Sans', sans-serif;
7
4
  $font-family-monospace: "Fira Mono", "Courier New", monospace;
@@ -76,38 +73,6 @@ $dark-input-focus-border: rgb(244 206 176 / 25%);
76
73
 
77
74
  $pagination-border-width: 0;
78
75
 
79
- // 3. Include remainder of required Bootstrap stylesheets
80
- @import "~bootstrap/scss/variables.scss";
81
- @import "~bootstrap/scss/mixins.scss";
82
- @import "~bootstrap/scss/maps.scss";
83
- @import "~bootstrap/scss/utilities.scss";
84
-
85
- $custom-colors: (
86
- "white": #fff,
87
- "black": #1e1e1e
88
- );
89
- $theme-colors: map-merge($theme-colors, $custom-colors);
90
-
91
- // Text colors
92
- $all-colors: map-merge-multiple($theme-colors, $custom-colors, $blues, $indigos, $purples, $pinks, $reds, $oranges, $yellows, $greens, $teals, $cyans);
93
- $utilities: map-merge(
94
- $utilities,
95
- (
96
- "color": map-merge(
97
- map-get($utilities, "color"),
98
- (
99
- values: map-merge(
100
- map-get(map-get($utilities, "color"), "values"),
101
- (
102
- $all-colors
103
- ),
104
- ),
105
- ),
106
- ),
107
- )
108
- );
109
- @import "~bootstrap/scss/utilities/api";
110
-
111
76
  // Fonts
112
77
  $baseFontSize: 16px;
113
78
  $hintFontSize: 12px;
@@ -1,5 +1,6 @@
1
1
  @import "variables.scss";
2
2
  @import "../../variables.scss";
3
+ @import "../../bootstrap.scss";
3
4
 
4
5
  .pdf-app {
5
6
  --pdf-app-background-color: #{$pdf-app-background-color};
@@ -1,4 +1,5 @@
1
1
  @import '../variables';
2
+ @import '../bootstrap';
2
3
 
3
4
  $tooltip-color: #fff9ae;
4
5
  $dark-tooltip-color: #7b52eb;
@@ -1,5 +1,6 @@
1
1
  @import "variables.scss";
2
2
  @import "../../../assets/scss/variables.scss";
3
+ @import "../../../assets/scss/bootstrap.scss";
3
4
 
4
5
  .pdf-app {
5
6
  --pdf-app-background-color: #{$pdf-app-background-color};