@nectary/components 4.7.5 → 4.7.7
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/accordion/index.d.ts +5 -3
- package/accordion-item/index.d.ts +5 -3
- package/action-menu/index.d.ts +5 -3
- package/action-menu-option/index.d.ts +5 -3
- package/alert/index.d.ts +5 -3
- package/avatar/index.d.ts +5 -3
- package/avatar/types.d.ts +1 -0
- package/badge/index.d.ts +5 -3
- package/button/index.d.ts +5 -3
- package/button-group/index.d.ts +5 -3
- package/button-group-item/index.d.ts +5 -3
- package/button-group-item/types.d.ts +1 -0
- package/card/index.d.ts +5 -3
- package/card-container/index.d.ts +5 -3
- package/card-v2/index.d.ts +5 -3
- package/card-v2-title/index.d.ts +5 -3
- package/checkbox/index.d.ts +5 -3
- package/chip/index.d.ts +5 -3
- package/chip/types.d.ts +1 -0
- package/code-tag/index.d.ts +5 -3
- package/color-menu/index.d.ts +5 -3
- package/color-menu-option/index.d.ts +5 -3
- package/color-swatch/index.d.ts +5 -3
- package/date-picker/index.d.ts +5 -3
- package/dialog/index.d.ts +5 -3
- package/emoji/index.d.ts +5 -3
- package/emoji-picker/index.d.ts +5 -3
- package/field/index.d.ts +5 -3
- package/file-drop/index.d.ts +5 -3
- package/file-picker/index.d.ts +5 -3
- package/file-status/index.d.ts +5 -3
- package/flag/index.d.ts +5 -3
- package/grid/index.d.ts +5 -3
- package/grid-item/index.d.ts +5 -3
- package/help-tooltip/index.d.ts +5 -3
- package/horizontal-stepper/index.d.ts +5 -3
- package/horizontal-stepper-item/index.d.ts +5 -3
- package/icon/index.d.ts +5 -3
- package/inline-alert/index.d.ts +5 -3
- package/input/index.d.ts +5 -3
- package/link/index.d.ts +5 -3
- package/list/index.d.ts +5 -3
- package/list-item/index.d.ts +5 -3
- package/package.json +2 -2
- package/pagination/index.d.ts +5 -3
- package/persistent-overlay/index.d.ts +5 -3
- package/pop/index.d.ts +5 -3
- package/popover/index.d.ts +5 -3
- package/progress/index.d.ts +5 -3
- package/progress-stepper/index.d.ts +5 -3
- package/progress-stepper-item/index.d.ts +5 -3
- package/radio/index.d.ts +5 -3
- package/radio/types.d.ts +1 -0
- package/radio-option/index.d.ts +5 -3
- package/rich-text/index.d.ts +5 -3
- package/rich-textarea/index.d.ts +5 -3
- package/segment/index.d.ts +5 -3
- package/segment-collapse/index.d.ts +5 -3
- package/segmented-control/index.d.ts +5 -3
- package/segmented-control-option/index.d.ts +5 -3
- package/segmented-icon-control/index.d.ts +5 -3
- package/segmented-icon-control-option/index.d.ts +5 -3
- package/select-button/index.d.ts +5 -3
- package/select-menu/index.d.ts +5 -3
- package/select-menu-option/index.d.ts +5 -3
- package/skeleton/index.d.ts +5 -3
- package/skeleton-item/index.d.ts +5 -3
- package/spinner/index.d.ts +5 -3
- package/table/index.d.ts +5 -3
- package/table-body/index.d.ts +5 -3
- package/table-cell/index.d.ts +5 -3
- package/table-head/index.d.ts +5 -3
- package/table-head-cell/index.d.ts +5 -3
- package/table-row/index.d.ts +5 -3
- package/tabs/index.d.ts +5 -3
- package/tabs-icon-option/index.d.ts +5 -3
- package/tabs-option/index.d.ts +5 -3
- package/tag/index.d.ts +5 -3
- package/tag/types.d.ts +1 -0
- package/text/index.d.ts +5 -3
- package/textarea/index.d.ts +5 -3
- package/tile-control/index.d.ts +5 -3
- package/tile-control-option/index.d.ts +5 -3
- package/time-picker/index.d.ts +5 -3
- package/title/index.d.ts +5 -3
- package/toast/index.d.ts +5 -3
- package/toast-manager/index.d.ts +5 -3
- package/toggle/index.d.ts +5 -3
- package/tooltip/index.d.ts +5 -3
- package/vertical-stepper/index.d.ts +5 -3
- package/vertical-stepper-item/index.d.ts +5 -3
package/inline-alert/index.d.ts
CHANGED
|
@@ -4,12 +4,14 @@ import '../text';
|
|
|
4
4
|
import '../title';
|
|
5
5
|
import type { TSinchInlineAlertElement, TSinchInlineAlertReact } from './types';
|
|
6
6
|
declare global {
|
|
7
|
+
interface HTMLElementTagNameMap {
|
|
8
|
+
'sinch-inline-alert': TSinchInlineAlertElement;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
declare module 'react' {
|
|
7
12
|
namespace JSX {
|
|
8
13
|
interface IntrinsicElements {
|
|
9
14
|
'sinch-inline-alert': TSinchInlineAlertReact;
|
|
10
15
|
}
|
|
11
16
|
}
|
|
12
|
-
interface HTMLElementTagNameMap {
|
|
13
|
-
'sinch-inline-alert': TSinchInlineAlertElement;
|
|
14
|
-
}
|
|
15
17
|
}
|
package/input/index.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import type { TSinchInputElement, TSinchInputReact } from './types';
|
|
2
2
|
declare global {
|
|
3
|
+
interface HTMLElementTagNameMap {
|
|
4
|
+
'sinch-input': TSinchInputElement;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
declare module 'react' {
|
|
3
8
|
namespace JSX {
|
|
4
9
|
interface IntrinsicElements {
|
|
5
10
|
'sinch-input': TSinchInputReact;
|
|
6
11
|
}
|
|
7
12
|
}
|
|
8
|
-
interface HTMLElementTagNameMap {
|
|
9
|
-
'sinch-input': TSinchInputElement;
|
|
10
|
-
}
|
|
11
13
|
}
|
package/link/index.d.ts
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
import '../icon';
|
|
2
2
|
import type { TSinchLinkElement, TSinchLinkReact } from './types';
|
|
3
3
|
declare global {
|
|
4
|
+
interface HTMLElementTagNameMap {
|
|
5
|
+
'sinch-link': TSinchLinkElement;
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
declare module 'react' {
|
|
4
9
|
namespace JSX {
|
|
5
10
|
interface IntrinsicElements {
|
|
6
11
|
'sinch-link': TSinchLinkReact;
|
|
7
12
|
}
|
|
8
13
|
}
|
|
9
|
-
interface HTMLElementTagNameMap {
|
|
10
|
-
'sinch-link': TSinchLinkElement;
|
|
11
|
-
}
|
|
12
14
|
}
|
package/list/index.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import type { TSinchListElement, TSinchListReact } from './types';
|
|
2
2
|
declare global {
|
|
3
|
+
interface HTMLElementTagNameMap {
|
|
4
|
+
'sinch-list': TSinchListElement;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
declare module 'react' {
|
|
3
8
|
namespace JSX {
|
|
4
9
|
interface IntrinsicElements {
|
|
5
10
|
'sinch-list': TSinchListReact;
|
|
6
11
|
}
|
|
7
12
|
}
|
|
8
|
-
interface HTMLElementTagNameMap {
|
|
9
|
-
'sinch-list': TSinchListElement;
|
|
10
|
-
}
|
|
11
13
|
}
|
package/list-item/index.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import type { TSinchListItemElement, TSinchListItemReact } from './types';
|
|
2
2
|
declare global {
|
|
3
|
+
interface HTMLElementTagNameMap {
|
|
4
|
+
'sinch-list-item': TSinchListItemElement;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
declare module 'react' {
|
|
3
8
|
namespace JSX {
|
|
4
9
|
interface IntrinsicElements {
|
|
5
10
|
'sinch-list-item': TSinchListItemReact;
|
|
6
11
|
}
|
|
7
12
|
}
|
|
8
|
-
interface HTMLElementTagNameMap {
|
|
9
|
-
'sinch-list-item': TSinchListItemElement;
|
|
10
|
-
}
|
|
11
13
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nectary/components",
|
|
3
|
-
"version": "4.7.
|
|
3
|
+
"version": "4.7.7",
|
|
4
4
|
"files": [
|
|
5
5
|
"**/*/*.css",
|
|
6
6
|
"**/*/*.json",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@babel/runtime": "^7.22.15",
|
|
23
|
-
"@nectary/assets": "2.2.
|
|
23
|
+
"@nectary/assets": "2.2.4"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@babel/cli": "^7.22.15",
|
package/pagination/index.d.ts
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
import '../icon';
|
|
2
2
|
import type { TSinchPaginationElement, TSinchPaginationReact } from './types';
|
|
3
3
|
declare global {
|
|
4
|
+
interface HTMLElementTagNameMap {
|
|
5
|
+
'sinch-pagination': TSinchPaginationElement;
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
declare module 'react' {
|
|
4
9
|
namespace JSX {
|
|
5
10
|
interface IntrinsicElements {
|
|
6
11
|
'sinch-pagination': TSinchPaginationReact;
|
|
7
12
|
}
|
|
8
13
|
}
|
|
9
|
-
interface HTMLElementTagNameMap {
|
|
10
|
-
'sinch-pagination': TSinchPaginationElement;
|
|
11
|
-
}
|
|
12
14
|
}
|
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
import '../dialog';
|
|
2
2
|
import type { TSinchPersistentOverlayElement, TSinchPersistentOverlayReact } from './types';
|
|
3
3
|
declare global {
|
|
4
|
+
interface HTMLElementTagNameMap {
|
|
5
|
+
'sinch-persistent-overlay': TSinchPersistentOverlayElement;
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
declare module 'react' {
|
|
4
9
|
namespace JSX {
|
|
5
10
|
interface IntrinsicElements {
|
|
6
11
|
'sinch-persistent-overlay': TSinchPersistentOverlayReact;
|
|
7
12
|
}
|
|
8
13
|
}
|
|
9
|
-
interface HTMLElementTagNameMap {
|
|
10
|
-
'sinch-persistent-overlay': TSinchPersistentOverlayElement;
|
|
11
|
-
}
|
|
12
14
|
}
|
package/pop/index.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import type { TSinchPopElement, TSinchPopReact } from './types';
|
|
2
2
|
declare global {
|
|
3
|
+
interface HTMLElementTagNameMap {
|
|
4
|
+
'sinch-pop': TSinchPopElement;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
declare module 'react' {
|
|
3
8
|
namespace JSX {
|
|
4
9
|
interface IntrinsicElements {
|
|
5
10
|
'sinch-pop': TSinchPopReact;
|
|
6
11
|
}
|
|
7
12
|
}
|
|
8
|
-
interface HTMLElementTagNameMap {
|
|
9
|
-
'sinch-pop': TSinchPopElement;
|
|
10
|
-
}
|
|
11
13
|
}
|
package/popover/index.d.ts
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
import '../pop';
|
|
2
2
|
import type { TSinchPopoverElement, TSinchPopoverReact } from './types';
|
|
3
3
|
declare global {
|
|
4
|
+
interface HTMLElementTagNameMap {
|
|
5
|
+
'sinch-popover': TSinchPopoverElement;
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
declare module 'react' {
|
|
4
9
|
namespace JSX {
|
|
5
10
|
interface IntrinsicElements {
|
|
6
11
|
'sinch-popover': TSinchPopoverReact;
|
|
7
12
|
}
|
|
8
13
|
}
|
|
9
|
-
interface HTMLElementTagNameMap {
|
|
10
|
-
'sinch-popover': TSinchPopoverElement;
|
|
11
|
-
}
|
|
12
14
|
}
|
package/progress/index.d.ts
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
import '../text';
|
|
2
2
|
import type { TSinchProgressElement, TSinchProgressReact } from './types';
|
|
3
3
|
declare global {
|
|
4
|
+
interface HTMLElementTagNameMap {
|
|
5
|
+
'sinch-progress': TSinchProgressElement;
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
declare module 'react' {
|
|
4
9
|
namespace JSX {
|
|
5
10
|
interface IntrinsicElements {
|
|
6
11
|
'sinch-progress': TSinchProgressReact;
|
|
7
12
|
}
|
|
8
13
|
}
|
|
9
|
-
interface HTMLElementTagNameMap {
|
|
10
|
-
'sinch-progress': TSinchProgressElement;
|
|
11
|
-
}
|
|
12
14
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import type { TSinchProgressStepperElement, TSinchProgressStepperReact } from './types';
|
|
2
2
|
declare global {
|
|
3
|
+
interface HTMLElementTagNameMap {
|
|
4
|
+
'sinch-progress-stepper': TSinchProgressStepperElement;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
declare module 'react' {
|
|
3
8
|
namespace JSX {
|
|
4
9
|
interface IntrinsicElements {
|
|
5
10
|
'sinch-progress-stepper': TSinchProgressStepperReact;
|
|
6
11
|
}
|
|
7
12
|
}
|
|
8
|
-
interface HTMLElementTagNameMap {
|
|
9
|
-
'sinch-progress-stepper': TSinchProgressStepperElement;
|
|
10
|
-
}
|
|
11
13
|
}
|
|
@@ -2,12 +2,14 @@ import '../icon';
|
|
|
2
2
|
import '../text';
|
|
3
3
|
import type { TSinchProgressStepperItemElement, TSinchProgressStepperItemReact } from './types';
|
|
4
4
|
declare global {
|
|
5
|
+
interface HTMLElementTagNameMap {
|
|
6
|
+
'sinch-progress-stepper-item': TSinchProgressStepperItemElement;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
declare module 'react' {
|
|
5
10
|
namespace JSX {
|
|
6
11
|
interface IntrinsicElements {
|
|
7
12
|
'sinch-progress-stepper-item': TSinchProgressStepperItemReact;
|
|
8
13
|
}
|
|
9
14
|
}
|
|
10
|
-
interface HTMLElementTagNameMap {
|
|
11
|
-
'sinch-progress-stepper-item': TSinchProgressStepperItemElement;
|
|
12
|
-
}
|
|
13
15
|
}
|
package/radio/index.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import type { TSinchRadioElement, TSinchRadioReact } from './types';
|
|
2
2
|
declare global {
|
|
3
|
+
interface HTMLElementTagNameMap {
|
|
4
|
+
'sinch-radio': TSinchRadioElement;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
declare module 'react' {
|
|
3
8
|
namespace JSX {
|
|
4
9
|
interface IntrinsicElements {
|
|
5
10
|
'sinch-radio': TSinchRadioReact;
|
|
6
11
|
}
|
|
7
12
|
}
|
|
8
|
-
interface HTMLElementTagNameMap {
|
|
9
|
-
'sinch-radio': TSinchRadioElement;
|
|
10
|
-
}
|
|
11
13
|
}
|
package/radio/types.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ export type TSinchRadioReact = TSinchElementReact<TSinchRadioElement> & {
|
|
|
11
11
|
invalid?: boolean;
|
|
12
12
|
'aria-label': string;
|
|
13
13
|
'on-change'?: (e: CustomEvent<string>) => void;
|
|
14
|
+
} & {
|
|
14
15
|
style?: {
|
|
15
16
|
'--sinch-comp-radio-direction'?: 'row' | 'column';
|
|
16
17
|
'--sinch-comp-radio-gap'?: number | string;
|
package/radio-option/index.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import type { TSinchRadioOptionElement, TSinchRadioOptionReact } from './types';
|
|
2
2
|
declare global {
|
|
3
|
+
interface HTMLElementTagNameMap {
|
|
4
|
+
'sinch-radio-option': TSinchRadioOptionElement;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
declare module 'react' {
|
|
3
8
|
namespace JSX {
|
|
4
9
|
interface IntrinsicElements {
|
|
5
10
|
'sinch-radio-option': TSinchRadioOptionReact;
|
|
6
11
|
}
|
|
7
12
|
}
|
|
8
|
-
interface HTMLElementTagNameMap {
|
|
9
|
-
'sinch-radio-option': TSinchRadioOptionElement;
|
|
10
|
-
}
|
|
11
13
|
}
|
package/rich-text/index.d.ts
CHANGED
|
@@ -3,12 +3,14 @@ import '../code-tag';
|
|
|
3
3
|
import '../link';
|
|
4
4
|
import type { TSinchRichTextElement, TSinchRichTextReact } from './types';
|
|
5
5
|
declare global {
|
|
6
|
+
interface HTMLElementTagNameMap {
|
|
7
|
+
'sinch-rich-text': TSinchRichTextElement;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
declare module 'react' {
|
|
6
11
|
namespace JSX {
|
|
7
12
|
interface IntrinsicElements {
|
|
8
13
|
'sinch-rich-text': TSinchRichTextReact;
|
|
9
14
|
}
|
|
10
15
|
}
|
|
11
|
-
interface HTMLElementTagNameMap {
|
|
12
|
-
'sinch-rich-text': TSinchRichTextElement;
|
|
13
|
-
}
|
|
14
16
|
}
|
package/rich-textarea/index.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import type { TSinchRichTextareaElement, TSinchRichTextareaReact } from './types';
|
|
2
2
|
declare global {
|
|
3
|
+
interface HTMLElementTagNameMap {
|
|
4
|
+
'sinch-rich-textarea': TSinchRichTextareaElement;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
declare module 'react' {
|
|
3
8
|
namespace JSX {
|
|
4
9
|
interface IntrinsicElements {
|
|
5
10
|
'sinch-rich-textarea': TSinchRichTextareaReact;
|
|
6
11
|
}
|
|
7
12
|
}
|
|
8
|
-
interface HTMLElementTagNameMap {
|
|
9
|
-
'sinch-rich-textarea': TSinchRichTextareaElement;
|
|
10
|
-
}
|
|
11
13
|
}
|
package/segment/index.d.ts
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
import '../title';
|
|
2
2
|
import type { TSinchSegmentElement, TSinchSegmentReact } from './types';
|
|
3
3
|
declare global {
|
|
4
|
+
interface HTMLElementTagNameMap {
|
|
5
|
+
'sinch-segment': TSinchSegmentElement;
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
declare module 'react' {
|
|
4
9
|
namespace JSX {
|
|
5
10
|
interface IntrinsicElements {
|
|
6
11
|
'sinch-segment': TSinchSegmentReact;
|
|
7
12
|
}
|
|
8
13
|
}
|
|
9
|
-
interface HTMLElementTagNameMap {
|
|
10
|
-
'sinch-segment': TSinchSegmentElement;
|
|
11
|
-
}
|
|
12
14
|
}
|
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
import '../icon';
|
|
2
2
|
import type { TSinchSegmentExpandElement, TSinchSegmentExpandReact } from './types';
|
|
3
3
|
declare global {
|
|
4
|
+
interface HTMLElementTagNameMap {
|
|
5
|
+
'sinch-segment-collapse': TSinchSegmentExpandElement;
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
declare module 'react' {
|
|
4
9
|
namespace JSX {
|
|
5
10
|
interface IntrinsicElements {
|
|
6
11
|
'sinch-segment-collapse': TSinchSegmentExpandReact;
|
|
7
12
|
}
|
|
8
13
|
}
|
|
9
|
-
interface HTMLElementTagNameMap {
|
|
10
|
-
'sinch-segment-collapse': TSinchSegmentExpandElement;
|
|
11
|
-
}
|
|
12
14
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import type { TSinchSegmentedControlElement, TSinchSegmentedControlReact } from './types';
|
|
2
2
|
declare global {
|
|
3
|
+
interface HTMLElementTagNameMap {
|
|
4
|
+
'sinch-segmented-control': TSinchSegmentedControlElement;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
declare module 'react' {
|
|
3
8
|
namespace JSX {
|
|
4
9
|
interface IntrinsicElements {
|
|
5
10
|
'sinch-segmented-control': TSinchSegmentedControlReact;
|
|
6
11
|
}
|
|
7
12
|
}
|
|
8
|
-
interface HTMLElementTagNameMap {
|
|
9
|
-
'sinch-segmented-control': TSinchSegmentedControlElement;
|
|
10
|
-
}
|
|
11
13
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import type { TSinchSegmentedControlOptionElement, TSinchSegmentedControlOptionReact } from './types';
|
|
2
2
|
declare global {
|
|
3
|
+
interface HTMLElementTagNameMap {
|
|
4
|
+
'sinch-segmented-control-option': TSinchSegmentedControlOptionElement;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
declare module 'react' {
|
|
3
8
|
namespace JSX {
|
|
4
9
|
interface IntrinsicElements {
|
|
5
10
|
'sinch-segmented-control-option': TSinchSegmentedControlOptionReact;
|
|
6
11
|
}
|
|
7
12
|
}
|
|
8
|
-
interface HTMLElementTagNameMap {
|
|
9
|
-
'sinch-segmented-control-option': TSinchSegmentedControlOptionElement;
|
|
10
|
-
}
|
|
11
13
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import type { TSinchSegmentedIconControlElement, TSinchSegmentedIconControlReact } from './types';
|
|
2
2
|
declare global {
|
|
3
|
+
interface HTMLElementTagNameMap {
|
|
4
|
+
'sinch-segmented-icon-control': TSinchSegmentedIconControlElement;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
declare module 'react' {
|
|
3
8
|
namespace JSX {
|
|
4
9
|
interface IntrinsicElements {
|
|
5
10
|
'sinch-segmented-icon-control': TSinchSegmentedIconControlReact;
|
|
6
11
|
}
|
|
7
12
|
}
|
|
8
|
-
interface HTMLElementTagNameMap {
|
|
9
|
-
'sinch-segmented-icon-control': TSinchSegmentedIconControlElement;
|
|
10
|
-
}
|
|
11
13
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import type { TSinchSegmentedIconControlOptionElement, TSinchSegmentedIconControlOptionReact } from './types';
|
|
2
2
|
declare global {
|
|
3
|
+
interface HTMLElementTagNameMap {
|
|
4
|
+
'sinch-segmented-icon-control-option': TSinchSegmentedIconControlOptionElement;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
declare module 'react' {
|
|
3
8
|
namespace JSX {
|
|
4
9
|
interface IntrinsicElements {
|
|
5
10
|
'sinch-segmented-icon-control-option': TSinchSegmentedIconControlOptionReact;
|
|
6
11
|
}
|
|
7
12
|
}
|
|
8
|
-
interface HTMLElementTagNameMap {
|
|
9
|
-
'sinch-segmented-icon-control-option': TSinchSegmentedIconControlOptionElement;
|
|
10
|
-
}
|
|
11
13
|
}
|
package/select-button/index.d.ts
CHANGED
|
@@ -2,12 +2,14 @@ import '../text';
|
|
|
2
2
|
import '../icon';
|
|
3
3
|
import type { TSinchSelectButtonElement, TSinchSelectButtonReact } from './types';
|
|
4
4
|
declare global {
|
|
5
|
+
interface HTMLElementTagNameMap {
|
|
6
|
+
'sinch-select-button': TSinchSelectButtonElement;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
declare module 'react' {
|
|
5
10
|
namespace JSX {
|
|
6
11
|
interface IntrinsicElements {
|
|
7
12
|
'sinch-select-button': TSinchSelectButtonReact;
|
|
8
13
|
}
|
|
9
14
|
}
|
|
10
|
-
interface HTMLElementTagNameMap {
|
|
11
|
-
'sinch-select-button': TSinchSelectButtonElement;
|
|
12
|
-
}
|
|
13
15
|
}
|
package/select-menu/index.d.ts
CHANGED
|
@@ -3,12 +3,14 @@ import '../icon';
|
|
|
3
3
|
import '../text';
|
|
4
4
|
import type { TSinchSelectMenuElement, TSinchSelectMenuReact } from './types';
|
|
5
5
|
declare global {
|
|
6
|
+
interface HTMLElementTagNameMap {
|
|
7
|
+
'sinch-select-menu': TSinchSelectMenuElement;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
declare module 'react' {
|
|
6
11
|
namespace JSX {
|
|
7
12
|
interface IntrinsicElements {
|
|
8
13
|
'sinch-select-menu': TSinchSelectMenuReact;
|
|
9
14
|
}
|
|
10
15
|
}
|
|
11
|
-
interface HTMLElementTagNameMap {
|
|
12
|
-
'sinch-select-menu': TSinchSelectMenuElement;
|
|
13
|
-
}
|
|
14
16
|
}
|
|
@@ -17,12 +17,14 @@ export declare class SelectMenuOption extends NectaryElement {
|
|
|
17
17
|
matchesSearch(searchValue: string): boolean;
|
|
18
18
|
}
|
|
19
19
|
declare global {
|
|
20
|
+
interface HTMLElementTagNameMap {
|
|
21
|
+
'sinch-select-menu-option': TSinchSelectMenuOptionElement;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
declare module 'react' {
|
|
20
25
|
namespace JSX {
|
|
21
26
|
interface IntrinsicElements {
|
|
22
27
|
'sinch-select-menu-option': TSinchSelectMenuOptionReact;
|
|
23
28
|
}
|
|
24
29
|
}
|
|
25
|
-
interface HTMLElementTagNameMap {
|
|
26
|
-
'sinch-select-menu-option': TSinchSelectMenuOptionElement;
|
|
27
|
-
}
|
|
28
30
|
}
|
package/skeleton/index.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import type { TSinchSkeletonElement, TSinchSkeletonReact } from './types';
|
|
2
2
|
declare global {
|
|
3
|
+
interface HTMLElementTagNameMap {
|
|
4
|
+
'sinch-skeleton': TSinchSkeletonElement;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
declare module 'react' {
|
|
3
8
|
namespace JSX {
|
|
4
9
|
interface IntrinsicElements {
|
|
5
10
|
'sinch-skeleton': TSinchSkeletonReact;
|
|
6
11
|
}
|
|
7
12
|
}
|
|
8
|
-
interface HTMLElementTagNameMap {
|
|
9
|
-
'sinch-skeleton': TSinchSkeletonElement;
|
|
10
|
-
}
|
|
11
13
|
}
|
package/skeleton-item/index.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import type { TSinchSkeletonItemElement, TSinchSkeletonItemReact } from './types';
|
|
2
2
|
declare global {
|
|
3
|
+
interface HTMLElementTagNameMap {
|
|
4
|
+
'sinch-skeleton-item': TSinchSkeletonItemElement;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
declare module 'react' {
|
|
3
8
|
namespace JSX {
|
|
4
9
|
interface IntrinsicElements {
|
|
5
10
|
'sinch-skeleton-item': TSinchSkeletonItemReact;
|
|
6
11
|
}
|
|
7
12
|
}
|
|
8
|
-
interface HTMLElementTagNameMap {
|
|
9
|
-
'sinch-skeleton-item': TSinchSkeletonItemElement;
|
|
10
|
-
}
|
|
11
13
|
}
|
package/spinner/index.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import type { TSinchSpinnerElement, TSinchSpinnerReact } from './types';
|
|
2
2
|
declare global {
|
|
3
|
+
interface HTMLElementTagNameMap {
|
|
4
|
+
'sinch-spinner': TSinchSpinnerElement;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
declare module 'react' {
|
|
3
8
|
namespace JSX {
|
|
4
9
|
interface IntrinsicElements {
|
|
5
10
|
'sinch-spinner': TSinchSpinnerReact;
|
|
6
11
|
}
|
|
7
12
|
}
|
|
8
|
-
interface HTMLElementTagNameMap {
|
|
9
|
-
'sinch-spinner': TSinchSpinnerElement;
|
|
10
|
-
}
|
|
11
13
|
}
|
package/table/index.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import type { TSinchTableElement, TSinchTableReact } from './types';
|
|
2
2
|
declare global {
|
|
3
|
+
interface HTMLElementTagNameMap {
|
|
4
|
+
'sinch-table': TSinchTableElement;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
declare module 'react' {
|
|
3
8
|
namespace JSX {
|
|
4
9
|
interface IntrinsicElements {
|
|
5
10
|
'sinch-table': TSinchTableReact;
|
|
6
11
|
}
|
|
7
12
|
}
|
|
8
|
-
interface HTMLElementTagNameMap {
|
|
9
|
-
'sinch-table': TSinchTableElement;
|
|
10
|
-
}
|
|
11
13
|
}
|
package/table-body/index.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import type { TSinchTableBodyElement, TSinchTableBodyReact } from './types';
|
|
2
2
|
declare global {
|
|
3
|
+
interface HTMLElementTagNameMap {
|
|
4
|
+
'sinch-table-body': TSinchTableBodyElement;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
declare module 'react' {
|
|
3
8
|
namespace JSX {
|
|
4
9
|
interface IntrinsicElements {
|
|
5
10
|
'sinch-table-body': TSinchTableBodyReact;
|
|
6
11
|
}
|
|
7
12
|
}
|
|
8
|
-
interface HTMLElementTagNameMap {
|
|
9
|
-
'sinch-table-body': TSinchTableBodyElement;
|
|
10
|
-
}
|
|
11
13
|
}
|
package/table-cell/index.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import type { TSinchTableCellElement, TSinchTableCellReact } from './types';
|
|
2
2
|
declare global {
|
|
3
|
+
interface HTMLElementTagNameMap {
|
|
4
|
+
'sinch-table-cell': TSinchTableCellElement;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
declare module 'react' {
|
|
3
8
|
namespace JSX {
|
|
4
9
|
interface IntrinsicElements {
|
|
5
10
|
'sinch-table-cell': TSinchTableCellReact;
|
|
6
11
|
}
|
|
7
12
|
}
|
|
8
|
-
interface HTMLElementTagNameMap {
|
|
9
|
-
'sinch-table-cell': TSinchTableCellElement;
|
|
10
|
-
}
|
|
11
13
|
}
|
package/table-head/index.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import type { TSinchTableHeadElement, TSinchTableHeadReact } from './types';
|
|
2
2
|
declare global {
|
|
3
|
+
interface HTMLElementTagNameMap {
|
|
4
|
+
'sinch-table-head': TSinchTableHeadElement;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
declare module 'react' {
|
|
3
8
|
namespace JSX {
|
|
4
9
|
interface IntrinsicElements {
|
|
5
10
|
'sinch-table-head': TSinchTableHeadReact;
|
|
6
11
|
}
|
|
7
12
|
}
|
|
8
|
-
interface HTMLElementTagNameMap {
|
|
9
|
-
'sinch-table-head': TSinchTableHeadElement;
|
|
10
|
-
}
|
|
11
13
|
}
|
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
import '../text';
|
|
2
2
|
import type { TSinchTableHeaderCellElement, TSinchTableHeaderCellReact } from './types';
|
|
3
3
|
declare global {
|
|
4
|
+
interface HTMLElementTagNameMap {
|
|
5
|
+
'sinch-table-head-cell': TSinchTableHeaderCellElement;
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
declare module 'react' {
|
|
4
9
|
namespace JSX {
|
|
5
10
|
interface IntrinsicElements {
|
|
6
11
|
'sinch-table-head-cell': TSinchTableHeaderCellReact;
|
|
7
12
|
}
|
|
8
13
|
}
|
|
9
|
-
interface HTMLElementTagNameMap {
|
|
10
|
-
'sinch-table-head-cell': TSinchTableHeaderCellElement;
|
|
11
|
-
}
|
|
12
14
|
}
|
package/table-row/index.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import type { TSinchTableRowElement, TSinchTableRowReact } from './types';
|
|
2
2
|
declare global {
|
|
3
|
+
interface HTMLElementTagNameMap {
|
|
4
|
+
'sinch-table-row': TSinchTableRowElement;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
declare module 'react' {
|
|
3
8
|
namespace JSX {
|
|
4
9
|
interface IntrinsicElements {
|
|
5
10
|
'sinch-table-row': TSinchTableRowReact;
|
|
6
11
|
}
|
|
7
12
|
}
|
|
8
|
-
interface HTMLElementTagNameMap {
|
|
9
|
-
'sinch-table-row': TSinchTableRowElement;
|
|
10
|
-
}
|
|
11
13
|
}
|
package/tabs/index.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import type { TSinchTabsElement, TSinchTabsReact } from './types';
|
|
2
2
|
declare global {
|
|
3
|
+
interface HTMLElementTagNameMap {
|
|
4
|
+
'sinch-tabs': TSinchTabsElement;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
declare module 'react' {
|
|
3
8
|
namespace JSX {
|
|
4
9
|
interface IntrinsicElements {
|
|
5
10
|
'sinch-tabs': TSinchTabsReact;
|
|
6
11
|
}
|
|
7
12
|
}
|
|
8
|
-
interface HTMLElementTagNameMap {
|
|
9
|
-
'sinch-tabs': TSinchTabsElement;
|
|
10
|
-
}
|
|
11
13
|
}
|