tide-design-system 2.0.45 → 2.0.47
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/tide-design-system.cjs +2 -2
- package/dist/tide-design-system.esm.d.ts +5 -5
- package/dist/tide-design-system.esm.js +136 -121
- package/index.ts +8 -1
- package/package.json +5 -4
|
@@ -647,9 +647,9 @@ export declare const BREAKPOINT: {
|
|
|
647
647
|
|
|
648
648
|
export declare type Breakpoint = (typeof BREAKPOINT)[keyof typeof BREAKPOINT];
|
|
649
649
|
|
|
650
|
-
declare type CardIconPosition = (typeof POSITION_CARD_ICON)[keyof typeof POSITION_CARD_ICON];
|
|
650
|
+
export declare type CardIconPosition = (typeof POSITION_CARD_ICON)[keyof typeof POSITION_CARD_ICON];
|
|
651
651
|
|
|
652
|
-
declare type CardType = (typeof TYPE_CARD)[keyof typeof TYPE_CARD];
|
|
652
|
+
export declare type CardType = (typeof TYPE_CARD)[keyof typeof TYPE_CARD];
|
|
653
653
|
|
|
654
654
|
export declare interface CheckboxField extends GenericInput, BooleanValue {
|
|
655
655
|
indeterminate?: boolean;
|
|
@@ -1298,7 +1298,7 @@ export declare const ICON: {
|
|
|
1298
1298
|
|
|
1299
1299
|
export declare type Icon = GlobalIcon | RealmIcon;
|
|
1300
1300
|
|
|
1301
|
-
declare const ICON_REALM: {
|
|
1301
|
+
export declare const ICON_REALM: {
|
|
1302
1302
|
readonly RV: {
|
|
1303
1303
|
readonly CLASS_A: "rv-class-a";
|
|
1304
1304
|
readonly CLASS_B: "rv-class-b";
|
|
@@ -1360,7 +1360,7 @@ export declare const ORIENTATION: {
|
|
|
1360
1360
|
|
|
1361
1361
|
export declare type Orientation = (typeof ORIENTATION)[keyof typeof ORIENTATION];
|
|
1362
1362
|
|
|
1363
|
-
declare const POSITION_CARD_ICON: {
|
|
1363
|
+
export declare const POSITION_CARD_ICON: {
|
|
1364
1364
|
readonly LEFT: "left";
|
|
1365
1365
|
readonly TOP: "top";
|
|
1366
1366
|
};
|
|
@@ -2307,7 +2307,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
2307
2307
|
disabled: boolean;
|
|
2308
2308
|
}, {}>;
|
|
2309
2309
|
|
|
2310
|
-
declare const TYPE_CARD: {
|
|
2310
|
+
export declare const TYPE_CARD: {
|
|
2311
2311
|
readonly ACTIONABLE: "action";
|
|
2312
2312
|
readonly INFORMATIONAL: "informational";
|
|
2313
2313
|
readonly SELECTABLE: "select";
|