@os1-platform/console-ui-react 0.1.12 → 0.1.13
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"interface.js","sourceRoot":"","sources":["../../../../src/components/modal/interface.ts"],"names":[],"mappings":"","sourcesContent":["export interface ModalConfig {\n bgColor: string,\n title: string,\n message: string,\n icon: string,\n buttons: Button[]\n id?: string,\n}\n\nexport interface Button {\n id: string,\n backgroundColor: string,\n text: string,\n event: string,\n}\n\nexport interface ModalProps {\n
|
|
1
|
+
{"version":3,"file":"interface.js","sourceRoot":"","sources":["../../../../src/components/modal/interface.ts"],"names":[],"mappings":"","sourcesContent":["export interface ModalConfig {\n bgColor: string,\n title: string,\n message: string,\n icon: string,\n buttons: Button[]\n id?: string,\n}\n\nexport interface Button {\n id: string,\n backgroundColor: string,\n text: string,\n event: string,\n}\n\nexport interface ModalProps {\n elementId: string,\n modalConfig: ModalConfig;\n}\n\nexport interface RouterProps {\n component: string,\n path: string,\n exact: boolean,\n props?: {} | undefined\n}"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"interface.js","sourceRoot":"","sources":["../../../../src/components/toast/interface.ts"],"names":[],"mappings":"","sourcesContent":["export interface ToastConfig {\n bgColor: string,\n message: string,\n timeout?: number,\n icon: string,\n closeButton: boolean,\n id?: string,\n}\n\nexport interface ToastProps {\n
|
|
1
|
+
{"version":3,"file":"interface.js","sourceRoot":"","sources":["../../../../src/components/toast/interface.ts"],"names":[],"mappings":"","sourcesContent":["export interface ToastConfig {\n bgColor: string,\n message: string,\n timeout?: number,\n icon: string,\n closeButton: boolean,\n id?: string,\n}\n\nexport interface ToastProps {\n elementId: string,\n toastConfig: ToastConfig;\n}"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@os1-platform/console-ui-react",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.13",
|
|
4
4
|
"description": "React wrapper for console-ui library",
|
|
5
5
|
"main": "dist/commonjs/aaa/index.js",
|
|
6
6
|
"types": "dist/commonjs/types/aaa/index.d.ts",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@fullhuman/postcss-purgecss": "^5.0.0",
|
|
30
|
-
"@os1-platform/console-ui-js": "
|
|
30
|
+
"@os1-platform/console-ui-js": "^0.1.13",
|
|
31
31
|
"@react-native-community/eslint-config": "^2.0.0",
|
|
32
32
|
"@types/react": "^17.0.37",
|
|
33
33
|
"axios": "^0.21.4",
|