@nectary/components 4.7.8 → 4.8.1
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 -0
- package/accordion-item/index.d.ts +5 -0
- package/action-menu/index.d.ts +5 -0
- package/action-menu-option/index.d.ts +5 -0
- package/alert/index.d.ts +5 -0
- package/avatar/index.d.ts +5 -0
- package/badge/index.d.ts +5 -0
- package/button/index.d.ts +5 -0
- package/button-group/index.d.ts +5 -0
- package/button-group-item/index.d.ts +5 -0
- package/card/index.d.ts +5 -0
- package/card-container/index.d.ts +5 -0
- package/card-v2/index.d.ts +5 -0
- package/card-v2-title/index.d.ts +5 -0
- package/checkbox/index.d.ts +5 -0
- package/chip/index.d.ts +5 -0
- package/code-tag/index.d.ts +5 -0
- package/color-menu/index.d.ts +5 -0
- package/color-menu-option/index.d.ts +5 -0
- package/color-swatch/index.d.ts +5 -0
- package/date-picker/index.d.ts +5 -0
- package/dialog/index.d.ts +5 -0
- package/emoji/index.d.ts +5 -0
- package/emoji-picker/index.d.ts +5 -0
- package/field/index.d.ts +5 -0
- package/file-drop/index.d.ts +5 -0
- package/file-picker/index.d.ts +5 -0
- package/file-status/index.d.ts +5 -0
- package/flag/index.d.ts +5 -0
- package/grid/index.d.ts +5 -0
- package/grid-item/index.d.ts +5 -0
- package/help-tooltip/index.d.ts +5 -0
- package/horizontal-stepper/index.d.ts +5 -0
- package/horizontal-stepper-item/index.d.ts +5 -0
- package/icon/index.d.ts +5 -0
- package/inline-alert/index.d.ts +5 -0
- package/inline-alert/index.js +1 -1
- package/inline-alert/types.d.ts +1 -1
- package/input/index.d.ts +5 -0
- package/link/index.d.ts +5 -0
- package/list/index.d.ts +5 -0
- package/list-item/index.d.ts +5 -0
- package/package.json +2 -2
- package/pagination/index.d.ts +5 -0
- package/persistent-overlay/index.d.ts +5 -0
- package/pop/index.d.ts +5 -0
- package/popover/index.d.ts +5 -0
- package/progress/index.d.ts +5 -0
- package/progress-stepper/index.d.ts +5 -0
- package/progress-stepper-item/index.d.ts +5 -0
- package/radio/index.d.ts +5 -0
- package/radio-option/index.d.ts +5 -0
- package/rich-text/index.d.ts +5 -0
- package/rich-textarea/index.d.ts +5 -0
- package/segment/index.d.ts +5 -0
- package/segment-collapse/index.d.ts +5 -0
- package/segmented-control/index.d.ts +5 -0
- package/segmented-control-option/index.d.ts +5 -0
- package/segmented-icon-control/index.d.ts +5 -0
- package/segmented-icon-control-option/index.d.ts +5 -0
- package/select-button/index.d.ts +5 -0
- package/select-menu/index.d.ts +5 -0
- package/select-menu-option/index.d.ts +5 -0
- package/skeleton/index.d.ts +5 -0
- package/skeleton-item/index.d.ts +5 -0
- package/spinner/index.d.ts +5 -0
- package/table/index.d.ts +5 -0
- package/table-body/index.d.ts +5 -0
- package/table-cell/index.d.ts +5 -0
- package/table-head/index.d.ts +5 -0
- package/table-head-cell/index.d.ts +5 -0
- package/table-row/index.d.ts +5 -0
- package/tabs/index.d.ts +5 -0
- package/tabs-icon-option/index.d.ts +5 -0
- package/tabs-option/index.d.ts +5 -0
- package/tag/index.d.ts +5 -0
- package/text/index.d.ts +5 -0
- package/textarea/index.d.ts +5 -0
- package/tile-control/index.d.ts +5 -0
- package/tile-control-option/index.d.ts +5 -0
- package/time-picker/index.d.ts +5 -0
- package/title/index.d.ts +5 -0
- package/toast/index.d.ts +5 -0
- package/toast-manager/index.d.ts +5 -0
- package/toggle/index.d.ts +5 -0
- package/tooltip/index.d.ts +5 -0
- package/vertical-stepper/index.d.ts +5 -0
- package/vertical-stepper-item/index.d.ts +5 -0
package/accordion/index.d.ts
CHANGED
|
@@ -6,6 +6,11 @@ declare global {
|
|
|
6
6
|
interface HTMLElementTagNameMap {
|
|
7
7
|
'sinch-accordion-item': TSinchAccordionItemElement;
|
|
8
8
|
}
|
|
9
|
+
namespace JSX {
|
|
10
|
+
interface IntrinsicElements {
|
|
11
|
+
'sinch-accordion-item': TSinchAccordionItemReact;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
9
14
|
}
|
|
10
15
|
declare module 'react' {
|
|
11
16
|
namespace JSX {
|
package/action-menu/index.d.ts
CHANGED
|
@@ -3,6 +3,11 @@ declare global {
|
|
|
3
3
|
interface HTMLElementTagNameMap {
|
|
4
4
|
'sinch-action-menu': TSinchActionMenuElement;
|
|
5
5
|
}
|
|
6
|
+
namespace JSX {
|
|
7
|
+
interface IntrinsicElements {
|
|
8
|
+
'sinch-action-menu': TSinchActionMenuReact;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
6
11
|
}
|
|
7
12
|
declare module 'react' {
|
|
8
13
|
namespace JSX {
|
|
@@ -4,6 +4,11 @@ declare global {
|
|
|
4
4
|
interface HTMLElementTagNameMap {
|
|
5
5
|
'sinch-action-menu-option': TSinchActionMenuOptionElement;
|
|
6
6
|
}
|
|
7
|
+
namespace JSX {
|
|
8
|
+
interface IntrinsicElements {
|
|
9
|
+
'sinch-action-menu-option': TSinchActionMenuOptionReact;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
7
12
|
}
|
|
8
13
|
declare module 'react' {
|
|
9
14
|
namespace JSX {
|
package/alert/index.d.ts
CHANGED
package/avatar/index.d.ts
CHANGED
package/badge/index.d.ts
CHANGED
package/button/index.d.ts
CHANGED
package/button-group/index.d.ts
CHANGED
|
@@ -3,6 +3,11 @@ declare global {
|
|
|
3
3
|
interface HTMLElementTagNameMap {
|
|
4
4
|
'sinch-button-group': TSinchButtonGroupElement;
|
|
5
5
|
}
|
|
6
|
+
namespace JSX {
|
|
7
|
+
interface IntrinsicElements {
|
|
8
|
+
'sinch-button-group': TSinchButtonGroupReact;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
6
11
|
}
|
|
7
12
|
declare module 'react' {
|
|
8
13
|
namespace JSX {
|
|
@@ -3,6 +3,11 @@ declare global {
|
|
|
3
3
|
interface HTMLElementTagNameMap {
|
|
4
4
|
'sinch-button-group-item': TSinchButtonGroupItemElement;
|
|
5
5
|
}
|
|
6
|
+
namespace JSX {
|
|
7
|
+
interface IntrinsicElements {
|
|
8
|
+
'sinch-button-group-item': TSinchButtonGroupItemReact;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
6
11
|
}
|
|
7
12
|
declare module 'react' {
|
|
8
13
|
namespace JSX {
|
package/card/index.d.ts
CHANGED
|
@@ -3,6 +3,11 @@ declare global {
|
|
|
3
3
|
interface HTMLElementTagNameMap {
|
|
4
4
|
'sinch-card-container': TSinchCardContainerElement;
|
|
5
5
|
}
|
|
6
|
+
namespace JSX {
|
|
7
|
+
interface IntrinsicElements {
|
|
8
|
+
'sinch-card-container': TSinchCardContainerReact;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
6
11
|
}
|
|
7
12
|
declare module 'react' {
|
|
8
13
|
namespace JSX {
|
package/card-v2/index.d.ts
CHANGED
package/card-v2-title/index.d.ts
CHANGED
|
@@ -3,6 +3,11 @@ declare global {
|
|
|
3
3
|
interface HTMLElementTagNameMap {
|
|
4
4
|
'sinch-card-v2-title': TSinchCardTitleElement;
|
|
5
5
|
}
|
|
6
|
+
namespace JSX {
|
|
7
|
+
interface IntrinsicElements {
|
|
8
|
+
'sinch-card-v2-title': TSinchCardTitleReact;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
6
11
|
}
|
|
7
12
|
declare module 'react' {
|
|
8
13
|
namespace JSX {
|
package/checkbox/index.d.ts
CHANGED
package/chip/index.d.ts
CHANGED
package/code-tag/index.d.ts
CHANGED
package/color-menu/index.d.ts
CHANGED
|
@@ -5,6 +5,11 @@ declare global {
|
|
|
5
5
|
interface HTMLElementTagNameMap {
|
|
6
6
|
'sinch-color-menu-option': TSinchColorMenuOptionElement;
|
|
7
7
|
}
|
|
8
|
+
namespace JSX {
|
|
9
|
+
interface IntrinsicElements {
|
|
10
|
+
'sinch-color-menu-option': TSinchColorMenuOptionReact;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
8
13
|
}
|
|
9
14
|
declare module 'react' {
|
|
10
15
|
namespace JSX {
|
package/color-swatch/index.d.ts
CHANGED
|
@@ -4,6 +4,11 @@ declare global {
|
|
|
4
4
|
interface HTMLElementTagNameMap {
|
|
5
5
|
'sinch-color-swatch': TSinchColorSwatchElement;
|
|
6
6
|
}
|
|
7
|
+
namespace JSX {
|
|
8
|
+
interface IntrinsicElements {
|
|
9
|
+
'sinch-color-swatch': TSinchColorSwatchReact;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
7
12
|
}
|
|
8
13
|
declare module 'react' {
|
|
9
14
|
namespace JSX {
|
package/date-picker/index.d.ts
CHANGED
|
@@ -5,6 +5,11 @@ declare global {
|
|
|
5
5
|
interface HTMLElementTagNameMap {
|
|
6
6
|
'sinch-date-picker': TSinchDatePickerElement;
|
|
7
7
|
}
|
|
8
|
+
namespace JSX {
|
|
9
|
+
interface IntrinsicElements {
|
|
10
|
+
'sinch-date-picker': TSinchDatePickerReact;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
8
13
|
}
|
|
9
14
|
declare module 'react' {
|
|
10
15
|
namespace JSX {
|
package/dialog/index.d.ts
CHANGED
package/emoji/index.d.ts
CHANGED
package/emoji-picker/index.d.ts
CHANGED
|
@@ -13,6 +13,11 @@ declare global {
|
|
|
13
13
|
interface HTMLElementTagNameMap {
|
|
14
14
|
'sinch-emoji-picker': TSinchEmojiPickerElement;
|
|
15
15
|
}
|
|
16
|
+
namespace JSX {
|
|
17
|
+
interface IntrinsicElements {
|
|
18
|
+
'sinch-emoji-picker': TSinchEmojiPickerReact;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
16
21
|
}
|
|
17
22
|
declare module 'react' {
|
|
18
23
|
namespace JSX {
|
package/field/index.d.ts
CHANGED
package/file-drop/index.d.ts
CHANGED
package/file-picker/index.d.ts
CHANGED
|
@@ -3,6 +3,11 @@ declare global {
|
|
|
3
3
|
interface HTMLElementTagNameMap {
|
|
4
4
|
'sinch-file-picker': TSinchFilePickerElement;
|
|
5
5
|
}
|
|
6
|
+
namespace JSX {
|
|
7
|
+
interface IntrinsicElements {
|
|
8
|
+
'sinch-file-picker': TSinchFilePickerReact;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
6
11
|
}
|
|
7
12
|
declare module 'react' {
|
|
8
13
|
namespace JSX {
|
package/file-status/index.d.ts
CHANGED
|
@@ -6,6 +6,11 @@ declare global {
|
|
|
6
6
|
interface HTMLElementTagNameMap {
|
|
7
7
|
'sinch-file-status': TSinchFileStatusElement;
|
|
8
8
|
}
|
|
9
|
+
namespace JSX {
|
|
10
|
+
interface IntrinsicElements {
|
|
11
|
+
'sinch-file-status': TSinchFileStatusReact;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
9
14
|
}
|
|
10
15
|
declare module 'react' {
|
|
11
16
|
namespace JSX {
|
package/flag/index.d.ts
CHANGED
package/grid/index.d.ts
CHANGED
package/grid-item/index.d.ts
CHANGED
package/help-tooltip/index.d.ts
CHANGED
|
@@ -5,6 +5,11 @@ declare global {
|
|
|
5
5
|
interface HTMLElementTagNameMap {
|
|
6
6
|
'sinch-help-tooltip': TSinchHelpTooltipElement;
|
|
7
7
|
}
|
|
8
|
+
namespace JSX {
|
|
9
|
+
interface IntrinsicElements {
|
|
10
|
+
'sinch-help-tooltip': TSinchHelpTooltipReact;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
8
13
|
}
|
|
9
14
|
declare module 'react' {
|
|
10
15
|
namespace JSX {
|
|
@@ -3,6 +3,11 @@ declare global {
|
|
|
3
3
|
interface HTMLElementTagNameMap {
|
|
4
4
|
'sinch-horizontal-stepper': TSinchHorizontalStepperElement;
|
|
5
5
|
}
|
|
6
|
+
namespace JSX {
|
|
7
|
+
interface IntrinsicElements {
|
|
8
|
+
'sinch-horizontal-stepper': TSinchHorizontalStepperReact;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
6
11
|
}
|
|
7
12
|
declare module 'react' {
|
|
8
13
|
namespace JSX {
|
|
@@ -6,6 +6,11 @@ declare global {
|
|
|
6
6
|
interface HTMLElementTagNameMap {
|
|
7
7
|
'sinch-horizontal-stepper-item': TSinchHorizontalStepperItemElement;
|
|
8
8
|
}
|
|
9
|
+
namespace JSX {
|
|
10
|
+
interface IntrinsicElements {
|
|
11
|
+
'sinch-horizontal-stepper-item': TSinchHorizontalStepperItemReact;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
9
14
|
}
|
|
10
15
|
declare module 'react' {
|
|
11
16
|
namespace JSX {
|
package/icon/index.d.ts
CHANGED
package/inline-alert/index.d.ts
CHANGED
|
@@ -7,6 +7,11 @@ declare global {
|
|
|
7
7
|
interface HTMLElementTagNameMap {
|
|
8
8
|
'sinch-inline-alert': TSinchInlineAlertElement;
|
|
9
9
|
}
|
|
10
|
+
namespace JSX {
|
|
11
|
+
interface IntrinsicElements {
|
|
12
|
+
'sinch-inline-alert': TSinchInlineAlertReact;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
10
15
|
}
|
|
11
16
|
declare module 'react' {
|
|
12
17
|
namespace JSX {
|
package/inline-alert/index.js
CHANGED
|
@@ -3,7 +3,7 @@ import '../rich-text';
|
|
|
3
3
|
import '../text';
|
|
4
4
|
import '../title';
|
|
5
5
|
import { defineCustomElement, getAttribute, getLiteralAttribute, updateAttribute, updateLiteralAttribute, NectaryElement, setClass } from '../utils';
|
|
6
|
-
const templateHTML = '<style>:host{display:block}#wrapper{display:flex;flex-direction:row;align-items:flex-start;padding:16px;border-radius:var(--sinch-comp-inline-alert-shape-radius);box-sizing:border-box;width:100%}:host([type=success]) #wrapper{background-color:var(--sinch-comp-inline-alert-color-success-default-background)}:host([type=warn]) #wrapper{background-color:var(--sinch-comp-inline-alert-color-warning-default-background)}:host([type=error]) #wrapper{background-color:var(--sinch-comp-inline-alert-color-error-default-background)}:host([type=info]) #wrapper{background-color:var(--sinch-comp-inline-alert-color-info-default-background)}#icon-error,#icon-info,#icon-success,#icon-warn{display:none}#icon-success{--sinch-global-color-icon:var(--sinch-comp-inline-alert-color-success-default-icon)}#icon-warn{--sinch-global-color-icon:var(--sinch-comp-inline-alert-color-warning-default-icon)}#icon-error{--sinch-global-color-icon:var(--sinch-comp-inline-alert-color-error-default-icon)}#icon-info{--sinch-global-color-icon:var(--sinch-comp-inline-alert-color-info-default-icon)}:host([type=error]) #icon-error,:host([type=info]) #icon-info,:host([type=success]) #icon-success,:host([type=warn]) #icon-warn{display:block}#body-wrapper{display:flex;flex-direction:column;align-items:flex-start;margin-left:8px;min-width:0;flex:1}#caption{align-self:stretch;--sinch-comp-title-font:var(--sinch-comp-inline-alert-font-title)}:host([type=success]) #caption{--sinch-global-color-text:var(--sinch-comp-inline-alert-color-success-default-text)}:host([type=warn]) #caption{--sinch-global-color-text:var(--sinch-comp-inline-alert-color-warning-default-text)}:host([type=error]) #caption{--sinch-global-color-text:var(--sinch-comp-inline-alert-color-error-default-text)}:host([type=info]) #caption{--sinch-global-color-text:var(--sinch-comp-inline-alert-color-info-default-text)}#text{display:flex;flex-direction:column;gap:8px;margin-top:
|
|
6
|
+
const templateHTML = '<style>:host{display:block}#wrapper{display:flex;flex-direction:row;align-items:flex-start;padding:16px;border-radius:var(--sinch-comp-inline-alert-shape-radius);box-sizing:border-box;width:100%}:host([type=success]) #wrapper{background-color:var(--sinch-comp-inline-alert-color-success-default-background)}:host([type=warn]) #wrapper{background-color:var(--sinch-comp-inline-alert-color-warning-default-background)}:host([type=error]) #wrapper{background-color:var(--sinch-comp-inline-alert-color-error-default-background)}:host([type=info]) #wrapper{background-color:var(--sinch-comp-inline-alert-color-info-default-background)}#icon-error,#icon-info,#icon-success,#icon-warn{display:none}#icon-success{--sinch-global-color-icon:var(--sinch-comp-inline-alert-color-success-default-icon)}#icon-warn{--sinch-global-color-icon:var(--sinch-comp-inline-alert-color-warning-default-icon)}#icon-error{--sinch-global-color-icon:var(--sinch-comp-inline-alert-color-error-default-icon)}#icon-info{--sinch-global-color-icon:var(--sinch-comp-inline-alert-color-info-default-icon)}:host([type=error]) #icon-error,:host([type=info]) #icon-info,:host([type=success]) #icon-success,:host([type=warn]) #icon-warn{display:block}#body-wrapper{display:flex;flex-direction:column;align-items:flex-start;margin-left:8px;min-width:0;flex:1}#caption{align-self:stretch;--sinch-comp-title-font:var(--sinch-comp-inline-alert-font-title)}:host([type=success]) #caption{--sinch-global-color-text:var(--sinch-comp-inline-alert-color-success-default-text)}:host([type=warn]) #caption{--sinch-global-color-text:var(--sinch-comp-inline-alert-color-warning-default-text)}:host([type=error]) #caption{--sinch-global-color-text:var(--sinch-comp-inline-alert-color-error-default-text)}:host([type=info]) #caption{--sinch-global-color-text:var(--sinch-comp-inline-alert-color-info-default-text)}#text{display:flex;flex-direction:column;gap:8px;margin-top:0;align-self:stretch;--sinch-comp-rich-text-font:var(--sinch-comp-inline-alert-font-body)}:host([type=success]) #text{--sinch-global-color-text:var(--sinch-comp-inline-alert-color-success-default-text)}:host([type=warn]) #text{--sinch-global-color-text:var(--sinch-comp-inline-alert-color-warning-default-text)}:host([type=error]) #text{--sinch-global-color-text:var(--sinch-comp-inline-alert-color-error-default-text)}:host([type=info]) #text{--sinch-global-color-text:var(--sinch-comp-inline-alert-color-info-default-text)}:host([caption=""]) #text,:host([caption]) #text{margin-top:4px}#action{width:100%;display:flex;margin-top:16px;min-width:0;gap:16px}#action.empty{display:none}#close{margin-left:16px}#close.empty{display:none}</style><div id="wrapper"><sinch-icon icons-version="2" name="circle-info" id="icon-info"></sinch-icon><sinch-icon icons-version="2" name="circle-check" id="icon-success"></sinch-icon><sinch-icon icons-version="2" name="triangle-exclamation" id="icon-warn"></sinch-icon><sinch-icon icons-version="2" name="octagon-exclamation" id="icon-error"></sinch-icon><div id="body-wrapper"><sinch-title id="caption" level="3" type="s"></sinch-title><sinch-rich-text id="text"></sinch-rich-text><div id="action"><slot name="action"></slot></div></div><div id="close"><slot name="close"></slot></div></div>';
|
|
7
7
|
import { typeValues } from './utils';
|
|
8
8
|
const template = document.createElement('template');
|
|
9
9
|
template.innerHTML = templateHTML;
|
package/inline-alert/types.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ export type TSinchInlineAlertElement = HTMLElement & {
|
|
|
11
11
|
export type TSinchInlineAlertReact = TSinchElementReact<TSinchInlineAlertElement> & {
|
|
12
12
|
type: TSinchInlineAlertType;
|
|
13
13
|
text?: string;
|
|
14
|
-
caption
|
|
14
|
+
caption?: string;
|
|
15
15
|
} & {
|
|
16
16
|
style?: {
|
|
17
17
|
'--sinch-comp-inline-alert-shape-radius'?: string;
|
package/input/index.d.ts
CHANGED
package/link/index.d.ts
CHANGED
package/list/index.d.ts
CHANGED
package/list-item/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nectary/components",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.8.1",
|
|
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.5"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@babel/cli": "^7.22.15",
|
package/pagination/index.d.ts
CHANGED
|
@@ -4,6 +4,11 @@ declare global {
|
|
|
4
4
|
interface HTMLElementTagNameMap {
|
|
5
5
|
'sinch-persistent-overlay': TSinchPersistentOverlayElement;
|
|
6
6
|
}
|
|
7
|
+
namespace JSX {
|
|
8
|
+
interface IntrinsicElements {
|
|
9
|
+
'sinch-persistent-overlay': TSinchPersistentOverlayReact;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
7
12
|
}
|
|
8
13
|
declare module 'react' {
|
|
9
14
|
namespace JSX {
|
package/pop/index.d.ts
CHANGED
package/popover/index.d.ts
CHANGED
package/progress/index.d.ts
CHANGED
|
@@ -3,6 +3,11 @@ declare global {
|
|
|
3
3
|
interface HTMLElementTagNameMap {
|
|
4
4
|
'sinch-progress-stepper': TSinchProgressStepperElement;
|
|
5
5
|
}
|
|
6
|
+
namespace JSX {
|
|
7
|
+
interface IntrinsicElements {
|
|
8
|
+
'sinch-progress-stepper': TSinchProgressStepperReact;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
6
11
|
}
|
|
7
12
|
declare module 'react' {
|
|
8
13
|
namespace JSX {
|
|
@@ -5,6 +5,11 @@ declare global {
|
|
|
5
5
|
interface HTMLElementTagNameMap {
|
|
6
6
|
'sinch-progress-stepper-item': TSinchProgressStepperItemElement;
|
|
7
7
|
}
|
|
8
|
+
namespace JSX {
|
|
9
|
+
interface IntrinsicElements {
|
|
10
|
+
'sinch-progress-stepper-item': TSinchProgressStepperItemReact;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
8
13
|
}
|
|
9
14
|
declare module 'react' {
|
|
10
15
|
namespace JSX {
|
package/radio/index.d.ts
CHANGED
package/radio-option/index.d.ts
CHANGED
|
@@ -3,6 +3,11 @@ declare global {
|
|
|
3
3
|
interface HTMLElementTagNameMap {
|
|
4
4
|
'sinch-radio-option': TSinchRadioOptionElement;
|
|
5
5
|
}
|
|
6
|
+
namespace JSX {
|
|
7
|
+
interface IntrinsicElements {
|
|
8
|
+
'sinch-radio-option': TSinchRadioOptionReact;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
6
11
|
}
|
|
7
12
|
declare module 'react' {
|
|
8
13
|
namespace JSX {
|
package/rich-text/index.d.ts
CHANGED
package/rich-textarea/index.d.ts
CHANGED
|
@@ -3,6 +3,11 @@ declare global {
|
|
|
3
3
|
interface HTMLElementTagNameMap {
|
|
4
4
|
'sinch-rich-textarea': TSinchRichTextareaElement;
|
|
5
5
|
}
|
|
6
|
+
namespace JSX {
|
|
7
|
+
interface IntrinsicElements {
|
|
8
|
+
'sinch-rich-textarea': TSinchRichTextareaReact;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
6
11
|
}
|
|
7
12
|
declare module 'react' {
|
|
8
13
|
namespace JSX {
|
package/segment/index.d.ts
CHANGED
|
@@ -4,6 +4,11 @@ declare global {
|
|
|
4
4
|
interface HTMLElementTagNameMap {
|
|
5
5
|
'sinch-segment-collapse': TSinchSegmentExpandElement;
|
|
6
6
|
}
|
|
7
|
+
namespace JSX {
|
|
8
|
+
interface IntrinsicElements {
|
|
9
|
+
'sinch-segment-collapse': TSinchSegmentExpandReact;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
7
12
|
}
|
|
8
13
|
declare module 'react' {
|
|
9
14
|
namespace JSX {
|
|
@@ -3,6 +3,11 @@ declare global {
|
|
|
3
3
|
interface HTMLElementTagNameMap {
|
|
4
4
|
'sinch-segmented-control': TSinchSegmentedControlElement;
|
|
5
5
|
}
|
|
6
|
+
namespace JSX {
|
|
7
|
+
interface IntrinsicElements {
|
|
8
|
+
'sinch-segmented-control': TSinchSegmentedControlReact;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
6
11
|
}
|
|
7
12
|
declare module 'react' {
|
|
8
13
|
namespace JSX {
|
|
@@ -3,6 +3,11 @@ declare global {
|
|
|
3
3
|
interface HTMLElementTagNameMap {
|
|
4
4
|
'sinch-segmented-control-option': TSinchSegmentedControlOptionElement;
|
|
5
5
|
}
|
|
6
|
+
namespace JSX {
|
|
7
|
+
interface IntrinsicElements {
|
|
8
|
+
'sinch-segmented-control-option': TSinchSegmentedControlOptionReact;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
6
11
|
}
|
|
7
12
|
declare module 'react' {
|
|
8
13
|
namespace JSX {
|
|
@@ -3,6 +3,11 @@ declare global {
|
|
|
3
3
|
interface HTMLElementTagNameMap {
|
|
4
4
|
'sinch-segmented-icon-control': TSinchSegmentedIconControlElement;
|
|
5
5
|
}
|
|
6
|
+
namespace JSX {
|
|
7
|
+
interface IntrinsicElements {
|
|
8
|
+
'sinch-segmented-icon-control': TSinchSegmentedIconControlReact;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
6
11
|
}
|
|
7
12
|
declare module 'react' {
|
|
8
13
|
namespace JSX {
|
|
@@ -3,6 +3,11 @@ declare global {
|
|
|
3
3
|
interface HTMLElementTagNameMap {
|
|
4
4
|
'sinch-segmented-icon-control-option': TSinchSegmentedIconControlOptionElement;
|
|
5
5
|
}
|
|
6
|
+
namespace JSX {
|
|
7
|
+
interface IntrinsicElements {
|
|
8
|
+
'sinch-segmented-icon-control-option': TSinchSegmentedIconControlOptionReact;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
6
11
|
}
|
|
7
12
|
declare module 'react' {
|
|
8
13
|
namespace JSX {
|
package/select-button/index.d.ts
CHANGED
|
@@ -5,6 +5,11 @@ declare global {
|
|
|
5
5
|
interface HTMLElementTagNameMap {
|
|
6
6
|
'sinch-select-button': TSinchSelectButtonElement;
|
|
7
7
|
}
|
|
8
|
+
namespace JSX {
|
|
9
|
+
interface IntrinsicElements {
|
|
10
|
+
'sinch-select-button': TSinchSelectButtonReact;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
8
13
|
}
|
|
9
14
|
declare module 'react' {
|
|
10
15
|
namespace JSX {
|
package/select-menu/index.d.ts
CHANGED
|
@@ -6,6 +6,11 @@ declare global {
|
|
|
6
6
|
interface HTMLElementTagNameMap {
|
|
7
7
|
'sinch-select-menu': TSinchSelectMenuElement;
|
|
8
8
|
}
|
|
9
|
+
namespace JSX {
|
|
10
|
+
interface IntrinsicElements {
|
|
11
|
+
'sinch-select-menu': TSinchSelectMenuReact;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
9
14
|
}
|
|
10
15
|
declare module 'react' {
|
|
11
16
|
namespace JSX {
|
|
@@ -20,6 +20,11 @@ declare global {
|
|
|
20
20
|
interface HTMLElementTagNameMap {
|
|
21
21
|
'sinch-select-menu-option': TSinchSelectMenuOptionElement;
|
|
22
22
|
}
|
|
23
|
+
namespace JSX {
|
|
24
|
+
interface IntrinsicElements {
|
|
25
|
+
'sinch-select-menu-option': TSinchSelectMenuOptionReact;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
23
28
|
}
|
|
24
29
|
declare module 'react' {
|
|
25
30
|
namespace JSX {
|
package/skeleton/index.d.ts
CHANGED
package/skeleton-item/index.d.ts
CHANGED
|
@@ -3,6 +3,11 @@ declare global {
|
|
|
3
3
|
interface HTMLElementTagNameMap {
|
|
4
4
|
'sinch-skeleton-item': TSinchSkeletonItemElement;
|
|
5
5
|
}
|
|
6
|
+
namespace JSX {
|
|
7
|
+
interface IntrinsicElements {
|
|
8
|
+
'sinch-skeleton-item': TSinchSkeletonItemReact;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
6
11
|
}
|
|
7
12
|
declare module 'react' {
|
|
8
13
|
namespace JSX {
|
package/spinner/index.d.ts
CHANGED
package/table/index.d.ts
CHANGED
package/table-body/index.d.ts
CHANGED
package/table-cell/index.d.ts
CHANGED
package/table-head/index.d.ts
CHANGED
|
@@ -4,6 +4,11 @@ declare global {
|
|
|
4
4
|
interface HTMLElementTagNameMap {
|
|
5
5
|
'sinch-table-head-cell': TSinchTableHeaderCellElement;
|
|
6
6
|
}
|
|
7
|
+
namespace JSX {
|
|
8
|
+
interface IntrinsicElements {
|
|
9
|
+
'sinch-table-head-cell': TSinchTableHeaderCellReact;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
7
12
|
}
|
|
8
13
|
declare module 'react' {
|
|
9
14
|
namespace JSX {
|
package/table-row/index.d.ts
CHANGED
package/tabs/index.d.ts
CHANGED
|
@@ -3,6 +3,11 @@ declare global {
|
|
|
3
3
|
interface HTMLElementTagNameMap {
|
|
4
4
|
'sinch-tabs-icon-option': TSinchTabsIconOptionElement;
|
|
5
5
|
}
|
|
6
|
+
namespace JSX {
|
|
7
|
+
interface IntrinsicElements {
|
|
8
|
+
'sinch-tabs-icon-option': TSinchTabsIconOptionReact;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
6
11
|
}
|
|
7
12
|
declare module 'react' {
|
|
8
13
|
namespace JSX {
|
package/tabs-option/index.d.ts
CHANGED
|
@@ -4,6 +4,11 @@ declare global {
|
|
|
4
4
|
interface HTMLElementTagNameMap {
|
|
5
5
|
'sinch-tabs-option': TSinchTabsOptionElement;
|
|
6
6
|
}
|
|
7
|
+
namespace JSX {
|
|
8
|
+
interface IntrinsicElements {
|
|
9
|
+
'sinch-tabs-option': TSinchTabsOptionReact;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
7
12
|
}
|
|
8
13
|
declare module 'react' {
|
|
9
14
|
namespace JSX {
|
package/tag/index.d.ts
CHANGED
package/text/index.d.ts
CHANGED
package/textarea/index.d.ts
CHANGED
package/tile-control/index.d.ts
CHANGED
|
@@ -3,6 +3,11 @@ declare global {
|
|
|
3
3
|
interface HTMLElementTagNameMap {
|
|
4
4
|
'sinch-tile-control': TSinchTileControlElement;
|
|
5
5
|
}
|
|
6
|
+
namespace JSX {
|
|
7
|
+
interface IntrinsicElements {
|
|
8
|
+
'sinch-tile-control': TSinchTileControlReact;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
6
11
|
}
|
|
7
12
|
declare module 'react' {
|
|
8
13
|
namespace JSX {
|
|
@@ -3,6 +3,11 @@ declare global {
|
|
|
3
3
|
interface HTMLElementTagNameMap {
|
|
4
4
|
'sinch-tile-control-option': TSinchTileControlOptionElement;
|
|
5
5
|
}
|
|
6
|
+
namespace JSX {
|
|
7
|
+
interface IntrinsicElements {
|
|
8
|
+
'sinch-tile-control-option': TSinchTileControlOptionReact;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
6
11
|
}
|
|
7
12
|
declare module 'react' {
|
|
8
13
|
namespace JSX {
|
package/time-picker/index.d.ts
CHANGED
|
@@ -6,6 +6,11 @@ declare global {
|
|
|
6
6
|
interface HTMLElementTagNameMap {
|
|
7
7
|
'sinch-time-picker': TSinchTimePickerElement;
|
|
8
8
|
}
|
|
9
|
+
namespace JSX {
|
|
10
|
+
interface IntrinsicElements {
|
|
11
|
+
'sinch-time-picker': TSinchTimePickerReact;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
9
14
|
}
|
|
10
15
|
declare module 'react' {
|
|
11
16
|
namespace JSX {
|
package/title/index.d.ts
CHANGED
package/toast/index.d.ts
CHANGED
package/toast-manager/index.d.ts
CHANGED
|
@@ -5,6 +5,11 @@ declare global {
|
|
|
5
5
|
interface HTMLElementTagNameMap {
|
|
6
6
|
'sinch-toast-manager': TSinchToastManagerElement;
|
|
7
7
|
}
|
|
8
|
+
namespace JSX {
|
|
9
|
+
interface IntrinsicElements {
|
|
10
|
+
'sinch-toast-manager': TSinchToastManagerReact;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
8
13
|
}
|
|
9
14
|
declare module 'react' {
|
|
10
15
|
namespace JSX {
|
package/toggle/index.d.ts
CHANGED
package/tooltip/index.d.ts
CHANGED
|
@@ -3,6 +3,11 @@ declare global {
|
|
|
3
3
|
interface HTMLElementTagNameMap {
|
|
4
4
|
'sinch-vertical-stepper': TSinchVerticalStepperElement;
|
|
5
5
|
}
|
|
6
|
+
namespace JSX {
|
|
7
|
+
interface IntrinsicElements {
|
|
8
|
+
'sinch-vertical-stepper': TSinchVerticalStepperReact;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
6
11
|
}
|
|
7
12
|
declare module 'react' {
|
|
8
13
|
namespace JSX {
|
|
@@ -6,6 +6,11 @@ declare global {
|
|
|
6
6
|
interface HTMLElementTagNameMap {
|
|
7
7
|
'sinch-vertical-stepper-item': TSinchVerticalStepperItemElement;
|
|
8
8
|
}
|
|
9
|
+
namespace JSX {
|
|
10
|
+
interface IntrinsicElements {
|
|
11
|
+
'sinch-vertical-stepper-item': TSinchVerticalStepperItemReact;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
9
14
|
}
|
|
10
15
|
declare module 'react' {
|
|
11
16
|
namespace JSX {
|