@nubisco/ui 1.48.1 → 1.49.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/dist/components/DatePicker.vue.d.ts +1 -1
- package/dist/components/NumberInput.vue.d.ts +1 -1
- package/dist/components/NumberInput.vue.d.ts.map +1 -1
- package/dist/components/Select.vue.d.ts +1 -1
- package/dist/components/Select.vue.d.ts.map +1 -1
- package/dist/components/ShellPanel.vue.d.ts.map +1 -1
- package/dist/components/Slider.vue.d.ts +1 -1
- package/dist/components/TextInput.vue.d.ts +1 -1
- package/dist/components/TextInput.vue.d.ts.map +1 -1
- package/dist/directives/ToolTip.directive.d.ts.map +1 -1
- package/dist/index.cjs +8 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +10130 -10091
- package/dist/index.mjs.map +1 -1
- package/dist/ui.css +1 -1
- package/package.json +1 -1
- package/src/styles/_theme.scss +4 -0
package/package.json
CHANGED
package/src/styles/_theme.scss
CHANGED
|
@@ -203,6 +203,10 @@
|
|
|
203
203
|
// Form field tokens: heights and padding relative to --nb-base-unit (8px)
|
|
204
204
|
--nb-c-field-bg: var(--nb-c-french-gray-100);
|
|
205
205
|
--nb-c-field-border: var(--nb-c-french-gray-500);
|
|
206
|
+
// xs is the compact size for dense surfaces (inspectors, toolbars).
|
|
207
|
+
// Distinctly smaller than sm; pair with a 13px field font. See the
|
|
208
|
+
// "Building an inspector" guide in the docs before reaching for it.
|
|
209
|
+
--nb-field-height-xs: calc(var(--nb-base-unit) * 3.5);
|
|
206
210
|
--nb-field-height-sm: calc(var(--nb-base-unit) * 4);
|
|
207
211
|
--nb-field-height-md: calc(var(--nb-base-unit) * 5);
|
|
208
212
|
--nb-field-height-lg: calc(var(--nb-base-unit) * 6);
|