@firedesktop/react-base 1.61.0 → 1.63.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/AppIcon.d.ts +1 -1
- package/dist/components/AppInput.d.ts +2 -2
- package/dist/components/AppPagination.d.ts +1 -1
- package/dist/components/Spin.d.ts +1 -1
- package/dist/components/Toaster/Toaster.d.ts +1 -1
- package/dist/components/Toaster/Types.d.ts +2 -2
- package/dist/utils/configuration/ConfigurationLoader.d.ts +1 -1
- package/dist/utils/configuration/ConfigurationLoader.js +1 -1
- package/dist/utils/configuration/ConfigurationManager.js +1 -1
- package/dist/utils/configuration/ConfigurationReturner.d.ts +2 -2
- package/dist/utils/configuration/ConfigurationReturner.js +1 -1
- package/dist/utils/fetch/Types.d.ts +1 -1
- package/dist/utils/labels/LanguageLoader.d.ts +1 -1
- package/dist/utils/labels/LanguageLoader.js +1 -1
- package/dist/utils/labels/LanguageManager.js +1 -1
- package/dist/utils/labels/LanguageReturner.d.ts +2 -2
- package/dist/utils/labels/LanguageReturner.js +1 -1
- package/package.json +11 -11
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
|
|
2
|
+
type PropType = {
|
|
3
3
|
name: 'add' | 'edit' | 'delete' | 'list' | 'link' | 'unlink' | 'shrink' | 'arrow-first' | 'arrow-prev' | 'arrow-next' | 'arrow-last' | 'user' | 'password' | 'tickTrue' | 'document' | 'company' | 'tickFalse' | 'plantMonitor' | 'plantMissing' | 'circle' | 'tickStep' | 'unPin' | 'Pin' | 'contact' | 'userManagement' | 'configurations' | 'documentTemplate' | 'eye' | 'share' | 'download' | 'search' | 'logo-main' | 'backicon' | 'expand' | 'upload' | 'table' | 'pin-tilted' | 'home' | 'registry' | 'material' | 'supply' | 'delivery';
|
|
4
4
|
className: string;
|
|
5
5
|
iconClassName: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
type AppInputType_Type = 'button' | 'checkbox' | 'color' | 'date' | 'datetime-local' | 'email' | 'file' | 'hidden' | 'image' | 'month' | 'number' | 'password' | 'radio' | 'range' | 'reset' | 'search' | 'submit' | 'tel' | 'text' | 'url' | 'week';
|
|
3
|
+
type Proptype = {
|
|
4
4
|
appIcon: any;
|
|
5
5
|
ariadescribedby?: string;
|
|
6
6
|
autoComplete?: boolean;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import '../../styles/toaster.css';
|
|
3
3
|
import * as Types from './Types';
|
|
4
|
-
|
|
4
|
+
type Toaster_Props = {
|
|
5
5
|
propertiesObject: Types.Toaster_Prop_Type;
|
|
6
6
|
};
|
|
7
7
|
declare const Toaster: ({ propertiesObject }: Toaster_Props) => JSX.Element;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
1
|
+
export type Toaster_Type = 'Error' | 'Information' | 'Success' | 'Warning';
|
|
2
|
+
export type Toaster_Prop_Type = {
|
|
3
3
|
content?: string;
|
|
4
4
|
title: string;
|
|
5
5
|
type: Toaster_Type;
|
|
@@ -13,7 +13,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
13
13
|
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
14
14
|
function step(op) {
|
|
15
15
|
if (f) throw new TypeError("Generator is already executing.");
|
|
16
|
-
while (_) try {
|
|
16
|
+
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
|
17
17
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
18
18
|
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
19
19
|
switch (op[0]) {
|
|
@@ -13,7 +13,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
13
13
|
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
14
14
|
function step(op) {
|
|
15
15
|
if (f) throw new TypeError("Generator is already executing.");
|
|
16
|
-
while (_) try {
|
|
16
|
+
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
|
17
17
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
18
18
|
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
19
19
|
switch (op[0]) {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export
|
|
2
|
+
export type Configuration_Type = {
|
|
3
3
|
loaded: boolean;
|
|
4
4
|
};
|
|
5
|
-
export
|
|
5
|
+
export type configurationLoaderParamsType = {
|
|
6
6
|
configuration?: Configuration_Type;
|
|
7
7
|
onConfigurationLoad: (condifiguration?: Configuration_Type) => void;
|
|
8
8
|
path: string;
|
|
@@ -13,7 +13,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
13
13
|
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
14
14
|
function step(op) {
|
|
15
15
|
if (f) throw new TypeError("Generator is already executing.");
|
|
16
|
-
while (_) try {
|
|
16
|
+
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
|
17
17
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
18
18
|
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
19
19
|
switch (op[0]) {
|
|
@@ -13,7 +13,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
13
13
|
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
14
14
|
function step(op) {
|
|
15
15
|
if (f) throw new TypeError("Generator is already executing.");
|
|
16
|
-
while (_) try {
|
|
16
|
+
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
|
17
17
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
18
18
|
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
19
19
|
switch (op[0]) {
|
|
@@ -13,7 +13,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
13
13
|
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
14
14
|
function step(op) {
|
|
15
15
|
if (f) throw new TypeError("Generator is already executing.");
|
|
16
|
-
while (_) try {
|
|
16
|
+
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
|
17
17
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
18
18
|
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
19
19
|
switch (op[0]) {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export
|
|
2
|
+
export type Labels_Type = {
|
|
3
3
|
language: string;
|
|
4
4
|
};
|
|
5
|
-
export
|
|
5
|
+
export type languageLoaderParamsType = {
|
|
6
6
|
labels?: Labels_Type;
|
|
7
7
|
language: string;
|
|
8
8
|
onLanguageLoad: (language?: Labels_Type) => void;
|
|
@@ -13,7 +13,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
13
13
|
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
14
14
|
function step(op) {
|
|
15
15
|
if (f) throw new TypeError("Generator is already executing.");
|
|
16
|
-
while (_) try {
|
|
16
|
+
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
|
17
17
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
18
18
|
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
19
19
|
switch (op[0]) {
|
package/package.json
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firedesktop/react-base",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.63.0",
|
|
4
4
|
"license": "ISC",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"description": "This is the FireDesktop base package used to support every React Project in this Company.",
|
|
7
7
|
"author": "alessandro.gambaro",
|
|
8
8
|
"repository": "https://firedesktopDevOps@dev.azure.com/firedesktopDevOps/baseFEComponents/_git/baseFEComponents",
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@syncfusion/ej2-popups": "20.3.
|
|
11
|
-
"@syncfusion/ej2-react-notifications": "20.3.
|
|
10
|
+
"@syncfusion/ej2-popups": "20.3.59",
|
|
11
|
+
"@syncfusion/ej2-react-notifications": "20.3.56"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
14
|
"@babel/cli": "7.19.3",
|
|
15
|
-
"@babel/core": "7.
|
|
15
|
+
"@babel/core": "7.20.5",
|
|
16
16
|
"@babel/plugin-proposal-class-properties": "7.18.6",
|
|
17
17
|
"@babel/plugin-transform-arrow-functions": "7.18.6",
|
|
18
18
|
"@babel/preset-typescript": "7.18.6",
|
|
19
19
|
"@testing-library/jest-dom": "5.16.5",
|
|
20
20
|
"@testing-library/react": "13.4.0",
|
|
21
21
|
"@testing-library/user-event": "14.4.3",
|
|
22
|
-
"@types/jest": "29.
|
|
23
|
-
"@types/node": "18.
|
|
24
|
-
"@types/react": "18.0.
|
|
25
|
-
"@types/react-dom": "18.0.
|
|
22
|
+
"@types/jest": "29.2.3",
|
|
23
|
+
"@types/node": "18.11.9",
|
|
24
|
+
"@types/react": "18.0.25",
|
|
25
|
+
"@types/react-dom": "18.0.9",
|
|
26
26
|
"@types/react-redux": "7.1.24",
|
|
27
27
|
"babel-plugin-minify-builtins": "0.5.0",
|
|
28
28
|
"babel-preset-minify": "0.5.2",
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
"lodash": "4.17.21",
|
|
32
32
|
"react": "18.2.0",
|
|
33
33
|
"react-dom": "18.2.0",
|
|
34
|
-
"react-redux": "8.0.
|
|
34
|
+
"react-redux": "8.0.5",
|
|
35
35
|
"react-scripts": "5.0.1",
|
|
36
|
-
"typescript": "4.
|
|
37
|
-
"web-vitals": "3.0
|
|
36
|
+
"typescript": "4.9.3",
|
|
37
|
+
"web-vitals": "3.1.0"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
40
|
"bootstrap": ">=4.5.3",
|