@scalably/ui 0.16.8 → 0.16.9
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/README.md +2 -2
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.esm.js +3 -3
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/styles.css +2 -2
- package/package.json +2 -4
package/README.md
CHANGED
|
@@ -296,7 +296,7 @@ You can access the latest published Storybook at: `https://scalably.com/dev/stor
|
|
|
296
296
|
|
|
297
297
|
### Typography
|
|
298
298
|
|
|
299
|
-
- **Font Family**: Poppins (primary), Inter (fallback), system-ui
|
|
299
|
+
- **Font Family**: Poppins (Latin primary), Noto Sans JP (Japanese support), Inter (fallback), system-ui
|
|
300
300
|
- **Font Sizes**: 12px, 14px, 16px, 20px, 24px with 150% line-height and -2% letter-spacing
|
|
301
301
|
- **Font Weights**: 400 (normal), 500 (medium), 600 (semibold), 700 (bold)
|
|
302
302
|
|
|
@@ -304,7 +304,7 @@ You can access the latest published Storybook at: `https://scalably.com/dev/stor
|
|
|
304
304
|
|
|
305
305
|
### Fonts
|
|
306
306
|
|
|
307
|
-
The library uses the **Poppins** font
|
|
307
|
+
The library uses the **Poppins** and **Noto Sans JP** font families (with **Inter** and system fonts as fallbacks) and loads both via Google Fonts from within the bundled CSS. In most setups you do **not** need to add additional font imports, but if your build pipeline blocks remote `@import` rules, you can alternatively include Poppins and Noto Sans JP yourself (e.g., via Google Fonts or `@fontsource/poppins` / `@fontsource/noto-sans-jp`) to ensure consistent multilingual typography.
|
|
308
308
|
|
|
309
309
|
### Tailwind Config
|
|
310
310
|
|
package/dist/index.d.cts
CHANGED
|
@@ -312,7 +312,7 @@ interface BottomNavigationV2Props {
|
|
|
312
312
|
toggleButton?: boolean | BottomNavigationToggleButtonOptions;
|
|
313
313
|
}
|
|
314
314
|
|
|
315
|
-
declare const BottomNavigationV2: react.ForwardRefExoticComponent<BottomNavigationV2Props & react.RefAttributes<
|
|
315
|
+
declare const BottomNavigationV2: react.ForwardRefExoticComponent<BottomNavigationV2Props & react.RefAttributes<HTMLElement>>;
|
|
316
316
|
|
|
317
317
|
/**
|
|
318
318
|
* BottomNavigation - A mobile-optimized bottom navigation bar with animated interactions.
|
package/dist/index.d.ts
CHANGED
|
@@ -312,7 +312,7 @@ interface BottomNavigationV2Props {
|
|
|
312
312
|
toggleButton?: boolean | BottomNavigationToggleButtonOptions;
|
|
313
313
|
}
|
|
314
314
|
|
|
315
|
-
declare const BottomNavigationV2: react.ForwardRefExoticComponent<BottomNavigationV2Props & react.RefAttributes<
|
|
315
|
+
declare const BottomNavigationV2: react.ForwardRefExoticComponent<BottomNavigationV2Props & react.RefAttributes<HTMLElement>>;
|
|
316
316
|
|
|
317
317
|
/**
|
|
318
318
|
* BottomNavigation - A mobile-optimized bottom navigation bar with animated interactions.
|