@stenajs-webui/elements 19.0.0-next.36 → 19.0.0-next.38
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/ui/button-links/FlatButtonLink.d.ts +2 -3
- package/dist/components/ui/button-links/PrimaryButtonLink.d.ts +2 -3
- package/dist/components/ui/button-links/SecondaryButtonLink.d.ts +4 -2
- package/dist/components/ui/button-links/common/BaseButtonLink.d.ts +6 -0
- package/dist/components/ui/buttons/FlatButton.d.ts +2 -2
- package/dist/components/ui/buttons/PrimaryButton.d.ts +2 -4
- package/dist/components/ui/buttons/SecondaryButton.d.ts +4 -2
- package/dist/components/ui/buttons/common/BaseButton.d.ts +6 -0
- package/dist/icons/generated/ArrowIcons.d.ts +1 -0
- package/dist/icons/generated/CommonIcons.d.ts +7 -0
- package/dist/icons/generated/VehicleTypeIcons.d.ts +2 -0
- package/dist/index.es.js +1585 -1443
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import {
|
|
3
|
-
export interface FlatButtonLinkProps extends
|
|
4
|
-
inverted?: boolean;
|
|
2
|
+
import { BaseButtonLinkProps } from "./common/BaseButtonLink";
|
|
3
|
+
export interface FlatButtonLinkProps extends BaseButtonLinkProps {
|
|
5
4
|
}
|
|
6
5
|
export declare const FlatButtonLink: React.ForwardRefExoticComponent<FlatButtonLinkProps & React.RefAttributes<HTMLAnchorElement>>;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
export interface PrimaryButtonLinkProps extends CommonButtonProps, AnchorElementProps {
|
|
2
|
+
import { BaseButtonLinkProps } from "./common/BaseButtonLink";
|
|
3
|
+
export interface PrimaryButtonLinkProps extends BaseButtonLinkProps {
|
|
5
4
|
}
|
|
6
5
|
export declare const PrimaryButtonLink: React.ForwardRefExoticComponent<PrimaryButtonLinkProps & React.RefAttributes<HTMLAnchorElement>>;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import {
|
|
3
|
-
export
|
|
2
|
+
import { BaseButtonLinkProps } from "./common/BaseButtonLink";
|
|
3
|
+
export interface SecondaryButtonLinkProps extends BaseButtonLinkProps {
|
|
4
|
+
}
|
|
5
|
+
export declare const SecondaryButtonLink: React.ForwardRefExoticComponent<SecondaryButtonLinkProps & React.RefAttributes<HTMLAnchorElement>>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { AnchorElementProps } from "@stenajs-webui/core";
|
|
3
|
+
import { CommonButtonProps } from "../../buttons/common/ButtonCommon";
|
|
4
|
+
export interface BaseButtonLinkProps extends CommonButtonProps, AnchorElementProps {
|
|
5
|
+
}
|
|
6
|
+
export declare const BaseButtonLink: React.ForwardRefExoticComponent<BaseButtonLinkProps & React.RefAttributes<HTMLAnchorElement>>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import {
|
|
3
|
-
export interface FlatButtonProps extends
|
|
2
|
+
import { BaseButtonProps } from "./common/BaseButton";
|
|
3
|
+
export interface FlatButtonProps extends BaseButtonProps {
|
|
4
4
|
}
|
|
5
5
|
export declare const FlatButton: React.ForwardRefExoticComponent<FlatButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
import { ButtonElementProps } from "@stenajs-webui/core";
|
|
2
1
|
import * as React from "react";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
export interface PrimaryButtonProps extends CommonButtonProps, ButtonElementProps, WidthProps {
|
|
2
|
+
import { BaseButtonProps } from "./common/BaseButton";
|
|
3
|
+
export interface PrimaryButtonProps extends BaseButtonProps {
|
|
6
4
|
}
|
|
7
5
|
export declare const PrimaryButton: React.ForwardRefExoticComponent<PrimaryButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import {
|
|
3
|
-
export
|
|
2
|
+
import { BaseButtonProps } from "./common/BaseButton";
|
|
3
|
+
export interface SecondaryButtonProps extends BaseButtonProps {
|
|
4
|
+
}
|
|
5
|
+
export declare const SecondaryButton: React.ForwardRefExoticComponent<SecondaryButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ButtonElementProps } from "@stenajs-webui/core";
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
import { CommonButtonProps } from "./ButtonCommon";
|
|
4
|
+
export interface BaseButtonProps extends CommonButtonProps, ButtonElementProps {
|
|
5
|
+
}
|
|
6
|
+
export declare const BaseButton: React.ForwardRefExoticComponent<BaseButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
@@ -11,6 +11,7 @@ export declare const stenaArrowCircleDown: IconDefinition;
|
|
|
11
11
|
export declare const stenaArrowCircleLeft: IconDefinition;
|
|
12
12
|
export declare const stenaArrowCircleRight: IconDefinition;
|
|
13
13
|
export declare const stenaArrowCircleUp: IconDefinition;
|
|
14
|
+
export declare const stenaArrowDoubleVertical: IconDefinition;
|
|
14
15
|
export declare const stenaArrowDouble: IconDefinition;
|
|
15
16
|
export declare const stenaArrowDown: IconDefinition;
|
|
16
17
|
export declare const stenaArrowLeft: IconDefinition;
|
|
@@ -84,6 +84,7 @@ export declare const stenaLineStraight: IconDefinition;
|
|
|
84
84
|
export declare const stenaLink: IconDefinition;
|
|
85
85
|
export declare const stenaLockClosed: IconDefinition;
|
|
86
86
|
export declare const stenaLockOpen: IconDefinition;
|
|
87
|
+
export declare const stenaLogoPlus: IconDefinition;
|
|
87
88
|
export declare const stenaLogout: IconDefinition;
|
|
88
89
|
export declare const stenaMail: IconDefinition;
|
|
89
90
|
export declare const stenaMapNavigation: IconDefinition;
|
|
@@ -94,6 +95,7 @@ export declare const stenaMouse: IconDefinition;
|
|
|
94
95
|
export declare const stenaMoveIn: IconDefinition;
|
|
95
96
|
export declare const stenaMoveOut: IconDefinition;
|
|
96
97
|
export declare const stenaMove: IconDefinition;
|
|
98
|
+
export declare const stenaMovieTheatre: IconDefinition;
|
|
97
99
|
export declare const stenaOverview: IconDefinition;
|
|
98
100
|
export declare const stenaPen: IconDefinition;
|
|
99
101
|
export declare const stenaPercentage: IconDefinition;
|
|
@@ -133,6 +135,8 @@ export declare const stenaSailingShip: IconDefinition;
|
|
|
133
135
|
export declare const stenaSailingShoulder: IconDefinition;
|
|
134
136
|
export declare const stenaSailingTicketFilled: IconDefinition;
|
|
135
137
|
export declare const stenaSailingTicket: IconDefinition;
|
|
138
|
+
export declare const stenaSailingTrailerDo: IconDefinition;
|
|
139
|
+
export declare const stenaSailingTrailerPu: IconDefinition;
|
|
136
140
|
export declare const stenaSailingTrailer: IconDefinition;
|
|
137
141
|
export declare const stenaSailingTrain: IconDefinition;
|
|
138
142
|
export declare const stenaSailingTruckAlt: IconDefinition;
|
|
@@ -174,6 +178,7 @@ export declare const stenaSupport: IconDefinition;
|
|
|
174
178
|
export declare const stenaSwitch: IconDefinition;
|
|
175
179
|
export declare const stenaTag: IconDefinition;
|
|
176
180
|
export declare const stenaTags: IconDefinition;
|
|
181
|
+
export declare const stenaTemperature: IconDefinition;
|
|
177
182
|
export declare const stenaTimesCircle: IconDefinition;
|
|
178
183
|
export declare const stenaTimesSmall: IconDefinition;
|
|
179
184
|
export declare const stenaTimesThick: IconDefinition;
|
|
@@ -189,4 +194,6 @@ export declare const stenaUnlink: IconDefinition;
|
|
|
189
194
|
export declare const stenaUpload: IconDefinition;
|
|
190
195
|
export declare const stenaWarehouse: IconDefinition;
|
|
191
196
|
export declare const stenaWeather: IconDefinition;
|
|
197
|
+
export declare const stenaWeight: IconDefinition;
|
|
198
|
+
export declare const stenaWifiOff: IconDefinition;
|
|
192
199
|
export declare const stenaWifi: IconDefinition;
|
|
@@ -3,8 +3,10 @@ export declare const stenaBicycle: IconDefinition;
|
|
|
3
3
|
export declare const stenaVehicleCarLarge: IconDefinition;
|
|
4
4
|
export declare const stenaVehicleCarMpv: IconDefinition;
|
|
5
5
|
export declare const stenaVehicleCarStandard: IconDefinition;
|
|
6
|
+
export declare const stenaVehicleCaravan: IconDefinition;
|
|
6
7
|
export declare const stenaVehicleMotorcycle: IconDefinition;
|
|
7
8
|
export declare const stenaVehicleMotorhomeExtraLarge: IconDefinition;
|
|
8
9
|
export declare const stenaVehicleMotorhomeLarge: IconDefinition;
|
|
9
10
|
export declare const stenaVehicleMotorhomeMedium: IconDefinition;
|
|
10
11
|
export declare const stenaVehicleMotorhomeStandard: IconDefinition;
|
|
12
|
+
export declare const stenaVehicleTrailer: IconDefinition;
|