@bizy/core 20.10.3 → 20.10.5
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/fesm2022/bizy-core.mjs +24 -8
- package/fesm2022/bizy-core.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/package.json +1 -1
- package/styles/normalize.css +1 -1
- package/styles/variables.css +7 -0
package/index.d.ts
CHANGED
package/package.json
CHANGED
package/styles/normalize.css
CHANGED
|
@@ -6,7 +6,7 @@ body {
|
|
|
6
6
|
body {
|
|
7
7
|
margin: 0;
|
|
8
8
|
font-family: var(--bizy-font-family);
|
|
9
|
-
font-size:
|
|
9
|
+
font-size: var(--bizy-font-size);
|
|
10
10
|
padding-top: env(safe-area-inset-top);
|
|
11
11
|
padding-right: env(safe-area-inset-right);
|
|
12
12
|
padding-bottom: env(safe-area-inset-bottom);
|
package/styles/variables.css
CHANGED
|
@@ -133,6 +133,7 @@
|
|
|
133
133
|
--bizy-filter-section-min-width: 8rem;
|
|
134
134
|
|
|
135
135
|
--bizy-font-family: Roboto, "Helvetica Neue", sans-serif;
|
|
136
|
+
--bizy-font-size: clamp(12px, 1vmax, 16px);
|
|
136
137
|
|
|
137
138
|
--bizy-form-max-width: 40rem;
|
|
138
139
|
--bizy-form-row-gap: 1rem;
|
|
@@ -155,12 +156,18 @@
|
|
|
155
156
|
--bizy-heat-map-chart-tooltip-border-color: #fff;
|
|
156
157
|
--bizy-heat-map-chart-x-highlight-area-background-color: #c5dcf34d;
|
|
157
158
|
--bizy-heat-map-chart-x-highlight-area-border-color: var(--bizy-info-color);
|
|
159
|
+
--bizy-heat-map-chart-x-highlight-area-border-width: 0.5;
|
|
158
160
|
--bizy-heat-map-chart-y-highlight-area-background-color: #f3c5c54d;
|
|
159
161
|
--bizy-heat-map-chart-y-highlight-area-border-color: var(--bizy-danger-color);
|
|
162
|
+
--bizy-heat-map-chart-y-highlight-area-border-width: 0.5;
|
|
160
163
|
--bizy-heat-map-chart-x-highlight-line-color: var(--bizy-danger-color);
|
|
161
164
|
--bizy-heat-map-chart-x-highlight-line-label-color: var(--bizy-default-color);
|
|
165
|
+
--bizy-heat-map-chart-x-highlight-line-width: 1;
|
|
166
|
+
--bizy-heat-map-chart-x-highlight-line-style: solid;
|
|
162
167
|
--bizy-heat-map-chart-y-highlight-line-color: var(--bizy-danger-color);
|
|
163
168
|
--bizy-heat-map-chart-y-highlight-line-label-color: var(--bizy-default-color);
|
|
169
|
+
--bizy-heat-map-chart-y-highlight-line-width: 1;
|
|
170
|
+
--bizy-heat-map-chart-y-highlight-line-style: solid;
|
|
164
171
|
|
|
165
172
|
--bizy-input-background-color: #fff;
|
|
166
173
|
--bizy-input-focus-color: var(--bizy-info-color);
|