nextemos 1.0.5 → 1.0.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/dist/interfaces/banner.d.ts +25 -0
- package/dist/interfaces/banner.js +2 -0
- package/dist/interfaces/elements.d.ts +66 -0
- package/dist/interfaces/elements.js +2 -0
- package/dist/interfaces/index.d.ts +2 -0
- package/dist/interfaces/index.js +2 -0
- package/dist/interfaces/response.d.ts +9 -0
- package/dist/interfaces/response.js +1 -0
- package/package.json +1 -1
- /package/dist/{index.d.ts → hooks/index.d.ts} +0 -0
- /package/dist/{index.js → hooks/index.js} +0 -0
- /package/dist/{useFetch.d.ts → hooks/useFetch.d.ts} +0 -0
- /package/dist/{useFetch.js → hooks/useFetch.js} +0 -0
- /package/dist/{useLocalStorage.d.ts → hooks/useLocalStorage.d.ts} +0 -0
- /package/dist/{useLocalStorage.js → hooks/useLocalStorage.js} +0 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export default interface IBannersResponse extends IResponse {
|
|
2
|
+
banners: Banner[];
|
|
3
|
+
}
|
|
4
|
+
export default interface IBannerResponse extends IResponse {
|
|
5
|
+
banner: Banner;
|
|
6
|
+
}
|
|
7
|
+
interface Banner {
|
|
8
|
+
id: number;
|
|
9
|
+
tenantId: string;
|
|
10
|
+
templateId: number;
|
|
11
|
+
imageLink: string;
|
|
12
|
+
key: string;
|
|
13
|
+
isApproved: boolean;
|
|
14
|
+
extensionData: ExtensionData;
|
|
15
|
+
contentItemId: number;
|
|
16
|
+
contentTypeId: number;
|
|
17
|
+
externalId: number;
|
|
18
|
+
targetLink?: string;
|
|
19
|
+
name: string;
|
|
20
|
+
description?: string;
|
|
21
|
+
order: number;
|
|
22
|
+
}
|
|
23
|
+
interface ExtensionData {
|
|
24
|
+
}
|
|
25
|
+
export {};
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
/**
|
|
3
|
+
* @interface IDiv
|
|
4
|
+
*/
|
|
5
|
+
export interface IDiv extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> {
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* @interface IButton
|
|
9
|
+
*/
|
|
10
|
+
export interface IButton extends React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement> {
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* @interface IElement
|
|
14
|
+
*/
|
|
15
|
+
export interface IElement extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @interface ILink
|
|
19
|
+
*/
|
|
20
|
+
export interface ILink extends React.DetailedHTMLProps<React.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement> {
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* @interface IInput
|
|
24
|
+
*/
|
|
25
|
+
export interface IInput extends React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement> {
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* @interface ITextarea
|
|
29
|
+
*/
|
|
30
|
+
export interface ITextarea extends React.DetailedHTMLProps<React.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement> {
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* @interface ISelect
|
|
34
|
+
*/
|
|
35
|
+
export interface ISelect extends React.DetailedHTMLProps<React.SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement> {
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* @interface IOption
|
|
39
|
+
*/
|
|
40
|
+
export interface IOption extends React.DetailedHTMLProps<React.OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement> {
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* @interface ILiElement
|
|
44
|
+
*/
|
|
45
|
+
export interface ILiElement extends React.DetailedHTMLProps<React.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement> {
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* @interface IUlElement
|
|
49
|
+
*/
|
|
50
|
+
export interface IUlElement extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLUListElement>, HTMLUListElement> {
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* @interface IParagraph
|
|
54
|
+
*/
|
|
55
|
+
export interface IParagraph extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement> {
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* @interface IHeading
|
|
59
|
+
*/
|
|
60
|
+
export interface IHeading extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement> {
|
|
61
|
+
}
|
|
62
|
+
/**
|
|
63
|
+
* @interface ITable
|
|
64
|
+
*/
|
|
65
|
+
export interface ITable extends React.DetailedHTMLProps<React.TableHTMLAttributes<HTMLTableElement>, HTMLTableElement> {
|
|
66
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|