@plurid/plurid-ui-components-react 0.0.0-1 → 0.0.0-5
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/distribution/components/pluridal/notifications/Notification/index.d.ts +1 -1
- package/distribution/components/pluridal/toolbars/ToolbarControls/styled.d.ts +1 -1
- package/distribution/components/universal/index.d.ts +3 -0
- package/distribution/components/universal/inputs/EntityPill/index.d.ts +11 -0
- package/distribution/components/universal/inputs/EntityPill/styled.d.ts +5 -0
- package/distribution/components/universal/inputs/EntityPillGroup/index.d.ts +13 -0
- package/distribution/components/universal/inputs/EntityPillGroup/styled.d.ts +5 -0
- package/distribution/components/universal/inputs/index.d.ts +2 -0
- package/distribution/components/universal/markers/Spinner/index.d.ts +2 -0
- package/distribution/components/universal/varia/CopyableLine/index.d.ts +10 -0
- package/distribution/components/universal/varia/NewPageLink/index.d.ts +14 -0
- package/distribution/components/universal/varia/NewPageLink/styled.d.ts +3 -0
- package/distribution/components/universal/varia/ScrollableLine/index.d.ts +0 -3
- package/distribution/components/universal/varia/ScrollableLine/styled.d.ts +0 -3
- package/distribution/components/universal/varia/index.d.ts +1 -0
- package/distribution/data/interfaces/index.d.ts +4 -0
- package/distribution/index.d.ts +1 -2
- package/distribution/index.es.js +2675 -3242
- package/distribution/index.es.js.map +1 -1
- package/distribution/index.js +2693 -3252
- package/distribution/index.js.map +1 -1
- package/package.json +32 -29
- package/distribution/data/constants/index.d.ts +0 -8
- package/distribution/utilities/react/index.d.ts +0 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plurid/plurid-ui-components-react",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-5",
|
|
4
4
|
"description": "Plurid User Interface Components for React",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"plurid",
|
|
@@ -48,6 +48,7 @@
|
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
50
|
"@plurid/plurid-functions": "*",
|
|
51
|
+
"@plurid/plurid-functions-react": "*",
|
|
51
52
|
"@plurid/plurid-icons-react": "*",
|
|
52
53
|
"@plurid/plurid-themes": "*",
|
|
53
54
|
"@plurid/plurid-ui-state-react": "*",
|
|
@@ -59,47 +60,49 @@
|
|
|
59
60
|
"styled-components": ">=5"
|
|
60
61
|
},
|
|
61
62
|
"devDependencies": {
|
|
62
|
-
"@babel/core": "^7.
|
|
63
|
-
"@plurid/plurid-functions": "^0.0.0-
|
|
64
|
-
"@plurid/plurid-
|
|
63
|
+
"@babel/core": "^7.15.8",
|
|
64
|
+
"@plurid/plurid-functions": "^0.0.0-11",
|
|
65
|
+
"@plurid/plurid-functions-react": "^0.0.0-4",
|
|
66
|
+
"@plurid/plurid-icons-react": "^0.0.0-1",
|
|
65
67
|
"@plurid/plurid-themes": "^0.0.0-0",
|
|
66
|
-
"@plurid/plurid-ui-state-react": "^0.0.0-
|
|
67
|
-
"@storybook/addon-actions": "^6.
|
|
68
|
+
"@plurid/plurid-ui-state-react": "^0.0.0-2",
|
|
69
|
+
"@storybook/addon-actions": "^6.3.11",
|
|
68
70
|
"@storybook/addon-info": "^5.3.21",
|
|
69
|
-
"@storybook/addon-knobs": "^6.1
|
|
70
|
-
"@storybook/addon-links": "^6.
|
|
71
|
-
"@storybook/addons": "^6.
|
|
72
|
-
"@storybook/react": "^6.
|
|
71
|
+
"@storybook/addon-knobs": "^6.3.1",
|
|
72
|
+
"@storybook/addon-links": "^6.3.11",
|
|
73
|
+
"@storybook/addons": "^6.3.11",
|
|
74
|
+
"@storybook/react": "^6.3.11",
|
|
73
75
|
"@svgr/rollup": "^5.5.0",
|
|
74
|
-
"@types/enzyme": "^3.10.
|
|
76
|
+
"@types/enzyme": "^3.10.9",
|
|
75
77
|
"@types/enzyme-adapter-react-16": "^1.0.6",
|
|
76
|
-
"@types/jest": "^
|
|
77
|
-
"@types/react": "^17.0.
|
|
78
|
-
"@types/react-dom": "^17.0.
|
|
79
|
-
"@types/react-redux": "^7.1.
|
|
80
|
-
"@types/styled-components": "^5.1.
|
|
81
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
82
|
-
"@typescript-eslint/parser": "^
|
|
78
|
+
"@types/jest": "^27.0.2",
|
|
79
|
+
"@types/react": "^17.0.29",
|
|
80
|
+
"@types/react-dom": "^17.0.9",
|
|
81
|
+
"@types/react-redux": "^7.1.19",
|
|
82
|
+
"@types/styled-components": "^5.1.15",
|
|
83
|
+
"@typescript-eslint/eslint-plugin": "^5.0.0",
|
|
84
|
+
"@typescript-eslint/parser": "^5.0.0",
|
|
83
85
|
"@zerollup/ts-transform-paths": "^1.7.18",
|
|
84
86
|
"awesome-typescript-loader": "^5.2.1",
|
|
85
87
|
"babel-loader": "^8.2.2",
|
|
86
88
|
"enzyme": "^3.11.0",
|
|
87
89
|
"enzyme-adapter-react-16": "^1.15.6",
|
|
88
|
-
"eslint": "^
|
|
89
|
-
"jest": "^
|
|
90
|
-
"react": "^17.0.
|
|
90
|
+
"eslint": "^8.0.0",
|
|
91
|
+
"jest": "^27.2.5",
|
|
92
|
+
"react": "^17.0.2",
|
|
91
93
|
"react-docgen-typescript-loader": "^3.7.2",
|
|
92
94
|
"react-docgen-typescript-webpack-plugin": "^1.1.0",
|
|
93
|
-
"react-dom": "^17.0.
|
|
94
|
-
"react-redux": "^7.2.
|
|
95
|
-
"react-test-renderer": "^17.0.
|
|
96
|
-
"redux": "^4.
|
|
95
|
+
"react-dom": "^17.0.2",
|
|
96
|
+
"react-redux": "^7.2.5",
|
|
97
|
+
"react-test-renderer": "^17.0.2",
|
|
98
|
+
"redux": "^4.1.1",
|
|
97
99
|
"redux-thunk": "^2.3.0",
|
|
98
|
-
"rollup": "^2.
|
|
100
|
+
"rollup": "^2.58.0",
|
|
101
|
+
"rollup-plugin-terser": "^7.0.2",
|
|
99
102
|
"rollup-plugin-typescript2": "^0.30.0",
|
|
100
|
-
"styled-components": "^5.
|
|
101
|
-
"ts-jest": "^
|
|
103
|
+
"styled-components": "^5.3.1",
|
|
104
|
+
"ts-jest": "^27.0.5",
|
|
102
105
|
"ttypescript": "^1.5.12",
|
|
103
|
-
"typescript": "^4.
|
|
106
|
+
"typescript": "^4.4.4"
|
|
104
107
|
}
|
|
105
108
|
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
export declare const fontFamilySansSerif = "'Ubuntu', 'Work Sans', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif";
|
|
2
|
-
export declare const fontFamilySerif = "'Noto Serif', 'Source Serif Pro', Georgia, Times, serif";
|
|
3
|
-
export declare const fontFamilyMonospace = "'Source Code Pro', monospace";
|
|
4
|
-
export declare const fonts: {
|
|
5
|
-
fontFamilySansSerif: string;
|
|
6
|
-
fontFamilySerif: string;
|
|
7
|
-
fontFamilyMonospace: string;
|
|
8
|
-
};
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* https://www.davedrinks.coffee/how-do-i-use-two-react-refs/
|
|
3
|
-
*
|
|
4
|
-
* @param refs
|
|
5
|
-
*/
|
|
6
|
-
declare const mergeReferences: (...refs: any[]) => any;
|
|
7
|
-
declare const createMarkup: (text: string) => {
|
|
8
|
-
__html: string;
|
|
9
|
-
};
|
|
10
|
-
export { mergeReferences, createMarkup, };
|