@react95/core 9.6.2 → 9.6.3
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/cjs/Button/Button.cjs +12 -13
- package/cjs/Frame/Frame.cjs +4 -4
- package/cjs/List/List.cjs +4 -2
- package/cjs/List/ListDivider.cjs +12 -2
- package/cjs/List/ListItem.cjs +14 -3
- package/cjs/TitleBar/TitleBar.cjs +44 -54
- package/cjs/Video/Video.cjs +0 -1
- package/cjs/themes/azureOrange.css.cjs +1 -0
- package/cjs/themes/contract.css.cjs +0 -1
- package/esm/Button/Button.mjs +12 -13
- package/esm/Frame/Frame.mjs +5 -5
- package/esm/List/List.mjs +6 -4
- package/esm/List/ListDivider.mjs +14 -4
- package/esm/List/ListItem.mjs +16 -5
- package/esm/TitleBar/TitleBar.mjs +44 -54
- package/esm/Video/Video.mjs +0 -1
- package/esm/themes/azureOrange.css.mjs +1 -0
- package/esm/themes/contract.css.mjs +0 -1
- package/package.json +3 -2
- package/types/Alert/Alert.d.ts +2374 -1
- package/types/Avatar/Avatar.d.ts +2 -2
- package/types/Button/Button.d.ts +3 -3
- package/types/Dropdown/Dropdown.d.ts +1 -1
- package/types/Fieldset/Fieldset.d.ts +1 -1
- package/types/Frame/Frame.d.ts +11 -2370
- package/types/GlobalStyle/GlobalStyle.css.d.ts +1 -0
- package/types/GlobalStyle/index.d.ts +1 -0
- package/types/GlobalStyle/utils.d.ts +15 -0
- package/types/Input/Input.d.ts +2364 -3
- package/types/List/List.d.ts +10 -7
- package/types/List/ListDivider.d.ts +6 -4
- package/types/List/ListItem.d.ts +9 -7
- package/types/Modal/Modal.d.ts +7 -10
- package/types/ProgressBar/ProgressBar.d.ts +2 -2
- package/types/Range/Range.d.ts +2364 -3
- package/types/Tabs/Tab.d.ts +2369 -3
- package/types/Tabs/Tabs.d.ts +2368 -3
- package/types/TaskBar/TaskBar.d.ts +2366 -3
- package/types/TextArea/TextArea.d.ts +2364 -3
- package/types/TitleBar/TitleBar.d.ts +7 -2372
- package/types/Tree/Node.d.ts +2 -2
- package/types/Tree/Tree.d.ts +3 -3
- package/types/Video/Video.d.ts +2367 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * as GlobalStyle from './GlobalStyle.css';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
interface IBorderStyle {
|
|
2
|
+
direction?: 'extrude' | 'intrude';
|
|
3
|
+
}
|
|
4
|
+
interface IBorder extends IBorderStyle {
|
|
5
|
+
outerTopLeft: string;
|
|
6
|
+
innerTopLeft: string;
|
|
7
|
+
outerBottomRight: string;
|
|
8
|
+
innerBottomRight: string;
|
|
9
|
+
}
|
|
10
|
+
export declare const createBorder: ({ direction, outerTopLeft, innerTopLeft, outerBottomRight, innerBottomRight, }: IBorder) => {
|
|
11
|
+
border: number;
|
|
12
|
+
boxShadow: string;
|
|
13
|
+
};
|
|
14
|
+
export declare const createTriangleSVG: (color: string, angle?: number) => string;
|
|
15
|
+
export {};
|