@archbase/core 3.0.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/README.md +42 -0
- package/dist/archbase-core-3.0.0.tgz +0 -0
- package/dist/context/ArchbaseAppContext.d.ts +43 -0
- package/dist/context/ArchbaseGlobalProvider.d.ts +33 -0
- package/dist/context/ArchbaseSimpleAppContext.d.ts +34 -0
- package/dist/context/index.d.ts +5 -0
- package/dist/error/ArchbaseError.d.ts +14 -0
- package/dist/error/index.d.ts +11 -0
- package/dist/errorboundary/ArchbaseErrorBoundary.d.ts +21 -0
- package/dist/errorboundary/ArchbaseErrorBoundaryContext.d.ts +6 -0
- package/dist/errorboundary/ArchbaseErrorFallback.d.ts +7 -0
- package/dist/errorboundary/assertArchbaseErrorBoundaryContext.d.ts +2 -0
- package/dist/errorboundary/index.d.ts +6 -0
- package/dist/errorboundary/types.d.ts +39 -0
- package/dist/errorboundary/useArchbaseErrorBoundary.d.ts +5 -0
- package/dist/errorboundary/withArchbaseErrorBoundary.d.ts +3 -0
- package/dist/exceptions/ApiError.d.ts +27 -0
- package/dist/exceptions/ArchbaseErrorHelper.d.ts +2 -0
- package/dist/exceptions/ArchbaseException.d.ts +9 -0
- package/dist/exceptions/index.d.ts +3 -0
- package/dist/fallback/ArchbaseSafeMigrationWrapper.d.ts +57 -0
- package/dist/helper/ArchbaseClickOutside.d.ts +9 -0
- package/dist/helper/ArchbaseObjectHelper.d.ts +9 -0
- package/dist/helper/index.d.ts +2 -0
- package/dist/hooks/ArchbaseDepencyManager.d.ts +70 -0
- package/dist/hooks/index.d.ts +15 -0
- package/dist/hooks/lifecycle/index.d.ts +54 -0
- package/dist/hooks/useArchbaseAsyncFunction.d.ts +1 -0
- package/dist/hooks/useArchbaseBool.d.ts +6 -0
- package/dist/hooks/useArchbaseForceRenderer.d.ts +1 -0
- package/dist/hooks/useArchbaseLatest.d.ts +3 -0
- package/dist/hooks/useArchbasePassiveLayoutEffect.d.ts +3 -0
- package/dist/hooks/useArchbasePasswordRemember.d.ts +11 -0
- package/dist/hooks/useArchbaseReducer.d.ts +21 -0
- package/dist/hooks/useArchbaseResizeObserver.d.ts +11 -0
- package/dist/hooks/useArchbaseSize.d.ts +12 -0
- package/dist/hooks/useArchbaseStateWithCallback.d.ts +2 -0
- package/dist/hooks/useArchbaseTextSelection.d.ts +14 -0
- package/dist/hooks/useArchbaseTheme.d.ts +6 -0
- package/dist/hooks/useArchbaseValidator.d.ts +2 -0
- package/dist/index.css +108 -0
- package/dist/index.d.ts +25 -0
- package/dist/index.js +9728 -0
- package/dist/index.js.map +1 -0
- package/dist/ioc/ArchbaseIOCHelper.d.ts +56 -0
- package/dist/ioc/ArchbaseIOCTypes.d.ts +11 -0
- package/dist/ioc/index.d.ts +2 -0
- package/dist/json/ArchbaseJacksonParser.d.ts +15 -0
- package/dist/json/index.d.ts +1 -0
- package/dist/locales/config.d.ts +1781 -0
- package/dist/locales/index.d.ts +1 -0
- package/dist/rsql/ast/ComparisonOperator.d.ts +24 -0
- package/dist/rsql/ast/LogicOperator.d.ts +13 -0
- package/dist/rsql/ast/Node.d.ts +41 -0
- package/dist/rsql/ast/ReservedChars.d.ts +4 -0
- package/dist/rsql/ast/index.d.ts +4 -0
- package/dist/rsql/builder/index.d.ts +20 -0
- package/dist/rsql/emitter/index.d.ts +19 -0
- package/dist/rsql/index.d.ts +7 -0
- package/dist/rsql/parser/Error.d.ts +7 -0
- package/dist/rsql/parser/ParserContext.d.ts +15 -0
- package/dist/rsql/parser/ParserOperation.d.ts +43 -0
- package/dist/rsql/parser/ParserProduction.d.ts +14 -0
- package/dist/rsql/parser/index.d.ts +3 -0
- package/dist/rsql/parser/lexer/LexerContext.d.ts +8 -0
- package/dist/rsql/parser/lexer/LexerProcessor.d.ts +8 -0
- package/dist/rsql/parser/lexer/Token.d.ts +38 -0
- package/dist/rsql/parser/lexer/lex.d.ts +3 -0
- package/dist/rsql/parser/lexer/processors/scanNonReservedSymbol.d.ts +3 -0
- package/dist/rsql/parser/lexer/processors/scanSymbol.d.ts +3 -0
- package/dist/rsql/parser/lexer/processors/seekAnyToken.d.ts +4 -0
- package/dist/rsql/parser/lexer/processors/seekComparisonCustomOperatorToken.d.ts +4 -0
- package/dist/rsql/parser/lexer/processors/seekComparisonOperatorToken.d.ts +4 -0
- package/dist/rsql/parser/lexer/processors/seekLogicCanonicalOperatorToken.d.ts +4 -0
- package/dist/rsql/parser/lexer/processors/seekLogicVerboseOperatorToken.d.ts +4 -0
- package/dist/rsql/parser/lexer/processors/seekParenthesisToken.d.ts +4 -0
- package/dist/rsql/parser/lexer/processors/seekQuotedToken.d.ts +4 -0
- package/dist/rsql/parser/lexer/processors/seekUnquotedToken.d.ts +4 -0
- package/dist/rsql/parser/lexer/processors/skipWhitespace.d.ts +3 -0
- package/dist/types/OptionsResult.d.ts +8 -0
- package/dist/types/filter.d.ts +56 -0
- package/dist/types/index.d.ts +5 -0
- package/dist/types/querybuilder.d.ts +85 -0
- package/dist/types/token.d.ts +50 -0
- package/dist/types/types.d.ts +5 -0
- package/dist/utils/archbaseLogo.d.ts +3 -0
- package/dist/utils/array.d.ts +1 -0
- package/dist/utils/convertImageToBase64.d.ts +1 -0
- package/dist/utils/deepFilter.d.ts +2 -0
- package/dist/utils/deepFind.d.ts +2 -0
- package/dist/utils/deepForEach.d.ts +2 -0
- package/dist/utils/deepMap.d.ts +2 -0
- package/dist/utils/dom.d.ts +2 -0
- package/dist/utils/enum-utils.d.ts +1 -0
- package/dist/utils/filter.d.ts +2 -0
- package/dist/utils/getElementName.d.ts +2 -0
- package/dist/utils/groupByType.d.ts +2 -0
- package/dist/utils/hasChildren.d.ts +4 -0
- package/dist/utils/hasComplexChildren.d.ts +4 -0
- package/dist/utils/index.d.ts +24 -0
- package/dist/utils/isBase64.d.ts +1 -0
- package/dist/utils/isEmail.d.ts +1 -0
- package/dist/utils/masker.d.ts +27 -0
- package/dist/utils/nestedObject.d.ts +7 -0
- package/dist/utils/object.d.ts +10 -0
- package/dist/utils/objectPrototype.d.ts +2 -0
- package/dist/utils/onlyText.d.ts +3 -0
- package/dist/utils/onlyValid.d.ts +2 -0
- package/dist/utils/propertyUtils.d.ts +1 -0
- package/dist/utils/string-utils.d.ts +138 -0
- package/dist/utils/string.d.ts +11 -0
- package/dist/validation/ValidationErrorsContext.d.ts +25 -0
- package/dist/validator/ArchbaseValidator.d.ts +21 -0
- package/dist/validator/container.d.ts +25 -0
- package/dist/validator/decorator/ValidationOptions.d.ts +25 -0
- package/dist/validator/decorator/array/ArrayContains.d.ts +12 -0
- package/dist/validator/decorator/array/ArrayMaxSize.d.ts +12 -0
- package/dist/validator/decorator/array/ArrayMinSize.d.ts +12 -0
- package/dist/validator/decorator/array/ArrayNotContains.d.ts +12 -0
- package/dist/validator/decorator/array/ArrayNotEmpty.d.ts +12 -0
- package/dist/validator/decorator/array/ArrayUnique.d.ts +13 -0
- package/dist/validator/decorator/common/Allow.d.ts +5 -0
- package/dist/validator/decorator/common/Equals.d.ts +10 -0
- package/dist/validator/decorator/common/IsDefined.d.ts +10 -0
- package/dist/validator/decorator/common/IsEmpty.d.ts +10 -0
- package/dist/validator/decorator/common/IsIn.d.ts +10 -0
- package/dist/validator/decorator/common/IsLatLong.d.ts +10 -0
- package/dist/validator/decorator/common/IsLatitude.d.ts +10 -0
- package/dist/validator/decorator/common/IsLongitude.d.ts +10 -0
- package/dist/validator/decorator/common/IsNotEmpty.d.ts +10 -0
- package/dist/validator/decorator/common/IsNotIn.d.ts +10 -0
- package/dist/validator/decorator/common/IsOptional.d.ts +5 -0
- package/dist/validator/decorator/common/NotEquals.d.ts +10 -0
- package/dist/validator/decorator/common/Validate.d.ts +14 -0
- package/dist/validator/decorator/common/ValidateBy.d.ts +11 -0
- package/dist/validator/decorator/common/ValidateIf.d.ts +5 -0
- package/dist/validator/decorator/common/ValidateNested.d.ts +5 -0
- package/dist/validator/decorator/common/ValidatePromise.d.ts +5 -0
- package/dist/validator/decorator/date/MaxDate.d.ts +10 -0
- package/dist/validator/decorator/date/MinDate.d.ts +10 -0
- package/dist/validator/decorator/decorators.d.ts +111 -0
- package/dist/validator/decorator/number/IsDivisibleBy.d.ts +10 -0
- package/dist/validator/decorator/number/IsNegative.d.ts +10 -0
- package/dist/validator/decorator/number/IsPositive.d.ts +10 -0
- package/dist/validator/decorator/number/Max.d.ts +10 -0
- package/dist/validator/decorator/number/Min.d.ts +10 -0
- package/dist/validator/decorator/object/IsInstance.d.ts +10 -0
- package/dist/validator/decorator/object/IsNotEmptyObject.d.ts +16 -0
- package/dist/validator/decorator/string/Contains.d.ts +12 -0
- package/dist/validator/decorator/string/IsAlpha.d.ts +12 -0
- package/dist/validator/decorator/string/IsAlphanumeric.d.ts +12 -0
- package/dist/validator/decorator/string/IsAscii.d.ts +12 -0
- package/dist/validator/decorator/string/IsBIC.d.ts +12 -0
- package/dist/validator/decorator/string/IsBase32.d.ts +12 -0
- package/dist/validator/decorator/string/IsBase58.d.ts +12 -0
- package/dist/validator/decorator/string/IsBase64.d.ts +12 -0
- package/dist/validator/decorator/string/IsBooleanString.d.ts +12 -0
- package/dist/validator/decorator/string/IsBtcAddress.d.ts +12 -0
- package/dist/validator/decorator/string/IsByteLength.d.ts +12 -0
- package/dist/validator/decorator/string/IsCreditCard.d.ts +12 -0
- package/dist/validator/decorator/string/IsCurrency.d.ts +12 -0
- package/dist/validator/decorator/string/IsDataURI.d.ts +12 -0
- package/dist/validator/decorator/string/IsDateString.d.ts +10 -0
- package/dist/validator/decorator/string/IsDecimal.d.ts +12 -0
- package/dist/validator/decorator/string/IsEAN.d.ts +12 -0
- package/dist/validator/decorator/string/IsEmail.d.ts +12 -0
- package/dist/validator/decorator/string/IsEthereumAddress.d.ts +12 -0
- package/dist/validator/decorator/string/IsFQDN.d.ts +12 -0
- package/dist/validator/decorator/string/IsFirebasePushId.d.ts +12 -0
- package/dist/validator/decorator/string/IsFullWidth.d.ts +12 -0
- package/dist/validator/decorator/string/IsHSL.d.ts +14 -0
- package/dist/validator/decorator/string/IsHalfWidth.d.ts +12 -0
- package/dist/validator/decorator/string/IsHash.d.ts +14 -0
- package/dist/validator/decorator/string/IsHexColor.d.ts +12 -0
- package/dist/validator/decorator/string/IsHexadecimal.d.ts +12 -0
- package/dist/validator/decorator/string/IsIBAN.d.ts +12 -0
- package/dist/validator/decorator/string/IsIP.d.ts +13 -0
- package/dist/validator/decorator/string/IsISBN.d.ts +13 -0
- package/dist/validator/decorator/string/IsISIN.d.ts +12 -0
- package/dist/validator/decorator/string/IsISO31661Alpha2.d.ts +10 -0
- package/dist/validator/decorator/string/IsISO31661Alpha3.d.ts +10 -0
- package/dist/validator/decorator/string/IsISO8601.d.ts +14 -0
- package/dist/validator/decorator/string/IsISRC.d.ts +12 -0
- package/dist/validator/decorator/string/IsISSN.d.ts +12 -0
- package/dist/validator/decorator/string/IsIdentityCard.d.ts +16 -0
- package/dist/validator/decorator/string/IsJSON.d.ts +12 -0
- package/dist/validator/decorator/string/IsJWT.d.ts +12 -0
- package/dist/validator/decorator/string/IsLocale.d.ts +12 -0
- package/dist/validator/decorator/string/IsLowercase.d.ts +12 -0
- package/dist/validator/decorator/string/IsMacAddress.d.ts +13 -0
- package/dist/validator/decorator/string/IsMagnetURI.d.ts +12 -0
- package/dist/validator/decorator/string/IsMilitaryTime.d.ts +12 -0
- package/dist/validator/decorator/string/IsMimeType.d.ts +12 -0
- package/dist/validator/decorator/string/IsMobilePhone.d.ts +28 -0
- package/dist/validator/decorator/string/IsMongoId.d.ts +12 -0
- package/dist/validator/decorator/string/IsMultibyte.d.ts +12 -0
- package/dist/validator/decorator/string/IsNumberString.d.ts +12 -0
- package/dist/validator/decorator/string/IsOctal.d.ts +12 -0
- package/dist/validator/decorator/string/IsPassportNumber.d.ts +12 -0
- package/dist/validator/decorator/string/IsPhoneNumber.d.ts +19 -0
- package/dist/validator/decorator/string/IsPort.d.ts +10 -0
- package/dist/validator/decorator/string/IsPostalCode.d.ts +12 -0
- package/dist/validator/decorator/string/IsRFC3339.d.ts +12 -0
- package/dist/validator/decorator/string/IsRgbColor.d.ts +14 -0
- package/dist/validator/decorator/string/IsSemVer.d.ts +12 -0
- package/dist/validator/decorator/string/IsStrongPassword.d.ts +16 -0
- package/dist/validator/decorator/string/IsSurrogatePair.d.ts +12 -0
- package/dist/validator/decorator/string/IsTimeZone.d.ts +12 -0
- package/dist/validator/decorator/string/IsUUID.d.ts +12 -0
- package/dist/validator/decorator/string/IsUppercase.d.ts +12 -0
- package/dist/validator/decorator/string/IsUrl.d.ts +12 -0
- package/dist/validator/decorator/string/IsVariableWidth.d.ts +12 -0
- package/dist/validator/decorator/string/Length.d.ts +12 -0
- package/dist/validator/decorator/string/Matches.d.ts +14 -0
- package/dist/validator/decorator/string/MaxLength.d.ts +12 -0
- package/dist/validator/decorator/string/MinLength.d.ts +12 -0
- package/dist/validator/decorator/string/NotContains.d.ts +12 -0
- package/dist/validator/decorator/string/is-iso4217-currency-code.d.ts +10 -0
- package/dist/validator/decorator/string/is-tax-id.d.ts +20 -0
- package/dist/validator/decorator/typechecker/IsArray.d.ts +10 -0
- package/dist/validator/decorator/typechecker/IsBoolean.d.ts +10 -0
- package/dist/validator/decorator/typechecker/IsDate.d.ts +10 -0
- package/dist/validator/decorator/typechecker/IsEnum.d.ts +10 -0
- package/dist/validator/decorator/typechecker/IsInt.d.ts +10 -0
- package/dist/validator/decorator/typechecker/IsNumber.d.ts +18 -0
- package/dist/validator/decorator/typechecker/IsObject.d.ts +12 -0
- package/dist/validator/decorator/typechecker/IsString.d.ts +10 -0
- package/dist/validator/index.d.ts +49 -0
- package/dist/validator/metadata/ConstraintMetadata.d.ts +23 -0
- package/dist/validator/metadata/MetadataStorage.d.ts +42 -0
- package/dist/validator/metadata/ValidationMetadata.d.ts +53 -0
- package/dist/validator/metadata/ValidationMetadataArgs.d.ts +38 -0
- package/dist/validator/register-decorator.d.ts +36 -0
- package/dist/validator/utils/convert-to-array.util.d.ts +4 -0
- package/dist/validator/utils/get-global.util.d.ts +7 -0
- package/dist/validator/utils/index.d.ts +3 -0
- package/dist/validator/utils/is-promise.util.d.ts +1 -0
- package/dist/validator/validation/ValidationArguments.d.ts +26 -0
- package/dist/validator/validation/ValidationError.d.ts +42 -0
- package/dist/validator/validation/ValidationExecutor.d.ts +28 -0
- package/dist/validator/validation/ValidationTypes.d.ts +15 -0
- package/dist/validator/validation/ValidationUtils.d.ts +8 -0
- package/dist/validator/validation/Validator.d.ts +37 -0
- package/dist/validator/validation/ValidatorConstraintInterface.d.ts +14 -0
- package/dist/validator/validation/ValidatorOptions.d.ts +75 -0
- package/dist/validator/validation-schema/ValidationSchema.d.ts +57 -0
- package/dist/validator/validation-schema/ValidationSchemaToMetadataTransformer.d.ts +8 -0
- package/package.json +88 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
/**
|
|
3
|
+
* Um hook React para medir o tamanho dos elementos HTML, incluindo quando eles mudam
|
|
4
|
+
*
|
|
5
|
+
* @param target Uma referência React criada por `useRef()` ou um elemento HTML
|
|
6
|
+
* @param options Configura a largura inicial e a altura inicial do estado do gancho
|
|
7
|
+
*/
|
|
8
|
+
export declare const useArchbaseSize: <T extends HTMLElement>(target: React.RefObject<T | null> | T | null, options?: UseSizeOptions) => [number, number];
|
|
9
|
+
export interface UseSizeOptions {
|
|
10
|
+
initialWidth: number;
|
|
11
|
+
initialHeight: number;
|
|
12
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
type ClientRect = Record<keyof Omit<DOMRect, "toJSON">, number>;
|
|
2
|
+
/**
|
|
3
|
+
* useArchbaseTextSelection(ref)
|
|
4
|
+
*
|
|
5
|
+
* @description
|
|
6
|
+
* hook para obter informações sobre a seleção de texto atual
|
|
7
|
+
*
|
|
8
|
+
*/
|
|
9
|
+
export declare function useArchbaseTextSelection(target?: HTMLElement): {
|
|
10
|
+
clientRect: ClientRect;
|
|
11
|
+
isCollapsed: boolean;
|
|
12
|
+
textContent: string;
|
|
13
|
+
};
|
|
14
|
+
export {};
|
package/dist/index.css
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
#notfound {
|
|
2
|
+
position: relative;
|
|
3
|
+
height: 100vh;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
#notfound .notfound {
|
|
7
|
+
position: absolute;
|
|
8
|
+
left: 50%;
|
|
9
|
+
top: 50%;
|
|
10
|
+
-webkit-transform: translate(-50%, -50%);
|
|
11
|
+
-ms-transform: translate(-50%, -50%);
|
|
12
|
+
transform: translate(-50%, -50%);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.notfound {
|
|
16
|
+
max-width: 410px;
|
|
17
|
+
width: 100%;
|
|
18
|
+
text-align: center;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.notfound .notfound-404 {
|
|
22
|
+
height: 280px;
|
|
23
|
+
position: relative;
|
|
24
|
+
z-index: -1;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.notfound .notfound-404 h1 {
|
|
28
|
+
font-family: "Inter", sans-serif;
|
|
29
|
+
font-size: 230px;
|
|
30
|
+
margin: 0px;
|
|
31
|
+
font-weight: 900;
|
|
32
|
+
position: absolute;
|
|
33
|
+
left: 50%;
|
|
34
|
+
-webkit-transform: translateX(-50%);
|
|
35
|
+
-ms-transform: translateX(-50%);
|
|
36
|
+
transform: translateX(-50%);
|
|
37
|
+
-webkit-background-clip: text;
|
|
38
|
+
-webkit-text-fill-color: transparent;
|
|
39
|
+
background-size: cover;
|
|
40
|
+
background-position: center;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.notfound h3 {
|
|
44
|
+
font-family: "Montserrat", sans-serif;
|
|
45
|
+
color: #000;
|
|
46
|
+
font-size: 24px;
|
|
47
|
+
font-weight: 700;
|
|
48
|
+
text-transform: uppercase;
|
|
49
|
+
margin-top: 0;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.notfound p {
|
|
53
|
+
font-family: "Inter", sans-serif;
|
|
54
|
+
color: #000;
|
|
55
|
+
font-size: 14px;
|
|
56
|
+
font-weight: 400;
|
|
57
|
+
margin-bottom: 20px;
|
|
58
|
+
margin-top: 0px;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.notfound button {
|
|
62
|
+
font-family: "Inter", sans-serif;
|
|
63
|
+
font-size: 14px;
|
|
64
|
+
text-decoration: none;
|
|
65
|
+
text-transform: uppercase;
|
|
66
|
+
background: #0046d5;
|
|
67
|
+
display: inline-block;
|
|
68
|
+
padding: 15px 30px;
|
|
69
|
+
border-radius: 40px;
|
|
70
|
+
color: #fff;
|
|
71
|
+
font-weight: 700;
|
|
72
|
+
-webkit-box-shadow: 0px 4px 15px -5px #0046d5;
|
|
73
|
+
box-shadow: 0px 4px 15px -5px #0046d5;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
@media only screen and (max-width: 767px) {
|
|
77
|
+
.notfound .notfound-404 {
|
|
78
|
+
height: 142px;
|
|
79
|
+
}
|
|
80
|
+
.notfound .notfound-404 h1 {
|
|
81
|
+
font-size: 112px;
|
|
82
|
+
}
|
|
83
|
+
}.properties-table,
|
|
84
|
+
.css-lckf62 {
|
|
85
|
+
margin-top: 15px;
|
|
86
|
+
border-collapse: collapse;
|
|
87
|
+
border-spacing: 0;
|
|
88
|
+
width: 100%;
|
|
89
|
+
font-size: 14px;
|
|
90
|
+
line-height: 24px;
|
|
91
|
+
}
|
|
92
|
+
.properties-table td,
|
|
93
|
+
.properties-table th,
|
|
94
|
+
.css-lckf62 td,
|
|
95
|
+
.css-lckf62 th {
|
|
96
|
+
vertical-align: top;
|
|
97
|
+
text-align: left;
|
|
98
|
+
padding: 6px 13px;
|
|
99
|
+
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
100
|
+
}
|
|
101
|
+
.properties-table tr:nth-of-type(2n),
|
|
102
|
+
.css-lckf62 tr:nth-of-type(2n) {
|
|
103
|
+
background-color: #f8f8f8;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.state-driven button {
|
|
107
|
+
margin-top: 10px;
|
|
108
|
+
}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import './errorboundary.scss';
|
|
2
|
+
import './utils.scss';
|
|
3
|
+
export * from './context';
|
|
4
|
+
export { useArchbaseTranslation, archbaseI18next, getI18nextInstance } from './context/ArchbaseGlobalProvider';
|
|
5
|
+
export * from './exceptions';
|
|
6
|
+
export * from './helper';
|
|
7
|
+
export * from './hooks';
|
|
8
|
+
export * from './ioc';
|
|
9
|
+
export * from './json';
|
|
10
|
+
export * from './rsql/ast';
|
|
11
|
+
export * from './rsql/builder';
|
|
12
|
+
export * from './rsql/emitter';
|
|
13
|
+
export * from './rsql/parser';
|
|
14
|
+
export * from './utils';
|
|
15
|
+
export * from './types';
|
|
16
|
+
export * from './types/filter';
|
|
17
|
+
export * from './errorboundary';
|
|
18
|
+
export * from "./utils/masker";
|
|
19
|
+
export { ArchbaseValidator } from './validator/ArchbaseValidator';
|
|
20
|
+
export type { ValidationError, ValidatorOptions } from './validator';
|
|
21
|
+
export * from './validator';
|
|
22
|
+
export * from './locales';
|
|
23
|
+
export * from './fallback/ArchbaseSafeMigrationWrapper';
|
|
24
|
+
export declare function detectDataSourceVersion(dataSource: any): string;
|
|
25
|
+
export { ValidationErrorsProvider, useValidationErrors, useRequiredValidationErrors } from './validation/ValidationErrorsContext';
|