@hybridcore/ui 1.5.87 → 1.5.88

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.
Files changed (36) hide show
  1. package/README.md +52 -2
  2. package/dist/{FormControlLabel-DzNokgFD.js → FormControlLabel-BrdX4R71.js} +1 -1
  3. package/dist/{Input-B7ry6o4t.js → Input-CoIrGZAh.js} +1 -1
  4. package/dist/{InputLabel-rrSJo8M_.js → InputLabel-CBuAYyuT.js} +163 -162
  5. package/dist/{OutlinedInput-BDK6qOwW.js → OutlinedInput-B-iZoc9l.js} +1 -1
  6. package/dist/{Select-jjAc5JX1.js → Select-t3ewnSdf.js} +3 -3
  7. package/dist/{TextField-Bf46COnQ.js → TextField-BQ8a50fA.js} +4 -4
  8. package/dist/components/data-security-selectors/dissemination-list/index.js +652 -742
  9. package/dist/components/data-security-selectors/dissemination-list/logic.js +62 -0
  10. package/dist/components/data-security-selectors/dissemination-list/styled.js +88 -0
  11. package/dist/components/date-time-picker/index.js +57 -94
  12. package/dist/components/date-time-picker/logic.js +70 -0
  13. package/dist/components/date-time-picker/styled.js +83 -0
  14. package/dist/components/geometry-picker/index.js +45 -43
  15. package/dist/components/instance-form/components/composite-list/index.js +1 -1
  16. package/dist/components/instance-form/components/variable/index.js +5 -5
  17. package/dist/components/instance-form/components/variables/index.js +1 -1
  18. package/dist/components/property-mapping/index.js +1 -1
  19. package/dist/components/range-selector/components/composite-list-range/index.js +1 -1
  20. package/dist/components/range-selector/components/date-range/index.js +1 -1
  21. package/dist/components/range-selector/components/number-range/index.js +38 -35
  22. package/dist/components/range-selector/components/string-range/index.js +15 -14
  23. package/dist/components/range-selector/index.js +1 -1
  24. package/dist/components/search-input/index.js +2 -2
  25. package/dist/components/template-form/components/property-list/index.js +1 -1
  26. package/dist/components/template-form/components/property-list/property-list-form.js +5 -5
  27. package/dist/components/template-form/components/recognition-property-list/recognition-property-list-form.js +3 -3
  28. package/dist/components/template-form/index.js +3 -3
  29. package/dist/components/template-property-filters/property.js +4 -4
  30. package/dist/components/tree-select/index.js +52 -50
  31. package/dist/{index-MMaYBAn0.js → index-CGNxsLVm.js} +6 -6
  32. package/dist/{index-NNOChRJ7.js → index-SpeaLUQD.js} +2 -2
  33. package/dist/main.d.ts +279 -84
  34. package/dist/main.js +1 -1
  35. package/dist/{property-list-form-BvnaooEW.js → property-list-form-C5hcK2y2.js} +4 -4
  36. package/package.json +2 -1
package/dist/main.d.ts CHANGED
@@ -213,7 +213,27 @@ declare interface DataType extends ItemProps {
213
213
  defaultSelected?: string[];
214
214
  }
215
215
 
216
- export declare const DateTimePicker: React.FC<Props_4>;
216
+ export declare const DateTimePicker: (props: DateTimePickerProps & React_2.RefAttributes<HTMLDivElement>) => React_2.ReactNode | null;
217
+
218
+ export declare type DateTimePickerLabelPosition = "default" | "top";
219
+
220
+ export declare interface DateTimePickerProps {
221
+ value?: string;
222
+ onChange(value: string): void;
223
+ label?: string;
224
+ name?: string;
225
+ minDate?: Dayjs;
226
+ variant?: DateTimePickerVariant;
227
+ labelPosition?: DateTimePickerLabelPosition;
228
+ size?: DateTimePickerSize;
229
+ minuteStep?: number;
230
+ pattern?: string;
231
+ sx?: SxProps<Theme>;
232
+ }
233
+
234
+ export declare type DateTimePickerSize = "small" | "medium";
235
+
236
+ export declare type DateTimePickerVariant = "standard" | "outlined" | "filled";
217
237
 
