@homefile/components-v2 2.8.6 → 2.8.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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { FolderFileI, MenuItemI, PartnerFooterI, TileCtaI } from '../..';
|
|
2
|
-
type KindTypes = 'checkbox' | 'checkbox-agreement' | 'checkbox-group' | 'currency' | 'date' | 'email' | 'file' | 'grid' | 'group' | 'hidden' | 'notes' | 'number' | 'radio' | 'rating' | 'select' | 'string' | 'switch' | 'telephone' | 'text' | 'textarea' | 'default' | UIKindTypes | HomeItemTypes;
|
|
3
|
-
type UIKindTypes = 'tile-body' | 'tile-body-logo' | 'tile-body-header' | 'tile-body-section' | 'tile-body-section-grid' | 'tile-form' | 'tile-body-action' | 'vertical-icon' | 'primary-cta' | 'secondary-cta';
|
|
4
|
-
type HomeItemTypes = 'appliances' | 'images' | 'guidelines' | 'item-related' | 'item-icon-btn';
|
|
2
|
+
export type KindTypes = 'checkbox' | 'checkbox-agreement' | 'checkbox-group' | 'currency' | 'date' | 'email' | 'file' | 'grid' | 'group' | 'hidden' | 'notes' | 'number' | 'radio' | 'rating' | 'select' | 'string' | 'switch' | 'telephone' | 'text' | 'textarea' | 'default' | UIKindTypes | HomeItemTypes;
|
|
3
|
+
export type UIKindTypes = 'tile-body' | 'tile-body-logo' | 'tile-body-header' | 'tile-body-section' | 'tile-body-section-grid' | 'tile-form' | 'tile-body-action' | 'vertical-icon' | 'primary-cta' | 'secondary-cta';
|
|
4
|
+
export type HomeItemTypes = 'appliances' | 'images' | 'guidelines' | 'item-related' | 'item-icon-btn';
|
|
5
5
|
export type IconTypes = 'barcode' | 'battery' | 'billing' | 'book' | 'book-opened' | 'calc' | 'calendar' | 'check' | 'co2' | 'contact' | 'date' | 'default' | 'detector' | 'electricity' | 'goldbars' | 'heart' | 'image' | 'notes' | 'palette' | 'people' | 'price' | 'rating' | 'receipt' | 'registry' | 'sprinkler' | 'tools' | 'wind' | '68' | 'calendar2' | 'water' | 'calendar-drop' | 'umbrella' | 'heater' | 'roof' | 'foundation' | 'solar-panel' | 'pool' | 'drop' | 'mobile-drop' | 'light' | 'plate' | 'pressure-washer' | 'house' | 'target' | 'title' | 'company' | UIIconTypes;
|
|
6
6
|
export type UIIconTypes = 'sh-pressure' | 'sh-window' | 'sh-roof' | 'sh-lights' | 'sh-gutter' | 'sh-home' | 'sh-house';
|
|
7
7
|
export type ValueTypes = string | string[] | number | boolean;
|
|
@@ -39,4 +39,3 @@ export interface ReadOnlyDynamicFormI extends Pick<DynamicFormI, 'form'> {
|
|
|
39
39
|
onEdit?: (id: string) => void;
|
|
40
40
|
onClick?: (id: string) => void;
|
|
41
41
|
}
|
|
42
|
-
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { FolderFileI, MenuItemI, PartnerFooterI, TileCtaI } from '@/interfaces'
|
|
2
2
|
|
|
3
|
-
type KindTypes =
|
|
3
|
+
export type KindTypes =
|
|
4
4
|
| 'checkbox'
|
|
5
5
|
| 'checkbox-agreement'
|
|
6
6
|
| 'checkbox-group'
|
|
@@ -25,7 +25,7 @@ type KindTypes =
|
|
|
25
25
|
| UIKindTypes
|
|
26
26
|
| HomeItemTypes
|
|
27
27
|
|
|
28
|
-
type UIKindTypes =
|
|
28
|
+
export type UIKindTypes =
|
|
29
29
|
| 'tile-body'
|
|
30
30
|
| 'tile-body-logo'
|
|
31
31
|
| 'tile-body-header'
|
|
@@ -37,7 +37,7 @@ type UIKindTypes =
|
|
|
37
37
|
| 'primary-cta'
|
|
38
38
|
| 'secondary-cta'
|
|
39
39
|
|
|
40
|
-
type HomeItemTypes =
|
|
40
|
+
export type HomeItemTypes =
|
|
41
41
|
| 'appliances'
|
|
42
42
|
| 'images'
|
|
43
43
|
| 'guidelines'
|