@youngonesworks/ui 0.1.31 → 0.1.34
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/favouriteButton/index.d.ts +4 -4
- package/dist/components/passwordInput/index.d.ts +21 -3
- package/dist/components/popover/index.d.ts +8 -3
- package/dist/components/tabs/index.d.ts +1 -0
- package/dist/components/textInput/index.d.ts +24 -4
- package/dist/index.cjs +25 -20
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +25 -20
- package/dist/index.js.map +1 -1
- package/dist/jsx-runtime-shim.d.ts +3 -1
- package/dist/styles/utilities.css +3 -0
- package/dist/utils/formatIcon.d.ts +1 -1
- package/package.json +3 -3
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
export declare const jsx: typeof React.createElement;
|
|
3
3
|
export declare const jsxs: typeof React.createElement;
|
|
4
|
-
export declare const Fragment: React.ExoticComponent<
|
|
4
|
+
export declare const Fragment: React.ExoticComponent<{
|
|
5
|
+
children?: React.ReactNode | undefined;
|
|
6
|
+
}>;
|
|
@@ -37,6 +37,9 @@
|
|
|
37
37
|
.bg-linear-gradient-x {
|
|
38
38
|
background-image: var(--color-linear-gradient-x);
|
|
39
39
|
}
|
|
40
|
+
.bg-gradient-blue-pink {
|
|
41
|
+
background-image: var(--color-linear-gradient-x) !important;
|
|
42
|
+
}
|
|
40
43
|
.bg-gradient-blue-green-y {
|
|
41
44
|
background-image: var(--color-gradient-blue-green-y);
|
|
42
45
|
}
|
|
@@ -5,4 +5,4 @@ import { type TablerIconsProps } from '@tabler/icons-react';
|
|
|
5
5
|
* always supersede default attributes which in term will supersede
|
|
6
6
|
* global default attributes.
|
|
7
7
|
*/
|
|
8
|
-
export default function formatIcon(icon: ReactNode, defaultFormatAttributes: (SVGAttributes<SVGElement> & HTMLAttributes<SVGElement>) | TablerIconsProps): string | number |
|
|
8
|
+
export default function formatIcon(icon: ReactNode, defaultFormatAttributes: (SVGAttributes<SVGElement> & HTMLAttributes<SVGElement>) | TablerIconsProps): string | number | boolean | React.ReactElement<any, string | React.JSXElementConstructor<any>> | Iterable<React.ReactNode> | null | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@youngonesworks/ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.34",
|
|
4
4
|
"description": "A Youngones UI component library",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -97,8 +97,8 @@
|
|
|
97
97
|
"@testing-library/user-event": "^14.4.3",
|
|
98
98
|
"@types/jest": "^30.0.0",
|
|
99
99
|
"@types/node": "^24.0.3",
|
|
100
|
-
"@types/react": "
|
|
101
|
-
"@types/react-dom": "
|
|
100
|
+
"@types/react": "18",
|
|
101
|
+
"@types/react-dom": "18",
|
|
102
102
|
"@typescript-eslint/eslint-plugin": "^8.34.1",
|
|
103
103
|
"@typescript-eslint/parser": "^8.34.1",
|
|
104
104
|
"autoprefixer": "^10.4.21",
|