@hantera/design-system 20250923.0.0-2025.2.2 → 20250930.0.0-2025.2.1

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 (2) hide show
  1. package/dist/entry.d.ts +52 -22
  2. package/package.json +1 -1
package/dist/entry.d.ts CHANGED
@@ -291,11 +291,11 @@ disabled?: boolean;
291
291
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
292
292
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
293
293
 
294
- declare const __VLS_component_9: DefineComponent<__VLS_PublicProps_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
294
+ declare const __VLS_component_9: DefineComponent<__VLS_PublicProps_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
295
295
  "update:modelValue": (modelValue: any) => any;
296
296
  } & {
297
297
  "update:modelValue": (value: any) => any;
298
- }, string, PublicProps, Readonly<__VLS_PublicProps_4> & Readonly<{
298
+ }, string, PublicProps, Readonly<__VLS_PublicProps_5> & Readonly<{
299
299
  "onUpdate:modelValue"?: ((modelValue: any) => any) | undefined;
300
300
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
301
301
 
@@ -304,29 +304,36 @@ declare type __VLS_PublicProps = {
304
304
  } & typeof __VLS_typeProps;
305
305
 
306
306
  declare type __VLS_PublicProps_2 = {
307
- modelValue: string;
308
- modelModifiers?: Record<string, true>;
307
+ modelValue?: {
308
+ start: Date;
309
+ end: Date;
310
+ } | Date;
309
311
  } & typeof __VLS_typeProps_2;
310
312
 
311
313
  declare type __VLS_PublicProps_3 = {
312
- modelValue: DecimalInputValue | Decimal;
314
+ modelValue: string;
315
+ modelModifiers?: Record<string, true>;
313
316
  } & typeof __VLS_typeProps_3;
314
317
 
315
318
  declare type __VLS_PublicProps_4 = {
316
- modelValue?: any;
319
+ modelValue: DecimalInputValue | Decimal;
317
320
  } & typeof __VLS_typeProps_4;
318
321
 
319
322
  declare type __VLS_PublicProps_5 = {
323
+ modelValue?: any;
324
+ } & typeof __VLS_typeProps_5;
325
+
326
+ declare type __VLS_PublicProps_6 = {
320
327
  modelValue?: {
321
328
  start: Date;
322
329
  end: Date;
323
330
  } | Date;
324
- } & typeof __VLS_typeProps_5;
331
+ } & typeof __VLS_typeProps_6;
325
332
 
326
- declare type __VLS_PublicProps_6 = {
333
+ declare type __VLS_PublicProps_7 = {
327
334
  modelValue?: string;
328
335
  modelModifiers?: Record<string, true>;
329
- } & typeof __VLS_typeProps_6;
336
+ } & typeof __VLS_typeProps_7;
330
337
 
