@gomeniucivan/ui 1.0.54 → 1.0.55
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/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +95 -95
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +95 -95
- package/dist/index.mjs.map +1 -1
- package/loader.js +16 -115
- package/package.json +3 -2
- package/scripts/stylePathTransform.js +229 -0
package/dist/index.d.mts
CHANGED
|
@@ -4558,7 +4558,7 @@ interface ThemeProviderProps$1<T, S = Record<string, string>> {
|
|
|
4558
4558
|
* - `false` — always disabled
|
|
4559
4559
|
* - `'auto'` — enabled when running on localhost, disabled otherwise
|
|
4560
4560
|
*
|
|
4561
|
-
* @default
|
|
4561
|
+
* @default auto
|
|
4562
4562
|
*/
|
|
4563
4563
|
isDebug?: boolean | 'auto';
|
|
4564
4564
|
}
|
|
@@ -4591,7 +4591,7 @@ declare global {
|
|
|
4591
4591
|
var __ANTD_STYLE_CACHE_MANAGER_FOR_SSR__: CacheManager;
|
|
4592
4592
|
}
|
|
4593
4593
|
|
|
4594
|
-
declare const createStyles: <Props, Input extends BaseReturnType = BaseReturnType>(styleOrGetStyle: StyleOrGetStyleFn<Input, Props>, options?: ClassNameGeneratorOption) => (props?: Props) => ReturnStyles<Input>;
|
|
4594
|
+
declare const createStyles: <Props, Input extends BaseReturnType = BaseReturnType>(styleOrGetStyle: StyleOrGetStyleFn<Input, Props>, options?: ClassNameGeneratorOption, fallbackOptions?: ClassNameGeneratorOption) => (props?: Props) => ReturnStyles<Input>;
|
|
4595
4595
|
declare const cx: ClassNamesUtil;
|
|
4596
4596
|
|
|
4597
4597
|
declare const generateCustomStylish: GetCustomStylish<LobeCustomStylish>;
|
package/dist/index.d.ts
CHANGED
|
@@ -4558,7 +4558,7 @@ interface ThemeProviderProps$1<T, S = Record<string, string>> {
|
|
|
4558
4558
|
* - `false` — always disabled
|
|
4559
4559
|
* - `'auto'` — enabled when running on localhost, disabled otherwise
|
|
4560
4560
|
*
|
|
4561
|
-
* @default
|
|
4561
|
+
* @default auto
|
|
4562
4562
|
*/
|
|
4563
4563
|
isDebug?: boolean | 'auto';
|
|
4564
4564
|
}
|
|
@@ -4591,7 +4591,7 @@ declare global {
|
|
|
4591
4591
|
var __ANTD_STYLE_CACHE_MANAGER_FOR_SSR__: CacheManager;
|
|
4592
4592
|
}
|
|
4593
4593
|
|
|
4594
|
-
declare const createStyles: <Props, Input extends BaseReturnType = BaseReturnType>(styleOrGetStyle: StyleOrGetStyleFn<Input, Props>, options?: ClassNameGeneratorOption) => (props?: Props) => ReturnStyles<Input>;
|
|
4594
|
+
declare const createStyles: <Props, Input extends BaseReturnType = BaseReturnType>(styleOrGetStyle: StyleOrGetStyleFn<Input, Props>, options?: ClassNameGeneratorOption, fallbackOptions?: ClassNameGeneratorOption) => (props?: Props) => ReturnStyles<Input>;
|
|
4595
4595
|
declare const cx: ClassNamesUtil;
|
|
4596
4596
|
|
|
4597
4597
|
declare const generateCustomStylish: GetCustomStylish<LobeCustomStylish>;
|