218
238
  declare function decrypt(encryptionKey: any, base64data: string): Promise<{
219
239
  status: string;
@@ -227,32 +247,22 @@ declare function decrypt(encryptionKey: any, base64data: string): Promise<{
227
247
 
228
248
  declare const _default: default_2.MemoExoticComponent<(props: MAP.Props & default_2.RefAttributes<MAP.Handle>) => default_2.ReactNode | null>;
229
249
 
230
- export declare const DisseminationList: React.FC<DisseminationListProps>;
250
+ export declare const DisseminationList: (props: DisseminationListProps & React_2.RefAttributes<HTMLDivElement>) => React_2.ReactNode | null;
231
251
 
232
- declare interface DisseminationListProps {
233
- /**
234
- *
235
- */
252
+ export declare type DisseminationListLabelPosition = "default" | "left" | "top";
253
+
254
+ export declare interface DisseminationListProps {
236
255
  selectedIds: string[];
237
- /**
238
- *
239
- */
240
256
  memberedGroups: AUTH.MemberedGroupsType[];
241
- /**
242
- *
243
- */
244
257
  showError?: boolean;
245
- /**
246
- *
247
- */
248
- variant?: "standard" | "outlined" | "filled";
249
- labelPosition?: "default" | "left" | "top";
250
- /**
251
- *
252
- */
258
+ variant?: DisseminationListVariant;
259
+ labelPosition?: DisseminationListLabelPosition;
253
260
  onChange(value: string[]): void;
261
+ sx?: SxProps<Theme>;
254
262
  }
255
263
 
264
+ export declare type DisseminationListVariant = "standard" | "outlined" | "filled";
265
+
256
266
  export declare const DocumentViewer: FC<DocumentViewerProps>;
257
267
 
258
268
  declare interface DocumentViewerProps {
@@ -303,7 +313,7 @@ ref?: ((instance: HTMLDivElement | null) => void | DO_NOT_USE_OR_YOU_WILL_BE_FIR
303
313
 
304
314
  declare function generateKey(): Promise<CryptoKey>;
305
315
 
306
- export declare const GeometryPicker: React.FC<Props_5>;
316
+ export declare const GeometryPicker: React.FC<Props_4>;
307
317
 
308
318
  declare const hasAccess: (path: string, access: AccessType, permissions: AUTH.PermissionType) => boolean;
309
319
 
@@ -331,7 +341,7 @@ export declare interface HighlightLineChartProps {
331
341
  sx?: SxProps<Theme>;
332
342
  }
333
343
 
334
- export declare const IconButton: default_2.FC<Props_6>;
344
+ export declare const IconButton: default_2.FC<Props_5>;
335
345
 
336
346
  declare function importKey(jwk: any): Promise<CryptoKey>;
337
347
 
@@ -578,7 +588,7 @@ export declare namespace KeyProductionUtils {
578
588
  }
579
589
  }
580
590
 
581
- export declare const KeyProtectionMenu: React.FC<Props_7>;
591
+ export declare const KeyProtectionMenu: React.FC<Props_6>;
582
592
 
583
593
  export declare const LinearIndicator: FC<LinearIndicatorProps>;
584
594
 
@@ -605,7 +615,7 @@ export declare interface LineSeriesData {
605
615
  color?: string;
606
616
  }
607
617
 
608
- export declare const Loading: React.FC<Props_8>;
618
+ export declare const Loading: React.FC<Props_7>;
609
619
 
610
620
  export { LocalizationProvider }
611
621
 
@@ -774,7 +784,7 @@ export declare interface PaginatedListProps {
774
784
  sx?: SxProps<Theme>;
775
785
  }
776
786
 
777
- export declare const PhoneInput: React.FC<Props_9>;
787
+ export declare const PhoneInput: React.FC<Props_8>;
778
788
 
779
789
  export declare const PropertyFilterInput: FC<PropertyProps>;
780
790
 
@@ -814,16 +824,6 @@ declare interface Props<T extends string> {
814
824
  }
815
825
 
816
826
  declare interface Props_10 {
817
- values: FV.TemplateFilter[];
818
- templates: Map<string | number, ONTOLOGY.TemplateType>;
819
- inputVariant?: "standard" | "outlined" | "filled";
820
- fieldOptions?: {
821
- [key: string]: FieldOptions;
822
- };
823
- onChange(values: FV.TemplateFilter[], value?: FV.TemplateFilter): void;
824
- }
825
-
826
- declare interface Props_11 {
827
827
  data: DataType[];
828
828
  idKey?: string;
829
829
  selected?: string[];
@@ -858,43 +858,6 @@ declare interface Props_3 {
858
858
  }
859
859
 
860
860
  declare interface Props_4 {
861
- /**
862
- *
863
- */
864
- value?: string;
865
- /**
866
- *
867
- */
868
- onChange(value: string);
869
- /**
870
- *
871
- */
872
- label?: string;
873
-
874
- name?: string;
875
- /**
876
- *
877
- */
878
- minDate?: Dayjs;
879
- /**
880
- *
881
- */
882
- variant?: "standard" | "outlined" | "filled";
883
- /**
884
- *
885
- */
886
- size?: "small" | "medium";
887
- /**
888
- *
889
- */
890
- minuteStep?: number;
891
- /**
892
- *
893
- */
894
- pattern?: string;
895
- }
896
-
897
- declare interface Props_5 {
898
861
  /**
899
862
  *
900
863
  */
@@ -916,13 +879,14 @@ declare interface Props_5 {
916
879
  */
917
880
  defaultExtent?: Extent;
918
881
  variant?: "standard" | "outlined" | "filled";
882
+ labelPosition?: "default" | "top";
919
883
  /**
920
884
  *
921
885
  */
922
886
  onChange?(value: string): void;
923
887
  }
924
888
 
925
- declare interface Props_6 extends IconButtonProps {
889
+ declare interface Props_5 extends IconButtonProps {
926
890
  /**
927
891
  *
928
892
  */
@@ -941,21 +905,31 @@ declare interface Props_6 extends IconButtonProps {
941
905
  children: React.ReactNode;
942
906
  }
943
907
 
944
- declare interface Props_7 {
908
+ declare interface Props_6 {
945
909
  encryptionKey: CryptoKey | null;
946
910
  }
947
911
 
948
- declare interface Props_8 extends StyleProps {
912
+ declare interface Props_7 extends StyleProps {
949
913
  show: boolean;
950
914
  }
951
915
 
952
- declare interface Props_9 {
916
+ declare interface Props_8 {
953
917
  label?: string;
954
918
  value: string;
955
919
  placeholder?: string;
956
920
  onChange(value: string): void;
957
921
  }
958
922
 
923
+ declare interface Props_9 {
924
+ values: FV.TemplateFilter[];
925
+ templates: Map<string | number, ONTOLOGY.TemplateType>;
926
+ inputVariant?: "standard" | "outlined" | "filled";
927
+ fieldOptions?: {
928
+ [key: string]: FieldOptions;
929
+ };
930
+ onChange(values: FV.TemplateFilter[], value?: FV.TemplateFilter): void;
931
+ }
932
+
959
933
  declare function register(): Promise<Credential | null>;
960
934
 
961
935
  export declare const SearchInput: (props: SearchInputProps & default_2.RefAttributes<SearchInputHandle>) => default_2.ReactNode | null;
@@ -1164,7 +1138,7 @@ K extends
1164
1138
  onCatalogueInstanceSearchSubmit?(value?: string): void;
1165
1139
  }
1166
1140
 
1167
- export declare const TemplatePropertyFilters: FC<Props_10>;
1141
+ export declare const TemplatePropertyFilters: FC<Props_9>;
1168
1142
 
1169
1143
  export { ThemeOptions }
1170
1144
 
@@ -1173,22 +1147,17 @@ export { ThemeProvider }
1173
1147
  export declare const TreeSelect: FC<TreeSelectProps>;
1174
1148
 
1175
1149
  declare interface TreeSelectProps {
1176
- /**
1177
- *
1178
- */
1179
1150
  data: any;
1180
- /**
1181
- *
1182
- */
1183
1151
  selected: "" | string[] | undefined;
1184
1152
  variant?: "standard" | "outlined" | "filled";
1153
+ labelPosition?: "default" | "top";
1185
1154
  disabled?: string[];
1186
1155
  label?: string;
1187
1156
  idKey?: string;
1188
1157
  onChange(id: string, checked: boolean): void;
1189
1158
  }
1190
1159
 
1191
- export declare const TreeViewFilter: FC<Props_11>;
1160
+ export declare const TreeViewFilter: FC<Props_10>;
1192
1161
 
1193
1162
  export declare const Uploader: FC<UploaderProps>;
1194
1163
 
@@ -1208,6 +1177,28 @@ export { }
1208
1177
 
1209
1178
 
1210
1179
 
1180
+ // Module augmentation must target BOTH module paths.
1181
+ // See docs/COMPONENT_GUIDE.md § "Theme augmentation targets" for rationale.
1182
+ declare module "@mui/material" {
1183
+ interface ComponentNameToClassKey {
1184
+ MuiCandlestickChart: "root";
1185
+ }
1186
+
1187
+ interface ComponentsPropsList {
1188
+ MuiCandlestickChart: CandlestickChartProps;
1189
+ }
1190
+
1191
+ interface Components {
1192
+ MuiCandlestickChart?: {
1193
+ defaultProps?: ComponentsPropsList["MuiCandlestickChart"];
1194
+ styleOverrides?: ComponentsOverrides<Theme>["MuiCandlestickChart"];
1195
+ variants?: ComponentsVariants["MuiCandlestickChart"];
1196
+ };
1197
+ }
1198
+ }
1199
+
1200
+
1201
+
1211
1202
  declare module "@mui/material/styles" {
1212
1203
  interface ComponentNameToClassKey {
1213
1204
  MuiCandlestickChart: "root";
@@ -1228,6 +1219,28 @@ declare module "@mui/material/styles" {
1228
1219
 
1229
1220
 
1230
1221
 
1222
+ // Module augmentation must target BOTH module paths.
1223
+ // See docs/COMPONENT_GUIDE.md § "Theme augmentation targets" for rationale.
1224
+ declare module "@mui/material" {
1225
+ interface ComponentNameToClassKey {
1226
+ MuiHighlightLineChart: "root";
1227
+ }
1228
+
1229
+ interface ComponentsPropsList {
1230
+ MuiHighlightLineChart: HighlightLineChartProps;
1231
+ }
1232
+
1233
+ interface Components {
1234
+ MuiHighlightLineChart?: {
1235
+ defaultProps?: ComponentsPropsList["MuiHighlightLineChart"];
1236
+ styleOverrides?: ComponentsOverrides<Theme>["MuiHighlightLineChart"];
1237
+ variants?: ComponentsVariants["MuiHighlightLineChart"];
1238
+ };
1239
+ }
1240
+ }
1241
+
1242
+
1243
+
1231
1244
  declare module "@mui/material/styles" {
1232
1245
  interface ComponentNameToClassKey {
1233
1246
  MuiHighlightLineChart: "root";
@@ -1248,6 +1261,112 @@ declare module "@mui/material/styles" {
1248
1261
 
1249
1262
 
1250
1263
 
1264
+ // Module augmentation must target BOTH module paths.
1265
+ // See docs/COMPONENT_GUIDE.md § "Theme augmentation targets" for rationale.
1266
+ declare module "@mui/material" {
1267
+ interface ComponentNameToClassKey {
1268
+ HCDisseminationList:
1269
+ | "root"
1270
+ | "label"
1271
+ | "sideLabel"
1272
+ | "selectWrapper"
1273
+ | "helperText";
1274
+ }
1275
+
1276
+ interface ComponentsPropsList {
1277
+ HCDisseminationList: Partial<DisseminationListProps>;
1278
+ }
1279
+
1280
+ interface Components {
1281
+ HCDisseminationList?: {
1282
+ defaultProps?: ComponentsPropsList["HCDisseminationList"];
1283
+ styleOverrides?: ComponentsOverrides<Theme>["HCDisseminationList"];
1284
+ variants?: ComponentsVariants["HCDisseminationList"];
1285
+ };
1286
+ }
1287
+ }
1288
+
1289
+
1290
+
1291
+ declare module "@mui/material/styles" {
1292
+ interface ComponentNameToClassKey {
1293
+ HCDisseminationList:
1294
+ | "root"
1295
+ | "label"
1296
+ | "sideLabel"
1297
+ | "selectWrapper"
1298
+ | "helperText";
1299
+ }
1300
+
1301
+ interface ComponentsPropsList {
1302
+ HCDisseminationList: Partial<DisseminationListProps>;
1303
+ }
1304
+
1305
+ interface Components {
1306
+ HCDisseminationList?: {
1307
+ defaultProps?: ComponentsPropsList["HCDisseminationList"];
1308
+ styleOverrides?: ComponentsOverrides<Theme>["HCDisseminationList"];
1309
+ variants?: ComponentsVariants["HCDisseminationList"];
1310
+ };
1311
+ }
1312
+ }
1313
+
1314
+
1315
+
1316
+ // Module augmentation must target BOTH module paths.
1317
+ // See docs/COMPONENT_GUIDE.md § "Theme augmentation targets" for rationale.
1318
+ declare module "@mui/material" {
1319
+ interface ComponentNameToClassKey {
1320
+ HCDateTimePicker:
1321
+ | "root"
1322
+ | "label"
1323
+ | "container"
1324
+ | "timeInputContainer"
1325
+ | "timeInput"
1326
+ | "timeButton";
1327
+ }
1328
+
1329
+ interface ComponentsPropsList {
1330
+ HCDateTimePicker: Partial<DateTimePickerProps>;
1331
+ }
1332
+
1333
+ interface Components {
1334
+ HCDateTimePicker?: {
1335
+ defaultProps?: ComponentsPropsList["HCDateTimePicker"];
1336
+ styleOverrides?: ComponentsOverrides<Theme>["HCDateTimePicker"];
1337
+ variants?: ComponentsVariants["HCDateTimePicker"];
1338
+ };
1339
+ }
1340
+ }
1341
+
1342
+
1343
+
1344
+ declare module "@mui/material/styles" {
1345
+ interface ComponentNameToClassKey {
1346
+ HCDateTimePicker:
1347
+ | "root"
1348
+ | "label"
1349
+ | "container"
1350
+ | "timeInputContainer"
1351
+ | "timeInput"
1352
+ | "timeButton";
1353
+ }
1354
+
1355
+ interface ComponentsPropsList {
1356
+ HCDateTimePicker: Partial<DateTimePickerProps>;
1357
+ }
1358
+
1359
+ interface Components {
1360
+ HCDateTimePicker?: {
1361
+ defaultProps?: ComponentsPropsList["HCDateTimePicker"];
1362
+ styleOverrides?: ComponentsOverrides<Theme>["HCDateTimePicker"];
1363
+ variants?: ComponentsVariants["HCDateTimePicker"];
1364
+ };
1365
+ }
1366
+ }
1367
+
1368
+
1369
+
1251
1370
  declare namespace MAP {
1252
1371
  interface Coordinate {
1253
1372
  latitude: number;
@@ -1332,6 +1451,38 @@ declare namespace MAP {
1332
1451
 
1333
1452
 
1334
1453
 
1454
+ // Module augmentation must target BOTH module paths.
1455
+ // See docs/COMPONENT_GUIDE.md § "Theme augmentation targets" for rationale.
1456
+ declare module "@mui/material" {
1457
+ interface ComponentNameToClassKey {
1458
+ MuiMetricCard:
1459
+ | "root"
1460
+ | "content"
1461
+ | "label"
1462
+ | "value"
1463
+ | "trendContainer"
1464
+ | "trendValue"
1465
+ | "description"
1466
+ | "icon"
1467
+ | "cornerIcon"
1468
+ | "chart";
1469
+ }
1470
+
1471
+ interface ComponentsPropsList {
1472
+ MuiMetricCard: MetricCardProps;
1473
+ }
1474
+
1475
+ interface Components {
1476
+ MuiMetricCard?: {
1477
+ defaultProps?: ComponentsPropsList["MuiMetricCard"];
1478
+ styleOverrides?: ComponentsOverrides<Theme>["MuiMetricCard"];
1479
+ variants?: ComponentsVariants["MuiMetricCard"];
1480
+ };
1481
+ }
1482
+ }
1483
+
1484
+
1485
+
1335
1486
  declare module "@mui/material/styles" {
1336
1487
  interface ComponentNameToClassKey {
1337
1488
  MuiMetricCard:
@@ -1362,6 +1513,28 @@ declare module "@mui/material/styles" {
1362
1513
 
1363
1514
 
1364
1515
 
1516
+ // Module augmentation must target BOTH module paths.
1517
+ // See docs/COMPONENT_GUIDE.md § "Theme augmentation targets" for rationale.
1518
+ declare module "@mui/material" {
1519
+ interface ComponentNameToClassKey {
1520
+ MuiPaginatedList: "root" | "content" | "header" | "list" | "pagination";
1521
+ }
1522
+
1523
+ interface ComponentsPropsList {
1524
+ MuiPaginatedList: PaginatedListProps;
1525
+ }
1526
+
1527
+ interface Components {
1528
+ MuiPaginatedList?: {
1529
+ defaultProps?: ComponentsPropsList["MuiPaginatedList"];
1530
+ styleOverrides?: ComponentsOverrides<Theme>["MuiPaginatedList"];
1531
+ variants?: ComponentsVariants["MuiPaginatedList"];
1532
+ };
1533
+ }
1534
+ }
1535
+
1536
+
1537
+
1365
1538
  declare module "@mui/material/styles" {
1366
1539
  interface ComponentNameToClassKey {
1367
1540
  MuiPaginatedList: "root" | "content" | "header" | "list" | "pagination";
@@ -1382,6 +1555,28 @@ declare module "@mui/material/styles" {
1382
1555
 
1383
1556
 
1384
1557
 
1558
+ // Module augmentation must target BOTH module paths.
1559
+ // See docs/COMPONENT_GUIDE.md § "Theme augmentation targets" for rationale.
1560
+ declare module "@mui/material" {
1561
+ interface ComponentNameToClassKey {
1562
+ MuiProfileCard: "root" | "image" | "hierarchy" | "variables";
1563
+ }
1564
+
1565
+ interface ComponentsPropsList {
1566
+ MuiProfileCard: ProfileCardProps;
1567
+ }
1568
+
1569
+ interface Components {
1570
+ MuiProfileCard?: {
1571
+ defaultProps?: ComponentsPropsList["MuiProfileCard"];
1572
+ styleOverrides?: ComponentsOverrides<Theme>["MuiProfileCard"];
1573
+ variants?: ComponentsVariants["MuiProfileCard"];
1574
+ };
1575
+ }
1576
+ }
1577
+
1578
+
1579
+
1385
1580
  declare module "@mui/material/styles" {
1386
1581
  interface ComponentNameToClassKey {
1387
1582
  MuiProfileCard: "root" | "image" | "hierarchy" | "variables";
package/dist/main.js CHANGED
@@ -43,7 +43,7 @@ import { FlexRow as ir } from "./components/flex-row/index.js";
43
43
  import { a as dt } from "./objectWithoutPropertiesLoose-DJteAcBH.js";
44
44
  import B from "dayjs";
45
45
  import { c as U, a as z } from "./index-DMSHuq6l.js";
46
- import { b as ut } from "./index-NNOChRJ7.js";
46
+ import { b as ut } from "./index-SpeaLUQD.js";
47
47
  var tt = { exports: {} };
48
48
  (function(l, x) {
49
49
  (function(f, c) {
@@ -4,9 +4,9 @@ import I from "react";
4
4
  import Q from "lodash";
5
5
  import { r as X, i as Z } from "./createSvgIcon-DLPYMuH1.js";
6
6
  import { DATA_TYPES as R, COORDINATE_FORMAT as ee, PRIVACY_PRESERVATION_METHOD as L } from "./constants/index.js";
7
- import { T as w } from "./TextField-Bf46COnQ.js";
8
- import { f as te, F as C, I as F } from "./InputLabel-rrSJo8M_.js";
9
- import { S as _ } from "./Select-jjAc5JX1.js";
7
+ import { T as w } from "./TextField-BQ8a50fA.js";
8
+ import { f as te, F as C, I as F } from "./InputLabel-CBuAYyuT.js";
9
+ import { S as _ } from "./Select-t3ewnSdf.js";
10
10
  import { M as g } from "./MenuItem-C6qlUyV3.js";
11
11
  import { a as M, _ as re } from "./objectWithoutPropertiesLoose-DJteAcBH.js";
12
12
  import { P as n } from "./index-DMSHuq6l.js";
@@ -14,7 +14,7 @@ import { g as ae, u as oe, c as le, a as ne } from "./useThemeProps-DRP1dikX.js"
14
14
  import { s as ie } from "./styled-B8ugzvji.js";
15
15
  import { g as se } from "./createTheme-CNnKNxwL.js";
16
16
  import { u as me } from "./useFormControl-CatNKXAi.js";
17
- import { F as p } from "./FormControlLabel-DzNokgFD.js";
17
+ import { F as p } from "./FormControlLabel-BrdX4R71.js";
18
18
  import { C as f } from "./Checkbox-CrU2hpWB.js";
19
19
  import { B as ce } from "./Box-B1AVyJ_s.js";
20
20
  import { B as Y } from "./Button-eqWvpDuh.js";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@hybridcore/ui",
3
3
  "description": "Hybrid Core UI Library",
4
- "version": "1.5.87",
4
+ "version": "1.5.88",
5
5
  "author": "Hybrid Core",
6
6
  "license": "ISC",
7
7
  "type": "module",
@@ -16,6 +16,7 @@
16
16
  "scripts": {
17
17
  "dev": "vite",
18
18
  "build": "tsc -b ./tsconfig.lib.json && vite build",
19
+ "build:watch": "vite build --watch",
19
20
  "lint": "eslint .",
20
21
  "preview": "vite preview",
21
22
  "prepublishOnly": "yarn build",