331
338
  declare function __VLS_template(): {
332
339
  slots: {
@@ -823,12 +830,20 @@ declare let __VLS_typeProps: {
823
830
  };
824
831
 
825
832
  declare let __VLS_typeProps_2: {
833
+ minDate?: Date;
834
+ maxDate?: Date;
835
+ startOfWeek?: number;
836
+ mode?: 'single' | 'range';
837
+ weekNumbers?: 'firstFourDays';
838
+ };
839
+
840
+ declare let __VLS_typeProps_3: {
826
841
  name?: string;
827
842
  disabled?: boolean;
828
843
  placeholder?: string;
829
844
  };
830
845
 
831
- declare let __VLS_typeProps_3: {
846
+ declare let __VLS_typeProps_4: {
832
847
  name?: string;
833
848
  selectOnFocus?: boolean;
834
849
  disabled?: boolean;
@@ -837,13 +852,13 @@ declare let __VLS_typeProps_3: {
837
852
  allowPercentage?: boolean;
838
853
  };
839
854
 
840
- declare let __VLS_typeProps_4: {
855
+ declare let __VLS_typeProps_5: {
841
856
  modelValue: any;
842
857
  value: any;
843
858
  disabled?: boolean;
844
859
  };
845
860
 
846
- declare let __VLS_typeProps_5: {
861
+ declare let __VLS_typeProps_6: {
847
862
  minDate?: Date;
848
863
  maxDate?: Date;
849
864
  startOfWeek?: number;
@@ -851,7 +866,7 @@ declare let __VLS_typeProps_5: {
851
866
  weekNumbers?: 'firstFourDays';
852
867
  };
853
868
 
854
- declare let __VLS_typeProps_6: {
869
+ declare let __VLS_typeProps_7: {
855
870
  items: NavItemDefinition[];
856
871
  };
857
872
 
@@ -1214,14 +1229,29 @@ export declare interface DataTableContextMenuProvider {
1214
1229
  forRow(row: DataRow): ContextMenuSections;
1215
1230
  }
1216
1231
 
1217
- export declare const DatePicker: DefineComponent<__VLS_PublicProps_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1232
+ export declare const DateInput: DefineComponent<__VLS_PublicProps_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1233
+ "update:modelValue": (modelValue: Date | {
1234
+ start: Date;
1235
+ end: Date;
1236
+ }) => any;
1237
+ }, string, PublicProps, Readonly<__VLS_PublicProps_2> & Readonly<{
1238
+ "onUpdate:modelValue"?: ((modelValue: Date | {
1239
+ start: Date;
1240
+ end: Date;
1241
+ }) => any) | undefined;
1242
+ }>, {
1243
+ startOfWeek: number;
1244
+ mode: "single" | "range";
1245
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
1246
+
1247
+ export declare const DatePicker: DefineComponent<__VLS_PublicProps_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1218
1248
  "update:modelValue": (modelValue: Date | {
1219
1249
  start: Date;
1220
1250
  end: Date;
1221
1251
  }) => any;
1222
1252
  } & {
1223
1253
  "update:selectionState": (value: "single" | "start" | "end") => any;
1224
- }, string, PublicProps, Readonly<__VLS_PublicProps_5> & Readonly<{
1254
+ }, string, PublicProps, Readonly<__VLS_PublicProps_6> & Readonly<{
1225
1255
  "onUpdate:modelValue"?: ((modelValue: Date | {
1226
1256
  start: Date;
1227
1257
  end: Date;
@@ -1232,7 +1262,7 @@ startOfWeek: number;
1232
1262
  mode: "single" | "range";
1233
1263
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
1234
1264
 
1235
- export declare const DecimalInput: DefineComponent<__VLS_PublicProps_3, {
1265
+ export declare const DecimalInput: DefineComponent<__VLS_PublicProps_4, {
1236
1266
  setError: typeof setError_3;
1237
1267
  focus: typeof focus_4;
1238
1268
  select: typeof select_3;
@@ -1245,7 +1275,7 @@ focus: (value: Event) => any;
1245
1275
  keydown: (value: KeyboardEvent) => any;
1246
1276
  keypress: (value: KeyboardEvent) => any;
1247
1277
  keyenter: (value: KeyboardEvent) => any;
1248
- }, string, PublicProps, Readonly<__VLS_PublicProps_3> & Readonly<{
1278
+ }, string, PublicProps, Readonly<__VLS_PublicProps_4> & Readonly<{
1249
1279
  onBlur?: ((value: Event) => any) | undefined;
1250
1280
  onChange?: (() => any) | undefined;
1251
1281
  onFocus?: ((value: Event) => any) | undefined;
@@ -1315,7 +1345,7 @@ export declare interface DropZoneRef {
1315
1345
  onDrop?: (payload: DragPayload) => void;
1316
1346
  }
1317
1347
 
1318
- export declare const ElasticInput: DefineComponent<__VLS_PublicProps_2, {
1348
+ export declare const ElasticInput: DefineComponent<__VLS_PublicProps_3, {
1319
1349
  setError: typeof setError_2;
1320
1350
  focus: typeof focus_3;
1321
1351
  blur: typeof blur_3;
@@ -1329,7 +1359,7 @@ focus: (value: Event) => any;
1329
1359
  keydown: (value: KeyboardEvent) => any;
1330
1360
  keypress: (value: KeyboardEvent) => any;
1331
1361
  keyenter: (value: KeyboardEvent) => any;
1332
- }, string, PublicProps, Readonly<__VLS_PublicProps_2> & Readonly<{
1362
+ }, string, PublicProps, Readonly<__VLS_PublicProps_3> & Readonly<{
1333
1363
  onBlur?: ((value: Event) => any) | undefined;
1334
1364
  onFocus?: ((value: Event) => any) | undefined;
1335
1365
  onKeydown?: ((value: KeyboardEvent) => any) | undefined;
@@ -1378,7 +1408,7 @@ export declare const IconHamburger: DefineComponent< {}, {}, {}, {}, {}, Comp
1378
1408
 
1379
1409
  export declare const IconInbound: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
1380
1410
 
1381
- export declare type IconName = 'close' | 'check' | 'plus' | 'chevron' | 'folder' | 'outbound' | 'inbound' | 'question' | 'reload' | 'filter' | 'redo' | 'undo' | 'hamburger' | 'warning' | 'arrow' | 'arrows' | 'square' | 'squareSplitHorizontal' | 'squareSplitVertical' | 'home' | 'blocks';
1411
+ export declare type IconName = 'close' | 'check' | 'plus' | 'chevron' | 'folder' | 'outbound' | 'inbound' | 'question' | 'reload' | 'filter' | 'redo' | 'undo' | 'hamburger' | 'warning' | 'arrow' | 'arrows' | 'square' | 'squareSplitHorizontal' | 'squareSplitVertical' | 'home' | 'blocks' | 'calendar';
1382
1412
 
1383
1413
  export declare const IconOutbound: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
1384
1414
 
@@ -1501,9 +1531,9 @@ export declare const ListLink: __VLS_WithTemplateSlots_2<typeof __VLS_component_
1501
1531
 
1502
1532
  export declare const LoadingArea: __VLS_WithTemplateSlots_11<typeof __VLS_component_11, __VLS_TemplateResult_11["slots"]>;
1503
1533
 
1504
- export declare const NavigationBar: DefineComponent<__VLS_PublicProps_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1534
+ export declare const NavigationBar: DefineComponent<__VLS_PublicProps_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1505
1535
  "update:modelValue": (modelValue: string) => any;
1506
- }, string, PublicProps, Readonly<__VLS_PublicProps_6> & Readonly<{
1536
+ }, string, PublicProps, Readonly<__VLS_PublicProps_7> & Readonly<{
1507
1537
  "onUpdate:modelValue"?: ((modelValue: string) => any) | undefined;
1508
1538
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
1509
1539
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hantera/design-system",
3
- "version": "20250923.0.0-2025.2.2",
3
+ "version": "20250930.0.0-2025.2.1",
4
4
  "types": "./dist/entry.d.ts",
5
5
  "scripts": {
6
6
  "build": "cpx ../../design-system/dist/**/*.d.ts ./dist -C"