@ikatec/nebula-react 0.0.1-alpha.21 → 0.0.1-alpha.22
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/index.d.mts +5 -8
- package/dist/index.d.ts +5 -8
- package/dist/index.js +3458 -195
- package/dist/index.mjs +3439 -175
- package/package.json +1 -2
package/dist/index.d.mts
CHANGED
|
@@ -248,21 +248,22 @@ declare const Tag: React$1.ForwardRefExoticComponent<TagProps & React$1.RefAttri
|
|
|
248
248
|
interface CreateStyledSelectProps extends Omit<Props, 'isDisabled'> {
|
|
249
249
|
icon?: React.ReactNode;
|
|
250
250
|
disabled?: boolean;
|
|
251
|
+
isError?: boolean;
|
|
251
252
|
}
|
|
252
253
|
declare const StyledSelect: {
|
|
253
|
-
({ icon, disabled, ...props }: CreateStyledSelectProps): react_jsx_runtime.JSX.Element;
|
|
254
|
+
({ icon, disabled, isError, ...props }: CreateStyledSelectProps): react_jsx_runtime.JSX.Element;
|
|
254
255
|
displayName: string;
|
|
255
256
|
};
|
|
256
257
|
declare const StyledCreatable: {
|
|
257
|
-
({ icon, disabled, ...props }: CreateStyledSelectProps): react_jsx_runtime.JSX.Element;
|
|
258
|
+
({ icon, disabled, isError, ...props }: CreateStyledSelectProps): react_jsx_runtime.JSX.Element;
|
|
258
259
|
displayName: string;
|
|
259
260
|
};
|
|
260
261
|
declare const StyledAsync: {
|
|
261
|
-
({ icon, disabled, ...props }: CreateStyledSelectProps): react_jsx_runtime.JSX.Element;
|
|
262
|
+
({ icon, disabled, isError, ...props }: CreateStyledSelectProps): react_jsx_runtime.JSX.Element;
|
|
262
263
|
displayName: string;
|
|
263
264
|
};
|
|
264
265
|
declare const StyledAsyncCreatable: {
|
|
265
|
-
({ icon, disabled, ...props }: CreateStyledSelectProps): react_jsx_runtime.JSX.Element;
|
|
266
|
+
({ icon, disabled, isError, ...props }: CreateStyledSelectProps): react_jsx_runtime.JSX.Element;
|
|
266
267
|
displayName: string;
|
|
267
268
|
};
|
|
268
269
|
|
|
@@ -448,15 +449,11 @@ interface PaginationMessages extends MessagesRecord {
|
|
|
448
449
|
totalResultsLabel: (pagesSize: number, totalResults: number) => string;
|
|
449
450
|
currentPageLabel: (currentPage: number, totalPages: number) => string;
|
|
450
451
|
}
|
|
451
|
-
interface InputSelectMessages {
|
|
452
|
-
noOptions: string;
|
|
453
|
-
}
|
|
454
452
|
/**
|
|
455
453
|
* Type to store the messages.
|
|
456
454
|
*/
|
|
457
455
|
interface Messages {
|
|
458
456
|
pagination: PaginationMessages;
|
|
459
|
-
inputSelect: InputSelectMessages;
|
|
460
457
|
}
|
|
461
458
|
|
|
462
459
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -248,21 +248,22 @@ declare const Tag: React$1.ForwardRefExoticComponent<TagProps & React$1.RefAttri
|
|
|
248
248
|
interface CreateStyledSelectProps extends Omit<Props, 'isDisabled'> {
|
|
249
249
|
icon?: React.ReactNode;
|
|
250
250
|
disabled?: boolean;
|
|
251
|
+
isError?: boolean;
|
|
251
252
|
}
|
|
252
253
|
declare const StyledSelect: {
|
|
253
|
-
({ icon, disabled, ...props }: CreateStyledSelectProps): react_jsx_runtime.JSX.Element;
|
|
254
|
+
({ icon, disabled, isError, ...props }: CreateStyledSelectProps): react_jsx_runtime.JSX.Element;
|
|
254
255
|
displayName: string;
|
|
255
256
|
};
|
|
256
257
|
declare const StyledCreatable: {
|
|
257
|
-
({ icon, disabled, ...props }: CreateStyledSelectProps): react_jsx_runtime.JSX.Element;
|
|
258
|
+
({ icon, disabled, isError, ...props }: CreateStyledSelectProps): react_jsx_runtime.JSX.Element;
|
|
258
259
|
displayName: string;
|
|
259
260
|
};
|
|
260
261
|
declare const StyledAsync: {
|
|
261
|
-
({ icon, disabled, ...props }: CreateStyledSelectProps): react_jsx_runtime.JSX.Element;
|
|
262
|
+
({ icon, disabled, isError, ...props }: CreateStyledSelectProps): react_jsx_runtime.JSX.Element;
|
|
262
263
|
displayName: string;
|
|
263
264
|
};
|
|
264
265
|
declare const StyledAsyncCreatable: {
|
|
265
|
-
({ icon, disabled, ...props }: CreateStyledSelectProps): react_jsx_runtime.JSX.Element;
|
|
266
|
+
({ icon, disabled, isError, ...props }: CreateStyledSelectProps): react_jsx_runtime.JSX.Element;
|
|
266
267
|
displayName: string;
|
|
267
268
|
};
|
|
268
269
|
|
|
@@ -448,15 +449,11 @@ interface PaginationMessages extends MessagesRecord {
|
|
|
448
449
|
totalResultsLabel: (pagesSize: number, totalResults: number) => string;
|
|
449
450
|
currentPageLabel: (currentPage: number, totalPages: number) => string;
|
|
450
451
|
}
|
|
451
|
-
interface InputSelectMessages {
|
|
452
|
-
noOptions: string;
|
|
453
|
-
}
|
|
454
452
|
/**
|
|
455
453
|
* Type to store the messages.
|
|
456
454
|
*/
|
|
457
455
|
interface Messages {
|
|
458
456
|
pagination: PaginationMessages;
|
|
459
|
-
inputSelect: InputSelectMessages;
|
|
460
457
|
}
|
|
461
458
|
|
|
462
459
|
/**
|