react-input-material 0.0.655 → 0.0.657
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/FileInput/import.module.css +1 -1
- package/dist/components/FileInput/index.js +1 -1
- package/dist/components/Inputs/index.js +1 -1
- package/dist/components/Interval/index.js +1 -1
- package/dist/components/RequireableCheckbox/import.module.css +1 -1
- package/dist/components/RequireableCheckbox/index.js +1 -1
- package/dist/components/TextInput/helper.d.ts +4 -4
- package/dist/components/TextInput/import.module.css +1 -1
- package/dist/components/TextInput/index.js +1 -1
- package/dist/components/WrapConfigurations.js +1 -1
- package/dist/components/WrapTooltip.d.ts +1 -1
- package/dist/components/WrapTooltip.js +1 -1
- package/dist/helper.d.ts +9 -8
- package/dist/helper.js +1 -1
- package/dist/index.css +3 -3
- package/dist/index.js +1 -1
- package/dist/material-fixes.css +1 -1
- package/dist/type.d.ts +23 -23
- package/dist/type.js +1 -1
- package/package.json +50 -48
package/dist/type.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Mapping, PlainObject, RecursivePartial, ValueOf } from 'clientnode';
|
|
2
|
-
import PropertyTypes from 'clientnode/dist/property-types';
|
|
3
|
-
import { ComponentClass, ElementType, FocusEvent, ForwardRefExoticComponent, FunctionComponent, HTMLProps, KeyboardEvent, MouseEvent, MutableRefObject, ReactElement, ReactNode, RefAttributes
|
|
2
|
+
import PropertyTypes, { Requireable } from 'clientnode/dist/property-types';
|
|
3
|
+
import { ComponentClass, ElementType, FocusEvent, ForwardRefExoticComponent, FunctionComponent, HTMLProps, KeyboardEvent, MouseEvent, MutableRefObject, ReactElement, ReactNode, RefAttributes } from 'react';
|
|
4
4
|
import { GenericEvent } from 'react-generic-tools/type';
|
|
5
5
|
import CodeEditorType, { IAceEditorProps as CodeEditorProps } from 'react-ace';
|
|
6
6
|
import { EditorOptions as RawTinyMCEOptions, Editor as RichTextEditor } from 'tinymce';
|
|
@@ -64,7 +64,7 @@ export interface BaseModel<T = unknown> extends CommonBaseModel<T> {
|
|
|
64
64
|
}
|
|
65
65
|
export type Selection = Array<boolean | number> | SelectProps['options'];
|
|
66
66
|
export interface BaseProperties<T = unknown> extends CommonBaseModel<T>, ModelState {
|
|
67
|
-
className: string;
|
|
67
|
+
className: Array<string> | string;
|
|
68
68
|
styles: Mapping;
|
|
69
69
|
themeConfiguration: ThemeProviderProps['options'];
|
|
70
70
|
disabled: boolean;
|
|
@@ -145,13 +145,13 @@ export declare const propertyTypes: ValidationMapping;
|
|
|
145
145
|
export declare const defaultModelState: ModelState;
|
|
146
146
|
export declare const defaultModel: BaseModel<string>;
|
|
147
147
|
export declare const defaultProperties: DefaultProperties;
|
|
148
|
-
export interface CheckboxProperties extends Properties<boolean> {
|
|
148
|
+
export interface CheckboxProperties extends Properties<boolean | null> {
|
|
149
149
|
checked: boolean;
|
|
150
150
|
id: string;
|
|
151
151
|
}
|
|
152
|
-
export type CheckboxModel = BaseModel<boolean>;
|
|
152
|
+
export type CheckboxModel = BaseModel<boolean | null>;
|
|
153
153
|
export type CheckboxModelState = ModelState;
|
|
154
|
-
export type CheckboxValueState = ValueState<boolean
|
|
154
|
+
export type CheckboxValueState = ValueState<boolean>;
|
|
155
155
|
export type CheckboxProps = Partial<Omit<CheckboxProperties, 'model'>> & {
|
|
156
156
|
model?: (Partial<Omit<CheckboxModel, 'state'>> & {
|
|
157
157
|
state?: Partial<CheckboxModelState>;
|
|
@@ -184,7 +184,7 @@ export interface DateTransformSpecification extends DataTransformSpecification<n
|
|
|
184
184
|
useISOString: boolean;
|
|
185
185
|
}
|
|
186
186
|
export type InputDataTransformation = {
|
|
187
|
-
boolean: DataTransformSpecification<boolean
|
|
187
|
+
boolean: DataTransformSpecification<boolean>;
|
|
188
188
|
currency: DataTransformSpecification<number, string>;
|
|
189
189
|
date: DateTransformSpecification;
|
|
190
190
|
'date-local': DataTransformSpecification<number | string, Date | number | string>;
|
|
@@ -195,11 +195,11 @@ export type InputDataTransformation = {
|
|
|
195
195
|
float: DataTransformSpecification<number, string>;
|
|
196
196
|
integer: DataTransformSpecification<number, string>;
|
|
197
197
|
number: DataTransformSpecification<number, number>;
|
|
198
|
-
string?: DataTransformSpecification
|
|
198
|
+
string?: DataTransformSpecification;
|
|
199
199
|
} & {
|
|
200
|
-
[key in Exclude<NativeInputType, ('date' | 'date-local' | 'datetime' | 'datetime-local' | 'time' | 'time-local' | 'number')>]?: DataTransformSpecification
|
|
200
|
+
[key in Exclude<NativeInputType, ('date' | 'date-local' | 'datetime' | 'datetime-local' | 'time' | 'time-local' | 'number')>]?: DataTransformSpecification;
|
|
201
201
|
};
|
|
202
|
-
export type InputSelection = Array<boolean | number> | Array<[boolean | number | string, string]> | NormalizedSelection | SelectProps['options'];
|
|
202
|
+
export type InputSelection = Array<boolean | number | null> | Array<[boolean | number | string | null, string]> | NormalizedSelection | SelectProps['options'];
|
|
203
203
|
export type NormalizedSelection = Array<Omit<FormattedSelectionOption, 'value'> & {
|
|
204
204
|
value: unknown;
|
|
205
205
|
}>;
|
|
@@ -228,7 +228,7 @@ export type NativeInputType = ('date' | 'datetime-local' | 'time' | 'week' | 'mo
|
|
|
228
228
|
export type TextInputType = ('date-local' | 'datetime' | 'time-local' | 'boolean' | 'currency' | 'float' | 'integer' | 'string' | NativeInputType);
|
|
229
229
|
export interface InputChildrenOptions<P, T> {
|
|
230
230
|
index: number;
|
|
231
|
-
normalizedSelection
|
|
231
|
+
normalizedSelection?: NormalizedSelection | null;
|
|
232
232
|
properties: P;
|
|
233
233
|
query: string;
|
|
234
234
|
suggestion: ReactNode | string;
|
|
@@ -243,10 +243,10 @@ export type Editor = ('code' | 'code(css)' | 'code(script)' | 'plain' | 'text' |
|
|
|
243
243
|
export interface InputProperties<T = unknown> extends InputModelState, Properties<T> {
|
|
244
244
|
align: 'end' | 'start';
|
|
245
245
|
children: (options: InputChildrenOptions<this, T>) => null | ReactElement;
|
|
246
|
-
cursor: CursorState;
|
|
246
|
+
cursor: Partial<CursorState> | null;
|
|
247
247
|
editor: Editor;
|
|
248
248
|
editorIsActive: boolean;
|
|
249
|
-
hidden
|
|
249
|
+
hidden?: boolean;
|
|
250
250
|
icon: string | (IconOptions & {
|
|
251
251
|
tooltip?: string | TooltipProps;
|
|
252
252
|
});
|
|
@@ -254,7 +254,7 @@ export interface InputProperties<T = unknown> extends InputModelState, Propertie
|
|
|
254
254
|
tooltip?: string | TooltipProps;
|
|
255
255
|
});
|
|
256
256
|
inputProperties: Partial<CodeEditorProps | RichTextEditorProps | SelectProps | TextFieldProps>;
|
|
257
|
-
inputProps
|
|
257
|
+
inputProps?: Mapping<boolean | number | string>;
|
|
258
258
|
invertedPattern: Array<RegExp | string> | null | RegExp | string;
|
|
259
259
|
invertedPatternText: string;
|
|
260
260
|
labels: Array<[string, string]> | Array<string> | Mapping;
|
|
@@ -368,7 +368,7 @@ export interface FileInputChildrenOptions<P, Type extends FileValue = FileValue>
|
|
|
368
368
|
value?: null | Type;
|
|
369
369
|
}
|
|
370
370
|
export interface FileInputProperties<Type extends FileValue = FileValue, MediaTag extends ElementType = 'div'> extends Properties<null | Type>, FileInputModelState {
|
|
371
|
-
children
|
|
371
|
+
children?: (options: FileInputChildrenOptions<FileInputProperties<Type, MediaTag>, Type>) => ReactNode;
|
|
372
372
|
contentTypePattern: Array<RegExp | string> | null | RegExp | string;
|
|
373
373
|
invertedContentTypePattern: Array<RegExp | string> | null | RegExp | string;
|
|
374
374
|
contentTypePatternText: string;
|
|
@@ -380,15 +380,15 @@ export interface FileInputProperties<Type extends FileValue = FileValue, MediaTa
|
|
|
380
380
|
editButton: ReactNode;
|
|
381
381
|
newButton: ReactNode;
|
|
382
382
|
encoding: string;
|
|
383
|
-
generateFileNameInputProperties: (prototype: InputProps<string>, properties: FileInputProperties<Type, MediaTag>) => InputProps<string
|
|
383
|
+
generateFileNameInputProperties: (prototype: InputProps<string>, properties: FileInputProperties<Type, MediaTag>) => InputProps<string> | null;
|
|
384
384
|
media: RMWCComponentProps<CardMediaProps, HTMLProps<HTMLElement>, MediaTag>;
|
|
385
385
|
model: FileInputModel<Type>;
|
|
386
386
|
outlined: boolean;
|
|
387
|
-
sourceToBlobOptions
|
|
387
|
+
sourceToBlobOptions?: {
|
|
388
388
|
endings?: 'native' | 'transparent';
|
|
389
389
|
type?: string;
|
|
390
390
|
};
|
|
391
|
-
hashingConfiguration
|
|
391
|
+
hashingConfiguration?: {
|
|
392
392
|
binaryString?: boolean;
|
|
393
393
|
prefix?: string;
|
|
394
394
|
readChunkSizeInByte?: number;
|
|
@@ -544,8 +544,8 @@ type PartialIntervalValue = Partial<Omit<InputModel<DateTimeRepresentation | nul
|
|
|
544
544
|
};
|
|
545
545
|
export type PartialIntervalModel = Partial<Omit<IntervalProperties['model'], 'state' | 'value'>> & {
|
|
546
546
|
value?: {
|
|
547
|
-
end
|
|
548
|
-
start
|
|
547
|
+
end?: PartialIntervalValue;
|
|
548
|
+
start?: PartialIntervalValue;
|
|
549
549
|
};
|
|
550
550
|
state?: Partial<IntervalModelState>;
|
|
551
551
|
};
|
|
@@ -558,11 +558,11 @@ export type IntervalProps = Omit<InputProps<DateTimeRepresentation | null>, 'ico
|
|
|
558
558
|
maximum: DateTimeRepresentation;
|
|
559
559
|
minimum: DateTimeRepresentation;
|
|
560
560
|
}>;
|
|
561
|
-
icon: IntervalProperties['icon'];
|
|
562
|
-
model
|
|
561
|
+
icon: IntervalProperties['icon'] | string;
|
|
562
|
+
model?: PartialIntervalModel;
|
|
563
563
|
onChange: IntervalProperties['onChange'];
|
|
564
564
|
onChangeValue: IntervalProperties['onChangeValue'];
|
|
565
|
-
value
|
|
565
|
+
value?: IntervalConfiguration | IntervalValue | null;
|
|
566
566
|
}>;
|
|
567
567
|
export type DefaultIntervalProperties = Omit<IntervalProps, 'model'> & {
|
|
568
568
|
model: IntervalModel;
|
package/dist/type.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";if("undefined"!=typeof module&&null!==module&&"undefined"!==eval("typeof require")&&null!==eval("require")&&"main"in eval("require")&&"undefined"!==eval("typeof require.main")&&null!==eval("require.main")){var ORIGINAL_MAIN_MODULE=module;module!==eval("require.main")&&"paths"in module&&"paths"in eval("require.main")&&"undefined"!=typeof __dirname&&null!==__dirname&&(module.paths=eval("require.main.paths").concat(module.paths.filter((function(path){return eval("require.main.paths").includes(path)}))))}if(null==window)var window="undefined"==typeof global||null===global?{}:global;!function(e,n){if("object"==typeof exports&&"object"==typeof module)module.exports=n(require("@babel/runtime/helpers/extends"),require("clientnode"),require("clientnode/dist/property-types"));else if("function"==typeof define&&define.amd)define(["@babel/runtime/helpers/extends","clientnode","clientnode/dist/property-types"],n);else{var t="object"==typeof exports?n(require("@babel/runtime/helpers/extends"),require("clientnode"),require("clientnode/dist/property-types")):n(e["@babel/runtime/helpers/extends"],e.clientnode,e["clientnode/dist/property-types"]);for(var o in t)("object"==typeof exports?exports:e)[o]=t[o]}}(this,(function(e,n,t){return function(){var o={1:function(n){n.exports=e},3:function(e){e.exports=n},8:function(e){e.exports=t}},r={};function i(e){var n=r[e];if(void 0!==n)return n.exports;var t=r[e]={exports:{}};return o[e](t,t.exports,i),t.exports}i.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(n,{a:n}),n},i.d=function(e,n){for(var t in n)i.o(n,t)&&!i.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:n[t]})},i.o=function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},i.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var a={};i.r(a),i.d(a,{baseModelPropertyTypes:function(){return p},checkboxPropertyTypes:function(){return T},dedicatedFileInputPropertyTypes:function(){return M},defaultCheckboxModel:function(){return h},defaultCheckboxProperties:function(){return v},defaultFileInputModel:function(){return z},defaultFileInputModelState:function(){return $},defaultFileInputProperties:function(){return E},defaultFileNameInputProperties:function(){return L},defaultInputModel:function(){return I},defaultInputModelState:function(){return j},defaultInputProperties:function(){return S},defaultInputsModel:function(){return F},defaultInputsProperties:function(){return V},defaultIntervalProperties:function(){return R},defaultModel:function(){return b},defaultModelState:function(){return y},defaultProperties:function(){return g},fileInputModelPropertyTypes:function(){return N},fileInputModelStatePropertyTypes:function(){return w},fileInputPropertyTypes:function(){return C},fileInputRenderProperties:function(){return q},inputModelStatePropertyTypes:function(){return x},inputPropertyTypes:function(){return O},inputsPropertyTypes:function(){return _},inputsRenderProperties:function(){return B},intervalPropertyTypes:function(){return D},modelPropertyTypes:function(){return c},modelStatePropertyTypes:function(){return d},propertyTypes:function(){return f},textInputRenderProperties:function(){return P}});var u=i(1),l=i.n(u),s=i(3),m=i(8),p={name:m.string,declaration:m.string,description:m.string,default:m.any,selection:(0,m.oneOfType)([(0,m.arrayOf)((0,m.oneOfType)([(0,m.arrayOf)((0,m.oneOfType)([m.number,m.string])),m.number,(0,m.objectOf)((0,m.oneOfType)([m.number,m.string])),m.string])),(0,m.objectOf)((0,m.oneOfType)([m.number,m.string]))]),type:m.string,value:m.any},d={dirty:(0,m.oneOfType)([m.boolean,m.symbol]),pristine:(0,m.oneOfType)([m.boolean,m.symbol]),touched:(0,m.oneOfType)([m.boolean,m.symbol]),untouched:(0,m.oneOfType)([m.boolean,m.symbol]),focused:(0,m.oneOfType)([m.boolean,m.symbol]),visited:(0,m.oneOfType)([m.boolean,m.symbol]),invalid:(0,m.oneOfType)([m.boolean,m.symbol]),invalidRequired:(0,m.oneOfType)([m.boolean,m.symbol]),valid:(0,m.oneOfType)([m.boolean,m.symbol])},c=l()({},p,{emptyEqualsNull:m.boolean,trim:m.boolean,invertedPattern:(0,m.oneOfType)([(0,m.arrayOf)((0,m.oneOfType)([m.object,m.string])),m.object,m.string]),pattern:(0,m.oneOfType)([(0,m.arrayOf)((0,m.oneOfType)([m.object,m.string])),m.object,m.string]),maximum:(0,m.oneOfType)([m.number,m.string]),minimum:(0,m.oneOfType)([m.number,m.string]),maximumLength:m.number,minimumLength:m.number,mutable:m.boolean,writable:m.boolean,state:(0,m.shape)(d)}),f=l()({},p,d,{className:m.string,styles:m.object,themeConfiguration:m.object,disabled:m.boolean,enforceUncontrolled:m.boolean,initialValue:m.any,inputProperties:m.object,model:(0,m.shape)(c),onChange:m.func,onChangeValue:m.func,onChangeShowDeclaration:m.func,onChangeState:m.func,onClick:m.func,onFocus:m.func,onTouch:m.func,required:m.boolean,requiredText:m.string,ripple:(0,m.oneOfType)([m.boolean,m.object]),rootProps:m.object,showDeclaration:(0,m.oneOfType)([m.boolean,m.symbol]),showInitialValidationState:m.boolean,showValidationState:m.boolean,tooltip:m.any}),y={dirty:!1,pristine:!0,focused:!1,visited:!1,invalid:!1,invalidRequired:!1,valid:!0,touched:!1,untouched:!0},b={declaration:"",description:"",name:"NO_NAME_DEFINED",emptyEqualsNull:!0,pattern:void 0,invertedPattern:void 0,maximum:1/0,minimum:-1/0,maximumLength:-1,minimumLength:0,mutable:!0,writable:!0,nullable:!0,state:l()({},y),trim:!0,type:"string"},g={enforceUncontrolled:!1,model:l()({},b),triggerInitialPropertiesConsolidation:!1,showDeclaration:void 0,showInitialValidationState:!1,showValidationState:!0,requiredText:"Please fill this field."},T=l()({},f,d,{checked:m.boolean,id:m.string}),h=l()({},b,{default:!1,type:"boolean",value:!1}),v=l()({},g,{default:!1,model:l()({},h),requiredText:"Please check this field."}),x=l()({},d,{invalidMaximum:(0,m.oneOfType)([m.boolean,m.symbol]),invalidMinimum:(0,m.oneOfType)([m.boolean,m.symbol]),invalidMaximumLength:(0,m.oneOfType)([m.boolean,m.symbol]),invalidMinimumLength:(0,m.oneOfType)([m.boolean,m.symbol]),invalidInvertedPattern:(0,m.oneOfType)([m.boolean,m.symbol]),invalidPattern:(0,m.oneOfType)([m.boolean,m.symbol])}),O=l()({},f,x,{align:m.string,children:m.func,cursor:(0,m.oneOfType)([(0,m.shape)({end:m.number.isRequired,start:m.number.isRequired}),m.symbol]),editor:m.string,editorIsActive:(0,m.oneOfType)([m.boolean,m.symbol]),hidden:(0,m.oneOfType)([m.boolean,m.symbol]),icon:(0,m.oneOfType)([m.string,m.object]),inputProps:m.object,invertedPattern:(0,m.oneOfType)([(0,m.arrayOf)((0,m.oneOfType)([m.object,m.string])),m.object,m.string]),invertedPatternText:m.string,labels:(0,m.oneOfType)([(0,m.arrayOf)((0,m.arrayOf)(m.string)),(0,m.arrayOf)(m.string),m.object]),maximum:(0,m.oneOfType)([m.number,m.string]),maximumLengthText:m.string,maximumText:m.string,minimum:(0,m.oneOfType)([m.number,m.string]),minimumLengthText:m.string,minimumText:m.string,onBlur:m.func,onChangeEditorIsActive:m.func,onKeyDown:m.func,onKeyUp:m.func,onSelect:m.func,onSelectionChange:m.func,outlined:m.boolean,pattern:(0,m.oneOfType)([(0,m.arrayOf)((0,m.oneOfType)([m.object,m.string])),m.object,m.string]),patternText:m.string,placeholder:m.string,representation:(0,m.oneOfType)([m.string,m.symbol]),rows:m.number,searchSelection:m.boolean,selectableEditor:m.boolean,step:m.number,suggestionCreator:m.func,suggestSelection:m.boolean,trailingIcon:m.any,transformer:m.object}),P=["children","suggestionCreator"],j=l()({},y,{invalidMaximum:!1,invalidMinimum:!1,invalidMaximumLength:!1,invalidMinimumLength:!1,invalidInvertedPattern:!1,invalidPattern:!1}),I=l()({},b,{state:j}),S=l()({},g,{cursor:{end:0,start:0},editor:"plain",selectableEditor:!1,rows:4,invertedPatternText:'Your string should not match the regular expression${[].concat(invertedPattern).length > 1 ? "s" : ""}: "${[].concat(invertedPattern).join("\\", \\"")}".',maximumLengthText:"Please type less or equal than ${maximumLength} symbols.",minimumLengthText:"Please type at least or equal ${minimumLength} symbols.",maximumText:"Please type less or equal than ${formatValue(maximum)}.",minimumText:"Please type at least or equal ${formatValue(minimum)}.",model:l()({},I),patternText:'Your string have to match the regular expression${[].concat(pattern).length > 1 ? "s" : ""}: "${[].concat(pattern).join("\\", \\"")}".',searchSelection:!1,suggestSelection:!1,step:1}),q=["children","generateFileNameInputProperties"],M={contentTypePattern:(0,m.oneOfType)([(0,m.arrayOf)((0,m.oneOfType)([m.object,m.string])),m.object,m.string]),invertedContentTypePattern:(0,m.oneOfType)([(0,m.arrayOf)((0,m.oneOfType)([m.object,m.string])),m.object,m.string]),maximumSize:m.number,minimumSize:m.number},N=l()({},c,M,{fileName:(0,m.shape)(O)}),w=l()({},d,{invalidContentTypePattern:(0,m.oneOfType)([m.boolean,m.symbol]),invalidInvertedContentTypePattern:(0,m.oneOfType)([m.boolean,m.symbol]),invalidMaximumSize:(0,m.oneOfType)([m.boolean,m.symbol]),invalidMinimumSize:(0,m.oneOfType)([m.boolean,m.symbol]),invalidName:(0,m.oneOfType)([m.boolean,m.symbol])}),C=l()({},f,M,w,{children:m.func,contentTypePatternText:(0,m.oneOfType)([(0,m.arrayOf)((0,m.oneOfType)([m.object,m.string])),m.object,m.string]),invertedContentTypePatternText:(0,m.oneOfType)([(0,m.arrayOf)((0,m.oneOfType)([m.object,m.string])),m.object,m.string]),maximumSizeText:m.string,minimumSizeText:m.string,model:(0,m.shape)(N),deleteButton:(0,m.oneOfType)([m.object,m.string]),downloadButton:(0,m.oneOfType)([m.object,m.string]),editButton:(0,m.oneOfType)([m.object,m.string]),newButton:(0,m.oneOfType)([m.object,m.string]),encoding:m.string,generateFileNameInputProperties:m.func,onBlur:m.func,outlined:m.boolean}),$=l()({},y,{invalidContentTypePattern:!1,invalidInvertedContentTypePattern:!1,invalidMaximumSize:!1,invalidMinimumSize:!1,invalidName:!1}),z=l()({},b,{contentTypePattern:/^.+\/.+$/,invertedContentTypePattern:void 0,fileName:l()({},I,{maximumLength:1024,name:"Name",pattern:/^[^/]+$/}),maximumSize:1/0,minimumSize:0,state:$}),L=l()({},S,{emptyEqualsNull:!1,invertedPatternText:'Your file\'s name should not match the regular expression${[].concat(invertedPattern).length > 1 ? "s" : ""}: "${[].concat(invertedPattern).join("\\", \\"")}".',patternText:'Your file\'s name has to match the regular expression${[].concat(pattern).length > 1 ? "s" : ""}: "${[].concat(pattern).join("\\", \\"")}".',required:!0});delete L.model;var E=l()({},g,{contentTypePatternText:'Your file\'s mime-type has to match the regular expression${[].concat(contentTypePattern).length > 1 ? "s" : ""}: "${[].concat(contentTypePattern).join("\\", \\"")}".',invertedContentTypePatternText:'Your file\'s mime-type should not match the regular expression${[].concat(invertedContentTypePattern).length > 1 ? "s" : ""}: "${[].concat(invertedContentTypePattern).join("\\", \\"")}".',maximumSizeText:"Please provide a file with less or equal size than ${maximumSize} byte.",minimumSizeText:"Please provide a file with more or equal size than ${maximumSize} byte.",requiredText:"Please select a file.",deleteButton:"delete",downloadButton:"download",editButton:"edit",newButton:"new",encoding:"utf-8",generateFileNameInputProperties:s.identity,media:{sixteenByNine:!0},model:l()({},z),sourceToBlobOptions:{endings:"transparent",type:"text/plain"},hashingConfiguration:{binaryString:!1,prefix:"",readChunkSizeInByte:2097152}}),_=l()({},f,x,{children:m.func,createItem:m.func,createPrototype:m.func,maximumNumber:m.number,minimumNumber:m.number}),B=["children","createItem","createPrototype"],F=l()({},b,{state:l()({},b.state,{invalidMaximumNumber:!1,invalidMinimumNumber:!1}),maximumNumber:1/0,minimumNumber:0,type:"string[]"}),V=l()({},g,{addIcon:{icon:"add"},removeIcon:{icon:"clear"},createItem:function(e){return e.item},createPrototype:function(e){return e.item},model:l()({},F)}),D=l()({},O,{value:(0,m.shape)({end:(0,m.oneOfType)([m.number,m.string,(0,m.shape)(O)]),start:(0,m.oneOfType)([m.number,m.string,(0,m.shape)(O)])})}),R={icon:{icon:"timelapse"},maximumText:"Please provide something earlier than ${formatValue(maximum)}.",minimumText:"Please provide something later than ${formatValue(minimum)}.",requiredText:"Please provide a range.",model:{name:"NO_NAME_DEFINED",state:l()({},y),value:{end:l()({},I,{description:"End",name:"end"}),start:l()({},I,{description:"Start",name:"start"})}},type:"time"};return a}()}));
|
|
1
|
+
"use strict";if("undefined"!=typeof module&&null!==module&&"undefined"!==eval("typeof require")&&null!==eval("require")&&"main"in eval("require")&&"undefined"!==eval("typeof require.main")&&null!==eval("require.main")){var ORIGINAL_MAIN_MODULE=module;module!==eval("require.main")&&"paths"in module&&"paths"in eval("require.main")&&"undefined"!=typeof __dirname&&null!==__dirname&&(module.paths=eval("require.main.paths").concat(module.paths.filter((function(path){return eval("require.main.paths").includes(path)}))))}if(null==window)var window="undefined"==typeof global||null===global?{}:global;!function(e,n){if("object"==typeof exports&&"object"==typeof module)module.exports=n(require("@babel/runtime/helpers/extends"),require("clientnode"),require("clientnode/dist/property-types"));else if("function"==typeof define&&define.amd)define(["@babel/runtime/helpers/extends","clientnode","clientnode/dist/property-types"],n);else{var t="object"==typeof exports?n(require("@babel/runtime/helpers/extends"),require("clientnode"),require("clientnode/dist/property-types")):n(e["@babel/runtime/helpers/extends"],e.clientnode,e["clientnode/dist/property-types"]);for(var o in t)("object"==typeof exports?exports:e)[o]=t[o]}}(this,(function(e,n,t){return function(){var o={1:function(n){n.exports=e},3:function(e){e.exports=n},8:function(e){e.exports=t}},r={};function i(e){var n=r[e];if(void 0!==n)return n.exports;var t=r[e]={exports:{}};return o[e](t,t.exports,i),t.exports}i.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(n,{a:n}),n},i.d=function(e,n){for(var t in n)i.o(n,t)&&!i.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:n[t]})},i.o=function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},i.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var a={};i.r(a),i.d(a,{baseModelPropertyTypes:function(){return p},checkboxPropertyTypes:function(){return T},dedicatedFileInputPropertyTypes:function(){return M},defaultCheckboxModel:function(){return h},defaultCheckboxProperties:function(){return v},defaultFileInputModel:function(){return z},defaultFileInputModelState:function(){return $},defaultFileInputProperties:function(){return E},defaultFileNameInputProperties:function(){return L},defaultInputModel:function(){return I},defaultInputModelState:function(){return j},defaultInputProperties:function(){return S},defaultInputsModel:function(){return F},defaultInputsProperties:function(){return V},defaultIntervalProperties:function(){return R},defaultModel:function(){return b},defaultModelState:function(){return y},defaultProperties:function(){return g},fileInputModelPropertyTypes:function(){return N},fileInputModelStatePropertyTypes:function(){return w},fileInputPropertyTypes:function(){return C},fileInputRenderProperties:function(){return q},inputModelStatePropertyTypes:function(){return x},inputPropertyTypes:function(){return O},inputsPropertyTypes:function(){return _},inputsRenderProperties:function(){return B},intervalPropertyTypes:function(){return D},modelPropertyTypes:function(){return c},modelStatePropertyTypes:function(){return d},propertyTypes:function(){return f},textInputRenderProperties:function(){return P}});var u=i(1),l=i.n(u),s=i(3),m=i(8),p={name:m.string,declaration:m.string,description:m.string,default:m.any,selection:(0,m.oneOfType)([(0,m.arrayOf)((0,m.oneOfType)([(0,m.arrayOf)((0,m.oneOfType)([m.number,m.string])),m.number,(0,m.objectOf)((0,m.oneOfType)([m.number,m.string])),m.string])),(0,m.objectOf)((0,m.oneOfType)([m.number,m.string]))]),type:m.string,value:m.any},d={dirty:(0,m.oneOfType)([m.boolean,m.symbol]),pristine:(0,m.oneOfType)([m.boolean,m.symbol]),touched:(0,m.oneOfType)([m.boolean,m.symbol]),untouched:(0,m.oneOfType)([m.boolean,m.symbol]),focused:(0,m.oneOfType)([m.boolean,m.symbol]),visited:(0,m.oneOfType)([m.boolean,m.symbol]),invalid:(0,m.oneOfType)([m.boolean,m.symbol]),invalidRequired:(0,m.oneOfType)([m.boolean,m.symbol]),valid:(0,m.oneOfType)([m.boolean,m.symbol])},c=l()({},p,{emptyEqualsNull:m.boolean,trim:m.boolean,invertedPattern:(0,m.oneOfType)([(0,m.arrayOf)((0,m.oneOfType)([m.object,m.string])),m.object,m.string]),pattern:(0,m.oneOfType)([(0,m.arrayOf)((0,m.oneOfType)([m.object,m.string])),m.object,m.string]),maximum:(0,m.oneOfType)([m.number,m.string]),minimum:(0,m.oneOfType)([m.number,m.string]),maximumLength:m.number,minimumLength:m.number,mutable:m.boolean,writable:m.boolean,state:(0,m.shape)(d)}),f=l()({},p,d,{className:(0,m.oneOfType)([(0,m.arrayOf)(m.string),m.string]),styles:m.object,themeConfiguration:m.object,disabled:m.boolean,enforceUncontrolled:m.boolean,initialValue:m.any,inputProperties:m.object,model:(0,m.shape)(c),onChange:m.func,onChangeValue:m.func,onChangeShowDeclaration:m.func,onChangeState:m.func,onClick:m.func,onFocus:m.func,onTouch:m.func,required:m.boolean,requiredText:m.string,ripple:(0,m.oneOfType)([m.boolean,m.object]),rootProps:m.object,showDeclaration:(0,m.oneOfType)([m.boolean,m.symbol]),showInitialValidationState:m.boolean,showValidationState:m.boolean,tooltip:m.any}),y={dirty:!1,pristine:!0,focused:!1,visited:!1,invalid:!1,invalidRequired:!1,valid:!0,touched:!1,untouched:!0},b={declaration:"",description:"",name:"NO_NAME_DEFINED",emptyEqualsNull:!0,pattern:void 0,invertedPattern:void 0,maximum:1/0,minimum:-1/0,maximumLength:-1,minimumLength:0,mutable:!0,writable:!0,nullable:!0,state:l()({},y),trim:!0,type:"string"},g={className:[],styles:{},enforceUncontrolled:!1,model:l()({},b),triggerInitialPropertiesConsolidation:!1,showDeclaration:void 0,showInitialValidationState:!1,showValidationState:!0,requiredText:"Please fill this field."},T=l()({},f,d,{checked:m.boolean,id:m.string}),h=l()({},b,{default:!1,type:"boolean",value:!1}),v=l()({},g,{default:!1,model:l()({},h),requiredText:"Please check this field."}),x=l()({},d,{invalidMaximum:(0,m.oneOfType)([m.boolean,m.symbol]),invalidMinimum:(0,m.oneOfType)([m.boolean,m.symbol]),invalidMaximumLength:(0,m.oneOfType)([m.boolean,m.symbol]),invalidMinimumLength:(0,m.oneOfType)([m.boolean,m.symbol]),invalidInvertedPattern:(0,m.oneOfType)([m.boolean,m.symbol]),invalidPattern:(0,m.oneOfType)([m.boolean,m.symbol])}),O=l()({},f,x,{align:m.string,children:m.func,cursor:(0,m.oneOfType)([(0,m.shape)({end:m.number.isRequired,start:m.number.isRequired}),m.symbol]),editor:m.string,editorIsActive:(0,m.oneOfType)([m.boolean,m.symbol]),hidden:(0,m.oneOfType)([m.boolean,m.symbol]),icon:(0,m.oneOfType)([m.string,m.object]),inputProps:m.object,invertedPattern:(0,m.oneOfType)([(0,m.arrayOf)((0,m.oneOfType)([m.object,m.string])),m.object,m.string]),invertedPatternText:m.string,labels:(0,m.oneOfType)([(0,m.arrayOf)((0,m.arrayOf)(m.string)),(0,m.arrayOf)(m.string),m.object]),maximum:(0,m.oneOfType)([m.number,m.string]),maximumLengthText:m.string,maximumText:m.string,minimum:(0,m.oneOfType)([m.number,m.string]),minimumLengthText:m.string,minimumText:m.string,onBlur:m.func,onChangeEditorIsActive:m.func,onKeyDown:m.func,onKeyUp:m.func,onSelect:m.func,onSelectionChange:m.func,outlined:m.boolean,pattern:(0,m.oneOfType)([(0,m.arrayOf)((0,m.oneOfType)([m.object,m.string])),m.object,m.string]),patternText:m.string,placeholder:m.string,representation:(0,m.oneOfType)([m.string,m.symbol]),rows:m.number,searchSelection:m.boolean,selectableEditor:m.boolean,step:m.number,suggestionCreator:m.func,suggestSelection:m.boolean,trailingIcon:m.any,transformer:m.object}),P=["children","suggestionCreator"],j=l()({},y,{invalidMaximum:!1,invalidMinimum:!1,invalidMaximumLength:!1,invalidMinimumLength:!1,invalidInvertedPattern:!1,invalidPattern:!1}),I=l()({},b,{state:j}),S=l()({},g,{cursor:{end:0,start:0},editor:"plain",selectableEditor:!1,rows:4,invertedPatternText:'Your string should not match the regular expression${[].concat(invertedPattern).length > 1 ? "s" : ""}: "${[].concat(invertedPattern).join("\\", \\"")}".',maximumLengthText:"Please type less or equal than ${maximumLength} symbols.",minimumLengthText:"Please type at least or equal ${minimumLength} symbols.",maximumText:"Please type less or equal than ${formatValue(maximum)}.",minimumText:"Please type at least or equal ${formatValue(minimum)}.",model:l()({},I),patternText:'Your string have to match the regular expression${[].concat(pattern).length > 1 ? "s" : ""}: "${[].concat(pattern).join("\\", \\"")}".',searchSelection:!1,suggestSelection:!1,step:1}),q=["children","generateFileNameInputProperties"],M={contentTypePattern:(0,m.oneOfType)([(0,m.arrayOf)((0,m.oneOfType)([m.object,m.string])),m.object,m.string]),invertedContentTypePattern:(0,m.oneOfType)([(0,m.arrayOf)((0,m.oneOfType)([m.object,m.string])),m.object,m.string]),maximumSize:m.number,minimumSize:m.number},N=l()({},c,M,{fileName:(0,m.shape)(O)}),w=l()({},d,{invalidContentTypePattern:(0,m.oneOfType)([m.boolean,m.symbol]),invalidInvertedContentTypePattern:(0,m.oneOfType)([m.boolean,m.symbol]),invalidMaximumSize:(0,m.oneOfType)([m.boolean,m.symbol]),invalidMinimumSize:(0,m.oneOfType)([m.boolean,m.symbol]),invalidName:(0,m.oneOfType)([m.boolean,m.symbol])}),C=l()({},f,M,w,{children:m.func,contentTypePatternText:(0,m.oneOfType)([(0,m.arrayOf)((0,m.oneOfType)([m.object,m.string])),m.object,m.string]),invertedContentTypePatternText:(0,m.oneOfType)([(0,m.arrayOf)((0,m.oneOfType)([m.object,m.string])),m.object,m.string]),maximumSizeText:m.string,minimumSizeText:m.string,model:(0,m.shape)(N),deleteButton:(0,m.oneOfType)([m.object,m.string]),downloadButton:(0,m.oneOfType)([m.object,m.string]),editButton:(0,m.oneOfType)([m.object,m.string]),newButton:(0,m.oneOfType)([m.object,m.string]),encoding:m.string,generateFileNameInputProperties:m.func,onBlur:m.func,outlined:m.boolean}),$=l()({},y,{invalidContentTypePattern:!1,invalidInvertedContentTypePattern:!1,invalidMaximumSize:!1,invalidMinimumSize:!1,invalidName:!1}),z=l()({},b,{contentTypePattern:/^.+\/.+$/,invertedContentTypePattern:void 0,fileName:l()({},I,{maximumLength:1024,name:"Name",pattern:/^[^/]+$/}),maximumSize:1/0,minimumSize:0,state:$}),L=l()({},S,{emptyEqualsNull:!1,invertedPatternText:'Your file\'s name should not match the regular expression${[].concat(invertedPattern).length > 1 ? "s" : ""}: "${[].concat(invertedPattern).join("\\", \\"")}".',patternText:'Your file\'s name has to match the regular expression${[].concat(pattern).length > 1 ? "s" : ""}: "${[].concat(pattern).join("\\", \\"")}".',required:!0});delete L.model;var E=l()({},g,{contentTypePatternText:'Your file\'s mime-type has to match the regular expression${[].concat(contentTypePattern).length > 1 ? "s" : ""}: "${[].concat(contentTypePattern).join("\\", \\"")}".',invertedContentTypePatternText:'Your file\'s mime-type should not match the regular expression${[].concat(invertedContentTypePattern).length > 1 ? "s" : ""}: "${[].concat(invertedContentTypePattern).join("\\", \\"")}".',maximumSizeText:"Please provide a file with less or equal size than ${maximumSize} byte.",minimumSizeText:"Please provide a file with more or equal size than ${maximumSize} byte.",requiredText:"Please select a file.",deleteButton:"delete",downloadButton:"download",editButton:"edit",newButton:"new",encoding:"utf-8",generateFileNameInputProperties:s.identity,media:{sixteenByNine:!0},model:l()({},z),sourceToBlobOptions:{endings:"transparent",type:"text/plain"},hashingConfiguration:{binaryString:!1,prefix:"",readChunkSizeInByte:2097152}}),_=l()({},f,x,{children:m.func,createItem:m.func,createPrototype:m.func,maximumNumber:m.number,minimumNumber:m.number}),B=["children","createItem","createPrototype"],F=l()({},b,{state:l()({},b.state,{invalidMaximumNumber:!1,invalidMinimumNumber:!1}),maximumNumber:1/0,minimumNumber:0,type:"string[]"}),V=l()({},g,{addIcon:{icon:"add"},removeIcon:{icon:"clear"},createItem:function(e){return e.item},createPrototype:function(e){return e.item},model:l()({},F)}),D=l()({},O,{value:(0,m.shape)({end:(0,m.oneOfType)([m.number,m.string,(0,m.shape)(O)]),start:(0,m.oneOfType)([m.number,m.string,(0,m.shape)(O)])})}),R={icon:{icon:"timelapse"},maximumText:"Please provide something earlier than ${formatValue(maximum)}.",minimumText:"Please provide something later than ${formatValue(minimum)}.",requiredText:"Please provide a range.",model:{name:"NO_NAME_DEFINED",state:l()({},y),value:{end:l()({},I,{description:"End",name:"end"}),start:l()({},I,{description:"Start",name:"start"})}},type:"time"};return a}()}));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-input-material",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.657",
|
|
4
4
|
"description": "Reusable material design based input field with support for (richt-)text, code, selections, numbers, dates and so on.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"form-field",
|
|
@@ -90,78 +90,79 @@
|
|
|
90
90
|
},
|
|
91
91
|
"runkitExample": "require('@babel/runtime/package.json')\n\nglobalThis.window = globalThis\n\nconst {TextInput} = require('react-input-material')\n\nTextInput.webComponentAdapterWrapped",
|
|
92
92
|
"devDependencies": {
|
|
93
|
-
"@babel/eslint-parser": "^7.
|
|
94
|
-
"@babel/plugin-transform-proto-to-assign": "^7.
|
|
95
|
-
"@babel/preset-react": "^7.
|
|
96
|
-
"@babel/runtime": "^7.
|
|
97
|
-
"@emotion/react": "^11.
|
|
98
|
-
"@rmwc/card": "^14.3.
|
|
99
|
-
"@rmwc/checkbox": "^14.3.
|
|
100
|
-
"@rmwc/circular-progress": "^14.3.
|
|
101
|
-
"@rmwc/formfield": "^14.3.
|
|
102
|
-
"@rmwc/icon": "^14.3.
|
|
103
|
-
"@rmwc/icon-button": "^14.3.
|
|
104
|
-
"@rmwc/menu": "^14.3.
|
|
105
|
-
"@rmwc/select": "patch:@rmwc/select@npm%3A14.3.
|
|
106
|
-
"@rmwc/tabs": "^14.3.
|
|
107
|
-
"@rmwc/textfield": "^14.3.
|
|
108
|
-
"@rmwc/theme": "^14.3.
|
|
109
|
-
"@rmwc/tooltip": "^14.3.
|
|
110
|
-
"@rmwc/touch-target": "^14.3.
|
|
111
|
-
"@rmwc/typography": "^14.3.
|
|
93
|
+
"@babel/eslint-parser": "^7.25.7",
|
|
94
|
+
"@babel/plugin-transform-proto-to-assign": "^7.25.7",
|
|
95
|
+
"@babel/preset-react": "^7.25.7",
|
|
96
|
+
"@babel/runtime": "^7.25.7",
|
|
97
|
+
"@emotion/react": "^11.13.3",
|
|
98
|
+
"@rmwc/card": "^14.3.4",
|
|
99
|
+
"@rmwc/checkbox": "^14.3.4",
|
|
100
|
+
"@rmwc/circular-progress": "^14.3.4",
|
|
101
|
+
"@rmwc/formfield": "^14.3.4",
|
|
102
|
+
"@rmwc/icon": "^14.3.4",
|
|
103
|
+
"@rmwc/icon-button": "^14.3.4",
|
|
104
|
+
"@rmwc/menu": "^14.3.4",
|
|
105
|
+
"@rmwc/select": "patch:@rmwc/select@npm%3A14.3.4#~/.yarn/patches/@rmwc-select-npm-14.3.4-6d0aebe22c.patch",
|
|
106
|
+
"@rmwc/tabs": "^14.3.4",
|
|
107
|
+
"@rmwc/textfield": "^14.3.4",
|
|
108
|
+
"@rmwc/theme": "^14.3.4",
|
|
109
|
+
"@rmwc/tooltip": "^14.3.4",
|
|
110
|
+
"@rmwc/touch-target": "^14.3.4",
|
|
111
|
+
"@rmwc/typography": "^14.3.4",
|
|
112
|
+
"@stylistic/eslint-plugin-ts": "^2.8.0",
|
|
112
113
|
"@teamsupercell/typings-for-css-modules-loader": "^2.5.2",
|
|
113
114
|
"@tinymce/tinymce-react": "^5.1.1",
|
|
114
115
|
"@types/ejs": "^3.1.5",
|
|
115
116
|
"@types/html-minifier": "^4.0.5",
|
|
116
|
-
"@types/jquery": "^3.5.
|
|
117
|
+
"@types/jquery": "^3.5.31",
|
|
117
118
|
"@types/jsdom": "^21.1.7",
|
|
118
|
-
"@types/node": "^
|
|
119
|
-
"@types/react": "^18.3.
|
|
119
|
+
"@types/node": "^22.7.4",
|
|
120
|
+
"@types/react": "^18.3.11",
|
|
120
121
|
"@types/react-dom": "^18.3.0",
|
|
121
|
-
"@types/react-transition-group": "^4.4.
|
|
122
|
+
"@types/react-transition-group": "^4.4.11",
|
|
122
123
|
"@types/spark-md5": "^3.0.4",
|
|
123
124
|
"@types/webpack-env": "^1.18.5",
|
|
124
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
125
|
-
"@typescript-eslint/parser": "^
|
|
125
|
+
"@typescript-eslint/eslint-plugin": "^8.8.0",
|
|
126
|
+
"@typescript-eslint/parser": "^8.8.0",
|
|
126
127
|
"blob-util": "^2.0.2",
|
|
127
|
-
"clientnode": "^3.0.
|
|
128
|
+
"clientnode": "^3.0.1194",
|
|
128
129
|
"css-loader": "^7.1.2",
|
|
129
|
-
"cssnano": "^7.0.
|
|
130
|
-
"documentation-website": "^1.0.
|
|
131
|
-
"eslint": "^9.
|
|
130
|
+
"cssnano": "^7.0.6",
|
|
131
|
+
"documentation-website": "^1.0.334",
|
|
132
|
+
"eslint": "^9.11.1",
|
|
132
133
|
"eslint-config-google": "^0.14.0",
|
|
133
|
-
"eslint-plugin-jsdoc": "^
|
|
134
|
+
"eslint-plugin-jsdoc": "^50.3.1",
|
|
134
135
|
"identity-obj-proxy": "^3.0.0",
|
|
135
136
|
"jest": "^29.7.0",
|
|
136
137
|
"jsdoc": "^4.0.3",
|
|
137
138
|
"material-components-web": "^14.0.0",
|
|
138
139
|
"material-icons": "^1.13.12",
|
|
139
|
-
"mini-css-extract-plugin": "^2.9.
|
|
140
|
-
"postcss": "8.4.
|
|
140
|
+
"mini-css-extract-plugin": "^2.9.1",
|
|
141
|
+
"postcss": "8.4.47",
|
|
141
142
|
"postcss-import": "^16.1.0",
|
|
142
143
|
"postcss-loader": "^8.1.1",
|
|
143
|
-
"postcss-nested": "^6.0
|
|
144
|
-
"postcss-preset-env": "^
|
|
144
|
+
"postcss-nested": "^6.2.0",
|
|
145
|
+
"postcss-preset-env": "^10.0.5",
|
|
145
146
|
"prop-types": "^15.8.1",
|
|
146
147
|
"react": "^18.3.1",
|
|
147
148
|
"react-ace": "^12.0.0",
|
|
148
149
|
"react-dom": "^18.3.1",
|
|
149
|
-
"react-generic-animate": "^0.0.
|
|
150
|
-
"react-generic-dummy": "^0.0.
|
|
151
|
-
"react-generic-tools": "^0.0.
|
|
150
|
+
"react-generic-animate": "^0.0.53",
|
|
151
|
+
"react-generic-dummy": "^0.0.78",
|
|
152
|
+
"react-generic-tools": "^0.0.48",
|
|
152
153
|
"react-transition-group": "^4.4.5",
|
|
153
154
|
"react-useanimations": "^2.10.0",
|
|
154
155
|
"spark-md5": "^3.0.2",
|
|
155
156
|
"style-loader": "^4.0.0",
|
|
156
|
-
"stylelint": "^16.
|
|
157
|
+
"stylelint": "^16.9.0",
|
|
157
158
|
"stylelint-config-standard": "^36.0.1",
|
|
158
|
-
"tinymce": "^7.
|
|
159
|
-
"tslib": "^2.
|
|
160
|
-
"typescript-eslint": "^
|
|
159
|
+
"tinymce": "^7.3.0",
|
|
160
|
+
"tslib": "^2.7.0",
|
|
161
|
+
"typescript-eslint": "^8.8.0",
|
|
161
162
|
"typescript-plugin-css-modules": "^5.1.0",
|
|
162
|
-
"web-component-wrapper": "^0.0.
|
|
163
|
-
"weboptimizer": "^2.0.
|
|
164
|
-
"webpack-dev-server": "^5.0
|
|
163
|
+
"web-component-wrapper": "^0.0.496",
|
|
164
|
+
"weboptimizer": "^2.0.1518",
|
|
165
|
+
"webpack-dev-server": "^5.1.0"
|
|
165
166
|
},
|
|
166
167
|
"peerDependencies": {
|
|
167
168
|
"@babel/runtime": "*",
|
|
@@ -282,12 +283,13 @@
|
|
|
282
283
|
"yarn": ">=4"
|
|
283
284
|
},
|
|
284
285
|
"resolutions": {
|
|
285
|
-
"colors": "1.4.0",
|
|
286
286
|
"@rmwc/ripple@npm:14.0.11": "patch:@rmwc/ripple@npm%3A14.0.11#~/.yarn/patches/@rmwc-ripple-npm-14.0.11-22d1530040.patch",
|
|
287
|
-
"
|
|
287
|
+
"@rmwc/ripple@npm:14.3.4": "patch:@rmwc/ripple@npm%3A14.3.4#~/.yarn/patches/@rmwc-ripple-npm-14.3.4-27648eff11.patch",
|
|
288
|
+
"colors": "1.4.0",
|
|
289
|
+
"globals@npm:^9.18.0": "patch:globals@npm%3A11.12.0#~/.yarn/patches/globals-npm-11.12.0-1fa7f41a6c.patch",
|
|
288
290
|
"globals@npm:^11.1.0": "patch:globals@npm%3A11.12.0#~/.yarn/patches/globals-npm-11.12.0-1fa7f41a6c.patch",
|
|
289
291
|
"globals@npm:^14.0.0": "patch:globals@npm%3A11.12.0#~/.yarn/patches/globals-npm-11.12.0-1fa7f41a6c.patch",
|
|
290
|
-
"
|
|
292
|
+
"webpack@npm:^5.90.3": "patch:webpack@npm%3A5.90.3#~/.yarn/patches/webpack-npm-5.90.3-2a12e60d26.patch"
|
|
291
293
|
},
|
|
292
294
|
"sideEffects": false,
|
|
293
295
|
"documentationWebsite": {
|