@delightui/components 0.1.13 → 0.1.15
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/cjs/App.d.ts +1 -0
- package/dist/cjs/components/atoms/Button/Button.types.d.ts +1 -1
- package/dist/cjs/library.css +12329 -191
- package/dist/cjs/library.js.map +1 -1
- package/dist/cjs/modules/theme/ThemeProvider.d.ts +1 -0
- package/dist/esm/App.d.ts +1 -0
- package/dist/esm/components/atoms/Button/Button.types.d.ts +1 -1
- package/dist/esm/library.css +12329 -191
- package/dist/esm/library.js.map +1 -1
- package/dist/esm/modules/theme/ThemeProvider.d.ts +1 -0
- package/dist/index.d.ts +1 -1
- package/package.json +2 -1
|
@@ -2,6 +2,7 @@ import React from 'react';
|
|
|
2
2
|
import type { ThemeContextType, ThemeProviderProps } from './ThemeProvider.types';
|
|
3
3
|
import '../../resources/scss/fonts.scss';
|
|
4
4
|
import '../../resources/themes/base.css';
|
|
5
|
+
import '../../resources/themes/override.css';
|
|
5
6
|
import '../../resources/themes/light.css';
|
|
6
7
|
import '../../resources/themes/dark.css';
|
|
7
8
|
export declare const ThemeContext: React.Context<ThemeContextType>;
|
package/dist/esm/App.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { HTMLAttributes, ReactNode, MouseEvent } from 'react';
|
|
2
|
-
export type ButtonTypeEnum = 'Filled' | 'Outlined' | 'Ghost';
|
|
3
2
|
export type ButtonAppearanceEnum = 'Default' | 'Inverse';
|
|
3
|
+
export type ButtonTypeEnum = 'Filled' | 'Outlined' | 'Ghost';
|
|
4
4
|
export type ButtonStyleEnum = 'Primary' | 'Secondary' | 'Destructive';
|
|
5
5
|
export type ButtonSizeEnum = 'Small' | 'Medium' | 'Large';
|
|
6
6
|
export type ButtonActionTypeEnum = 'button' | 'submit' | 'reset';
|