@kanda-libs/ks-component-ts 0.3.42 → 0.3.43

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kanda-libs/ks-component-ts",
3
- "version": "0.3.42",
3
+ "version": "0.3.43",
4
4
  "description": "Kanda form component library",
5
5
  "main": "dist/index.esm.js",
6
6
  "module": "dist/index.esm.js",
@@ -22,35 +22,44 @@ export const WorkType = t.union([
22
22
  t.literal("ev_charger"),
23
23
  t.literal("fencing"),
24
24
  t.literal("fireplaces"),
25
+ t.literal("fitted_furniture"),
25
26
  t.literal("flooring_excluding_carpets"),
26
27
  t.literal("garage_doors"),
27
28
  t.literal("garden_buildings"),
28
29
  t.literal("gates"),
29
30
  t.literal("glass_splash_backs"),
30
31
  t.literal("granite_worktops"),
32
+ t.literal("home_lifts"),
31
33
  t.literal("home_study"),
32
34
  t.literal("hot_tubs_and_spas"),
35
+ t.literal("insulation_roof_foil_wrap_only"),
33
36
  t.literal("kitchens_fitted"),
34
37
  t.literal("kitchens_supply_only"),
35
38
  t.literal("landscaping"),
36
39
  t.literal("loft_boarding"),
37
40
  t.literal("loft_conversion"),
41
+ t.literal("media_walls"),
38
42
  t.literal("painting_and_decorating"),
39
43
  t.literal("patios"),
40
44
  t.literal("plastering"),
45
+ t.literal("rendering"),
41
46
  t.literal("resin_driveways"),
47
+ t.literal("roofing"),
42
48
  t.literal("roofing_excl_flat_roofs"),
43
49
  t.literal("roofline"),
44
- t.literal("rendering"),
45
50
  t.literal("security_lighting"),
51
+ t.literal("stair_lifts"),
46
52
  t.literal("staircases"),
47
53
  t.literal("tiling"),
54
+ t.literal("under_stair_storage"),
48
55
  t.literal("underfloor_heating"),
56
+ t.literal("upvc_doors"),
49
57
  t.literal("verandas"),
50
58
  t.literal("wall_insulation_and_cladding"),
51
59
  t.literal("water_softeners"),
52
60
  t.literal("windows"),
53
61
  t.literal("windows_and_doors"),
62
+ t.literal("wardrobes"),
54
63
  t.literal("other"),
55
64
  ]);
56
65
 
@@ -76,33 +85,42 @@ export type WorkType =
76
85
  | "ev_charger"
77
86
  | "fencing"
78
87
  | "fireplaces"
88
+ | "fitted_furniture"
79
89
  | "flooring_excluding_carpets"
80
90
  | "garage_doors"
81
91
  | "garden_buildings"
82
92
  | "gates"
83
93
  | "glass_splash_backs"
84
94
  | "granite_worktops"
95
+ | "home_lifts"
85
96
  | "home_study"
86
97
  | "hot_tubs_and_spas"
98
+ | "insulation_roof_foil_wrap_only"
87
99
  | "kitchens_fitted"
88
100
  | "kitchens_supply_only"
89
101
  | "landscaping"
90
102
  | "loft_boarding"
91
103
  | "loft_conversion"
104
+ | "media_walls"
92
105
  | "painting_and_decorating"
93
106
  | "patios"
94
107
  | "plastering"
108
+ | "rendering"
95
109
  | "resin_driveways"
110
+ | "roofing"
96
111
  | "roofing_excl_flat_roofs"
97
112
  | "roofline"
98
- | "rendering"
99
113
  | "security_lighting"
114
+ | "stair_lifts"
100
115
  | "staircases"
101
116
  | "tiling"
117
+ | "under_stair_storage"
102
118
  | "underfloor_heating"
119
+ | "upvc_doors"
103
120
  | "verandas"
104
121
  | "wall_insulation_and_cladding"
105
122
  | "water_softeners"
106
123
  | "windows"
107
124
  | "windows_and_doors"
125
+ | "wardrobes"
108
126
  | "other";