@progressiveui/react 2.0.9 → 2.1.0
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/Footer/index.d.ts +0 -1
- package/dist/components/PasswordInput/PasswordInput-test.d.ts +1 -0
- package/dist/components/PasswordInput/PasswordInput.d.ts +14 -0
- package/dist/components/PasswordInput/index.d.ts +1 -0
- package/dist/components/Text/Text.d.ts +5 -1
- package/dist/index.cjs.js +16 -16
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.es.js +1938 -2070
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +16 -16
- package/dist/index.umd.js.map +1 -1
- package/package.json +6 -5
- package/dist/components/Footer/FooterExternal.d.ts +0 -22
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progressiveui/react",
|
|
3
|
-
"version": "2.0
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "Progressive UI react components",
|
|
5
5
|
"license": "Apache-2",
|
|
6
6
|
"main": "dist/index.cjs.js",
|
|
7
7
|
"module": "dist/index.es.js",
|
|
8
8
|
"types": "dist/index.d.ts",
|
|
9
9
|
"scripts": {
|
|
10
|
-
"build": "yarn
|
|
10
|
+
"build": "yarn build:vite && yarn build:demos && yarn generate:types",
|
|
11
11
|
"clean": "rimraf es lib umd storybook-static build react-docgen.json",
|
|
12
12
|
"build:rollup": "rollup -c --bundleConfigAsCjs",
|
|
13
13
|
"build:demos": "rollup -c rollupDemos.config.js --bundleConfigAsCjs",
|
|
@@ -48,6 +48,7 @@
|
|
|
48
48
|
"react-frame-component": "^5.2.6",
|
|
49
49
|
"react-popper-tooltip": "^4.4.2",
|
|
50
50
|
"react-transition-state": "^2.3.1",
|
|
51
|
+
"rollup-plugin-esbuild": "^6.2.1",
|
|
51
52
|
"warning": "^4.0.3",
|
|
52
53
|
"whatwg-fetch": "^3.6.20",
|
|
53
54
|
"window-or-global": "^1.0.1",
|
|
@@ -58,8 +59,8 @@
|
|
|
58
59
|
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
|
|
59
60
|
"@babel/traverse": "^7.27.0",
|
|
60
61
|
"@fontsource-variable/open-sans": "^5.2.5",
|
|
61
|
-
"@progressiveui/icons-react": "^10.38.
|
|
62
|
-
"@progressiveui/styles": "^11.0.
|
|
62
|
+
"@progressiveui/icons-react": "^10.38.2",
|
|
63
|
+
"@progressiveui/styles": "^11.0.8",
|
|
63
64
|
"@progressiveui/themes-core": "^0.4.1",
|
|
64
65
|
"@rollup/plugin-babel": "^6.0.4",
|
|
65
66
|
"@rollup/plugin-commonjs": "^28.0.3",
|
|
@@ -148,5 +149,5 @@
|
|
|
148
149
|
"url": "https://github.com/Polyxo/pui.git"
|
|
149
150
|
},
|
|
150
151
|
"bundleSizeThreshold": 80000,
|
|
151
|
-
"gitHead": "
|
|
152
|
+
"gitHead": "dc05c7551b8dee4255924fe28154670b6d2871d0"
|
|
152
153
|
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { PropsWithChildren } from 'react';
|
|
2
|
-
import { ScreenSize } from '../../utils';
|
|
3
|
-
import * as React from "react";
|
|
4
|
-
type FooterExternalProps = PropsWithChildren<{
|
|
5
|
-
className?: string;
|
|
6
|
-
productName?: React.ReactNode;
|
|
7
|
-
metaContent?: React.ReactNode;
|
|
8
|
-
metaLinks?: React.ReactNode;
|
|
9
|
-
pageWidth?: ScreenSize;
|
|
10
|
-
}>;
|
|
11
|
-
declare const FooterExternal: React.FC<FooterExternalProps>;
|
|
12
|
-
type LinksColumnProps = PropsWithChildren<{
|
|
13
|
-
className?: string;
|
|
14
|
-
title?: string;
|
|
15
|
-
}>;
|
|
16
|
-
declare const LinksColumn: React.FC<LinksColumnProps>;
|
|
17
|
-
export interface FooterMetaLinkProps extends React.AnchorHTMLAttributes<HTMLAnchorElement> {
|
|
18
|
-
className?: string;
|
|
19
|
-
href?: string;
|
|
20
|
-
}
|
|
21
|
-
declare const FooterMetaLink: React.FC<FooterMetaLinkProps>;
|
|
22
|
-
export { FooterExternal, LinksColumn, FooterMetaLink };
|