@nova-design-system/nova-base 3.21.1-beta.0 → 3.23.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/nova-fonts.css +3 -3
- package/dist/cjs/generated/nova-tailwind-components.js +0 -1
- package/dist/css/nova-utils.css +0 -2
- package/dist/css/ocean.css +232 -162
- package/dist/css/spark.css +234 -164
- package/dist/generated/nova-tailwind-components.d.ts +0 -1
- package/dist/generated/nova-tailwind-components.js +0 -1
- package/dist/js/ocean_dark.d.ts +79 -64
- package/dist/js/ocean_dark.js +86 -71
- package/dist/js/ocean_light.d.ts +79 -64
- package/dist/js/ocean_light.js +79 -64
- package/dist/js/spacings.d.ts +84 -44
- package/dist/js/spacings.js +84 -44
- package/dist/js/spark_dark.d.ts +79 -64
- package/dist/js/spark_dark.js +87 -72
- package/dist/js/spark_light.d.ts +79 -64
- package/dist/js/spark_light.js +79 -64
- package/package.json +1 -1
package/assets/nova-fonts.css
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
@import 'https://fonts.googleapis.com/css2?family=Outfit:wght@400&display=swap';
|
|
2
2
|
|
|
3
3
|
:root {
|
|
4
|
-
--font-family-base: 'TT Norms Pro',
|
|
5
|
-
--nv-sidebarlogo-font-family: 'Outfit',
|
|
4
|
+
--font-family-base: 'TT Norms Pro', montserrat, sans-serif;
|
|
5
|
+
--nv-sidebarlogo-font-family: 'Outfit', var(--font-family-base);
|
|
6
6
|
--nv-sidebarlogo-font-weight: 400;
|
|
7
7
|
--nv-sidebarlogo-font-size: 2rem;
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
body {
|
|
11
|
-
font-family: var(--font-family-base
|
|
11
|
+
font-family: var(--font-family-base);
|
|
12
12
|
}
|
|
@@ -131,7 +131,6 @@ exports.NOVA_TAILWIND_COMPONENTS = {
|
|
|
131
131
|
'boxShadow': '0px 0px 0px var(--focus-field-stroke) var(--nv-field-focus-box-shadow)'
|
|
132
132
|
},
|
|
133
133
|
'.nv-fieldtext > .input-wrapper .input-container:has(input:read-only)': {
|
|
134
|
-
'opacity': '0.5',
|
|
135
134
|
'backgroundColor': 'var(--components-form-field-background-readonly)',
|
|
136
135
|
'borderColor': 'var(--nv-field-border-readonly)'
|
|
137
136
|
},
|
package/dist/css/nova-utils.css
CHANGED
|
@@ -7611,13 +7611,11 @@ h6 {
|
|
|
7611
7611
|
}
|
|
7612
7612
|
|
|
7613
7613
|
.nv-fieldtext > .input-wrapper .input-container:has(input:-moz-read-only) {
|
|
7614
|
-
opacity: 0.5;
|
|
7615
7614
|
background-color: var(--components-form-field-background-readonly);
|
|
7616
7615
|
border-color: var(--nv-field-border-readonly);
|
|
7617
7616
|
}
|
|
7618
7617
|
|
|
7619
7618
|
.nv-fieldtext > .input-wrapper .input-container:has(input:read-only) {
|
|
7620
|
-
opacity: 0.5;
|
|
7621
7619
|
background-color: var(--components-form-field-background-readonly);
|
|
7622
7620
|
border-color: var(--nv-field-border-readonly);
|
|
7623
7621
|
}
|