@solfacil/girassol 0.2.12 → 0.3.0

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,4 +1,4 @@
1
- import type { Checkbox as CheckboxType } from './checkbox-type';
1
+ import type { Checkbox as CheckboxType } from '@forms/checkbox/type';
2
2
  declare const _default: {
3
3
  new (...args: any[]): {
4
4
  $: import("vue").ComponentInternalInstance;
@@ -13,13 +13,13 @@ declare const _default: {
13
13
  hint?: string | undefined;
14
14
  error?: string | undefined;
15
15
  checkboxes: CheckboxType[];
16
- modelValue?: import("./checkbox-type").CheckboxValue[] | undefined;
16
+ modelValue?: import("@forms/checkbox/type").CheckboxValue[] | undefined;
17
17
  direction?: "row" | "column" | undefined;
18
18
  }>, {
19
19
  direction: string;
20
20
  hideTitle: boolean;
21
21
  }>>> & {
22
- onChange?: ((value: import("./checkbox-type").CheckboxValue) => any) | undefined;
22
+ onChange?: ((value: import("@forms/checkbox/type").CheckboxValue) => any) | undefined;
23
23
  "onUpdate:modelValue"?: ((a: any) => any) | undefined;
24
24
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "hideTitle" | "direction">;
25
25
  $attrs: {
@@ -33,7 +33,7 @@ declare const _default: {
33
33
  }>;
34
34
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
35
35
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
36
- $emit: ((event: "update:modelValue", a: any) => void) & ((event: "change", value: import("./checkbox-type").CheckboxValue) => void);
36
+ $emit: ((event: "update:modelValue", a: any) => void) & ((event: "change", value: import("@forms/checkbox/type").CheckboxValue) => void);
37
37
  $el: any;
38
38
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
39
39
  id: string;
@@ -42,16 +42,16 @@ declare const _default: {
42
42
  hint?: string | undefined;
43
43
  error?: string | undefined;
44
44
  checkboxes: CheckboxType[];
45
- modelValue?: import("./checkbox-type").CheckboxValue[] | undefined;
45
+ modelValue?: import("@forms/checkbox/type").CheckboxValue[] | undefined;
46
46
  direction?: "row" | "column" | undefined;
47
47
  }>, {
48
48
  direction: string;
49
49
  hideTitle: boolean;
50
50
  }>>> & {
51
- onChange?: ((value: import("./checkbox-type").CheckboxValue) => any) | undefined;
51
+ onChange?: ((value: import("@forms/checkbox/type").CheckboxValue) => any) | undefined;
52
52
  "onUpdate:modelValue"?: ((a: any) => any) | undefined;
53
53
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
54
- change: (value: import("./checkbox-type").CheckboxValue) => void;
54
+ change: (value: import("@forms/checkbox/type").CheckboxValue) => void;
55
55
  } & {
56
56
  "update:modelValue": (a: any) => void;
57
57
  }, string, {
@@ -84,13 +84,13 @@ declare const _default: {
84
84
  hint?: string | undefined;
85
85
  error?: string | undefined;
86
86
  checkboxes: CheckboxType[];
87
- modelValue?: import("./checkbox-type").CheckboxValue[] | undefined;
87
+ modelValue?: import("@forms/checkbox/type").CheckboxValue[] | undefined;
88
88
  direction?: "row" | "column" | undefined;
89
89
  }>, {
90
90
  direction: string;
91
91
  hideTitle: boolean;
92
92
  }>>> & {
93
- onChange?: ((value: import("./checkbox-type").CheckboxValue) => any) | undefined;
93
+ onChange?: ((value: import("@forms/checkbox/type").CheckboxValue) => any) | undefined;
94
94
  "onUpdate:modelValue"?: ((a: any) => any) | undefined;
95
95
  } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
96
96
  __isFragment?: undefined;
@@ -103,16 +103,16 @@ declare const _default: {
103
103
  hint?: string | undefined;
104
104
  error?: string | undefined;
105
105
  checkboxes: CheckboxType[];
106
- modelValue?: import("./checkbox-type").CheckboxValue[] | undefined;
106
+ modelValue?: import("@forms/checkbox/type").CheckboxValue[] | undefined;
107
107
  direction?: "row" | "column" | undefined;
108
108
  }>, {
109
109
  direction: string;
110
110
  hideTitle: boolean;
111
111
  }>>> & {
112
- onChange?: ((value: import("./checkbox-type").CheckboxValue) => any) | undefined;
112
+ onChange?: ((value: import("@forms/checkbox/type").CheckboxValue) => any) | undefined;
113
113
  "onUpdate:modelValue"?: ((a: any) => any) | undefined;
114
114
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
115
- change: (value: import("./checkbox-type").CheckboxValue) => void;
115
+ change: (value: import("@forms/checkbox/type").CheckboxValue) => void;
116
116
  } & {
117
117
  "update:modelValue": (a: any) => void;
118
118
  }, string, {
@@ -1,3 +1,3 @@
1
- import SolCheckbox from './Checkbox.vue';
2
- import SolCheckboxGroup from './CheckboxGroup.vue';
1
+ import SolCheckbox from './checkbox/Checkbox.vue';
2
+ import SolCheckboxGroup from './checkbox-group/CheckboxGroup.vue';
3
3
  export { SolCheckbox, SolCheckboxGroup, };
@@ -6,4 +6,5 @@ export interface Checkbox {
6
6
  label: string;
7
7
  checked?: boolean;
8
8
  class?: string | Record<string, boolean>;
9
+ indeterminate?: boolean;
9
10
  }
@@ -416,12 +416,12 @@ export declare const components: {
416
416
  } & {
417
417
  default: string;
418
418
  };
419
- id: {
419
+ class: {
420
420
  type: import("vue").PropType<string>;
421
- required: true;
422
421
  };
423
- class: {
422
+ id: {
424
423
  type: import("vue").PropType<string>;
424
+ required: true;
425
425
  };
426
426
  modelValue: {
427
427
  type: import("vue").PropType<string>;
@@ -464,12 +464,12 @@ export declare const components: {
464
464
  } & {
465
465
  default: string;
466
466
  };
467
- id: {
467
+ class: {
468
468
  type: import("vue").PropType<string>;
469
- required: true;
470
469
  };
471
- class: {
470
+ id: {
472
471
  type: import("vue").PropType<string>;
472
+ required: true;
473
473
  };
474
474
  modelValue: {
475
475
  type: import("vue").PropType<string>;
@@ -524,12 +524,12 @@ export declare const components: {
524
524
  } & {
525
525
  default: string;
526
526
  };
527
- id: {
527
+ class: {
528
528
  type: import("vue").PropType<string>;
529
- required: true;
530
529
  };
531
- class: {
530
+ id: {
532
531
  type: import("vue").PropType<string>;
532
+ required: true;
533
533
  };
534
534
  modelValue: {
535
535
  type: import("vue").PropType<string>;
@@ -562,12 +562,12 @@ export declare const components: {
562
562
  } & {
563
563
  default: string;
564
564
  };
565
- id: {
565
+ class: {
566
566
  type: import("vue").PropType<string>;
567
- required: true;
568
567
  };
569
- class: {
568
+ id: {
570
569
  type: import("vue").PropType<string>;
570
+ required: true;
571
571
  };
572
572
  modelValue: {
573
573
  type: import("vue").PropType<string>;
@@ -615,12 +615,12 @@ export declare const components: {
615
615
  } & {
616
616
  default: string;
617
617
  };
618
- id: {
618
+ class: {
619
619
  type: import("vue").PropType<string>;
620
- required: true;
621
620
  };
622
- class: {
621
+ id: {
623
622
  type: import("vue").PropType<string>;
623
+ required: true;
624
624
  };
625
625
  modelValue: {
626
626
  type: import("vue").PropType<string | number>;
@@ -658,12 +658,12 @@ export declare const components: {
658
658
  } & {
659
659
  default: string;
660
660
  };
661
- id: {
661
+ class: {
662
662
  type: import("vue").PropType<string>;
663
- required: true;
664
663
  };
665
- class: {
664
+ id: {
666
665
  type: import("vue").PropType<string>;
666
+ required: true;
667
667
  };
668
668
  modelValue: {
669
669
  type: import("vue").PropType<string | number>;
@@ -712,12 +712,12 @@ export declare const components: {
712
712
  } & {
713
713
  default: string;
714
714
  };
715
- id: {
715
+ class: {
716
716
  type: import("vue").PropType<string>;
717
- required: true;
718
717
  };
719
- class: {
718
+ id: {
720
719
  type: import("vue").PropType<string>;
720
+ required: true;
721
721
  };
722
722
  modelValue: {
723
723
  type: import("vue").PropType<string | number>;
@@ -745,12 +745,12 @@ export declare const components: {
745
745
  } & {
746
746
  default: string;
747
747
  };
748
- id: {
748
+ class: {
749
749
  type: import("vue").PropType<string>;
750
- required: true;
751
750
  };
752
- class: {
751
+ id: {
753
752
  type: import("vue").PropType<string>;
753
+ required: true;
754
754
  };
755
755
  modelValue: {
756
756
  type: import("vue").PropType<string | number>;
@@ -1259,7 +1259,7 @@ export declare const components: {
1259
1259
  required: true;
1260
1260
  };
1261
1261
  value: {
1262
- type: import("vue").PropType<import("./components/forms/checkbox/checkbox-type").CheckboxValue>;
1262
+ type: import("vue").PropType<import("./components/forms/checkbox/type").CheckboxValue>;
1263
1263
  required: true;
1264
1264
  };
1265
1265
  label: {
@@ -1272,8 +1272,11 @@ export declare const components: {
1272
1272
  class: {
1273
1273
  type: import("vue").PropType<string | Record<string, boolean>>;
1274
1274
  };
1275
+ indeterminate: {
1276
+ type: import("vue").PropType<boolean>;
1277
+ };
1275
1278
  }>> & {
1276
- onChange?: ((value: import("./components/forms/checkbox/checkbox-type").CheckboxValue) => any) | undefined;
1279
+ onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
1277
1280
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
1278
1281
  $attrs: {
1279
1282
  [x: string]: unknown;
@@ -1286,7 +1289,7 @@ export declare const components: {
1286
1289
  }>;
1287
1290
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
1288
1291
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
1289
- $emit: (event: "change", value: import("./components/forms/checkbox/checkbox-type").CheckboxValue) => void;
1292
+ $emit: (event: "change", value: import("./components/forms/checkbox/type").CheckboxValue) => void;
1290
1293
  $el: any;
1291
1294
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
1292
1295
  id: {
@@ -1298,7 +1301,7 @@ export declare const components: {
1298
1301
  required: true;
1299
1302
  };
1300
1303
  value: {
1301
- type: import("vue").PropType<import("./components/forms/checkbox/checkbox-type").CheckboxValue>;
1304
+ type: import("vue").PropType<import("./components/forms/checkbox/type").CheckboxValue>;
1302
1305
  required: true;
1303
1306
  };
1304
1307
  label: {
@@ -1311,10 +1314,13 @@ export declare const components: {
1311
1314
  class: {
1312
1315
  type: import("vue").PropType<string | Record<string, boolean>>;
1313
1316
  };
1317
+ indeterminate: {
1318
+ type: import("vue").PropType<boolean>;
1319
+ };
1314
1320
  }>> & {
1315
- onChange?: ((value: import("./components/forms/checkbox/checkbox-type").CheckboxValue) => any) | undefined;
1321
+ onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
1316
1322
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1317
- change: (value: import("./components/forms/checkbox/checkbox-type").CheckboxValue) => void;
1323
+ change: (value: import("./components/forms/checkbox/type").CheckboxValue) => void;
1318
1324
  }, string, {}> & {
1319
1325
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
1320
1326
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -1345,7 +1351,7 @@ export declare const components: {
1345
1351
  required: true;
1346
1352
  };
1347
1353
  value: {
1348
- type: import("vue").PropType<import("./components/forms/checkbox/checkbox-type").CheckboxValue>;
1354
+ type: import("vue").PropType<import("./components/forms/checkbox/type").CheckboxValue>;
1349
1355
  required: true;
1350
1356
  };
1351
1357
  label: {
@@ -1358,8 +1364,11 @@ export declare const components: {
1358
1364
  class: {
1359
1365
  type: import("vue").PropType<string | Record<string, boolean>>;
1360
1366
  };
1367
+ indeterminate: {
1368
+ type: import("vue").PropType<boolean>;
1369
+ };
1361
1370
  }>> & {
1362
- onChange?: ((value: import("./components/forms/checkbox/checkbox-type").CheckboxValue) => any) | undefined;
1371
+ onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
1363
1372
  } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
1364
1373
  __isFragment?: undefined;
1365
1374
  __isTeleport?: undefined;
@@ -1374,7 +1383,7 @@ export declare const components: {
1374
1383
  required: true;
1375
1384
  };
1376
1385
  value: {
1377
- type: import("vue").PropType<import("./components/forms/checkbox/checkbox-type").CheckboxValue>;
1386
+ type: import("vue").PropType<import("./components/forms/checkbox/type").CheckboxValue>;
1378
1387
  required: true;
1379
1388
  };
1380
1389
  label: {
@@ -1387,10 +1396,13 @@ export declare const components: {
1387
1396
  class: {
1388
1397
  type: import("vue").PropType<string | Record<string, boolean>>;
1389
1398
  };
1399
+ indeterminate: {
1400
+ type: import("vue").PropType<boolean>;
1401
+ };
1390
1402
  }>> & {
1391
- onChange?: ((value: import("./components/forms/checkbox/checkbox-type").CheckboxValue) => any) | undefined;
1403
+ onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
1392
1404
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1393
- change: (value: import("./components/forms/checkbox/checkbox-type").CheckboxValue) => void;
1405
+ change: (value: import("./components/forms/checkbox/type").CheckboxValue) => void;
1394
1406
  }, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
1395
1407
  $slots: {};
1396
1408
  });
@@ -1411,7 +1423,7 @@ export declare const components: {
1411
1423
  required: true;
1412
1424
  };
1413
1425
  modelValue: {
1414
- type: import("vue").PropType<import("./components/forms/checkbox/checkbox-type").CheckboxValue[]>;
1426
+ type: import("vue").PropType<import("./components/forms/checkbox/type").CheckboxValue[]>;
1415
1427
  };
1416
1428
  error: {
1417
1429
  type: import("vue").PropType<string>;
@@ -1425,7 +1437,7 @@ export declare const components: {
1425
1437
  type: import("vue").PropType<string>;
1426
1438
  };
1427
1439
  checkboxes: {
1428
- type: import("vue").PropType<import("./components/forms/checkbox/checkbox-type").Checkbox[]>;
1440
+ type: import("vue").PropType<import("./components/forms/checkbox/type").Checkbox[]>;
1429
1441
  required: true;
1430
1442
  };
1431
1443
  direction: {
@@ -1434,7 +1446,7 @@ export declare const components: {
1434
1446
  default: string;
1435
1447
  };
1436
1448
  }>> & {
1437
- onChange?: ((value: import("./components/forms/checkbox/checkbox-type").CheckboxValue) => any) | undefined;
1449
+ onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
1438
1450
  "onUpdate:modelValue"?: ((a: any) => any) | undefined;
1439
1451
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "hideTitle" | "direction">;
1440
1452
  $attrs: {
@@ -1448,7 +1460,7 @@ export declare const components: {
1448
1460
  }>;
1449
1461
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
1450
1462
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
1451
- $emit: ((event: "update:modelValue", a: any) => void) & ((event: "change", value: import("./components/forms/checkbox/checkbox-type").CheckboxValue) => void);
1463
+ $emit: ((event: "update:modelValue", a: any) => void) & ((event: "change", value: import("./components/forms/checkbox/type").CheckboxValue) => void);
1452
1464
  $el: any;
1453
1465
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
1454
1466
  title: {
@@ -1460,7 +1472,7 @@ export declare const components: {
1460
1472
  required: true;
1461
1473
  };
1462
1474
  modelValue: {
1463
- type: import("vue").PropType<import("./components/forms/checkbox/checkbox-type").CheckboxValue[]>;
1475
+ type: import("vue").PropType<import("./components/forms/checkbox/type").CheckboxValue[]>;
1464
1476
  };
1465
1477
  error: {
1466
1478
  type: import("vue").PropType<string>;
@@ -1474,7 +1486,7 @@ export declare const components: {
1474
1486
  type: import("vue").PropType<string>;
1475
1487
  };
1476
1488
  checkboxes: {
1477
- type: import("vue").PropType<import("./components/forms/checkbox/checkbox-type").Checkbox[]>;
1489
+ type: import("vue").PropType<import("./components/forms/checkbox/type").Checkbox[]>;
1478
1490
  required: true;
1479
1491
  };
1480
1492
  direction: {
@@ -1483,10 +1495,10 @@ export declare const components: {
1483
1495
  default: string;
1484
1496
  };
1485
1497
  }>> & {
1486
- onChange?: ((value: import("./components/forms/checkbox/checkbox-type").CheckboxValue) => any) | undefined;
1498
+ onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
1487
1499
  "onUpdate:modelValue"?: ((a: any) => any) | undefined;
1488
1500
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1489
- change: (value: import("./components/forms/checkbox/checkbox-type").CheckboxValue) => void;
1501
+ change: (value: import("./components/forms/checkbox/type").CheckboxValue) => void;
1490
1502
  } & {
1491
1503
  "update:modelValue": (a: any) => void;
1492
1504
  }, string, {
@@ -1522,7 +1534,7 @@ export declare const components: {
1522
1534
  required: true;
1523
1535
  };
1524
1536
  modelValue: {
1525
- type: import("vue").PropType<import("./components/forms/checkbox/checkbox-type").CheckboxValue[]>;
1537
+ type: import("vue").PropType<import("./components/forms/checkbox/type").CheckboxValue[]>;
1526
1538
  };
1527
1539
  error: {
1528
1540
  type: import("vue").PropType<string>;
@@ -1536,7 +1548,7 @@ export declare const components: {
1536
1548
  type: import("vue").PropType<string>;
1537
1549
  };
1538
1550
  checkboxes: {
1539
- type: import("vue").PropType<import("./components/forms/checkbox/checkbox-type").Checkbox[]>;
1551
+ type: import("vue").PropType<import("./components/forms/checkbox/type").Checkbox[]>;
1540
1552
  required: true;
1541
1553
  };
1542
1554
  direction: {
@@ -1545,7 +1557,7 @@ export declare const components: {
1545
1557
  default: string;
1546
1558
  };
1547
1559
  }>> & {
1548
- onChange?: ((value: import("./components/forms/checkbox/checkbox-type").CheckboxValue) => any) | undefined;
1560
+ onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
1549
1561
  "onUpdate:modelValue"?: ((a: any) => any) | undefined;
1550
1562
  } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
1551
1563
  __isFragment?: undefined;
@@ -1561,7 +1573,7 @@ export declare const components: {
1561
1573
  required: true;
1562
1574
  };
1563
1575
  modelValue: {
1564
- type: import("vue").PropType<import("./components/forms/checkbox/checkbox-type").CheckboxValue[]>;
1576
+ type: import("vue").PropType<import("./components/forms/checkbox/type").CheckboxValue[]>;
1565
1577
  };
1566
1578
  error: {
1567
1579
  type: import("vue").PropType<string>;
@@ -1575,7 +1587,7 @@ export declare const components: {
1575
1587
  type: import("vue").PropType<string>;
1576
1588
  };
1577
1589
  checkboxes: {
1578
- type: import("vue").PropType<import("./components/forms/checkbox/checkbox-type").Checkbox[]>;
1590
+ type: import("vue").PropType<import("./components/forms/checkbox/type").Checkbox[]>;
1579
1591
  required: true;
1580
1592
  };
1581
1593
  direction: {
@@ -1584,10 +1596,10 @@ export declare const components: {
1584
1596
  default: string;
1585
1597
  };
1586
1598
  }>> & {
1587
- onChange?: ((value: import("./components/forms/checkbox/checkbox-type").CheckboxValue) => any) | undefined;
1599
+ onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
1588
1600
  "onUpdate:modelValue"?: ((a: any) => any) | undefined;
1589
1601
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1590
- change: (value: import("./components/forms/checkbox/checkbox-type").CheckboxValue) => void;
1602
+ change: (value: import("./components/forms/checkbox/type").CheckboxValue) => void;
1591
1603
  } & {
1592
1604
  "update:modelValue": (a: any) => void;
1593
1605
  }, string, {
@@ -1599,7 +1611,7 @@ export declare const components: {
1599
1611
  id: string;
1600
1612
  }) => any;
1601
1613
  default: (_: {
1602
- checkboxes: import("./components/forms/checkbox/checkbox-type").Checkbox[];
1614
+ checkboxes: import("./components/forms/checkbox/type").Checkbox[];
1603
1615
  direction: "row" | "column";
1604
1616
  }) => any;
1605
1617
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@solfacil/girassol",
3
3
  "description": "Girassol design system",
4
- "version": "0.2.12",
4
+ "version": "0.3.0",
5
5
  "authors": [
6
6
  {
7
7
  "name": "Kevin Martin",
@@ -68,21 +68,23 @@
68
68
  "@commitlint/cli": "^17.0.3",
69
69
  "@commitlint/config-conventional": "^17.0.3",
70
70
  "@iconify/json": "^2.1.89",
71
- "@storybook/addon-a11y": "^6.5.9",
72
- "@storybook/addon-actions": "^6.5.9",
73
- "@storybook/addon-essentials": "^6.5.9",
74
- "@storybook/addon-links": "^6.5.9",
71
+ "@storybook/addon-a11y": "^6.5.10",
72
+ "@storybook/addon-actions": "^6.5.10",
73
+ "@storybook/addon-essentials": "^6.5.10",
74
+ "@storybook/addon-links": "^6.5.10",
75
75
  "@storybook/builder-vite": "^0.2.2",
76
- "@storybook/theming": "^6.5.9",
77
- "@storybook/vue3": "^6.5.9",
78
- "@testing-library/jest-dom": "^5.16.4",
79
- "@testing-library/user-event": "^14.2.1",
76
+ "@storybook/theming": "^6.5.10",
77
+ "@storybook/vue3": "^6.5.10",
78
+ "@testing-library/jest-dom": "^5.16.5",
79
+ "@testing-library/user-event": "^14.4.3",
80
80
  "@testing-library/vue": "^6.6.1",
81
81
  "@types/jest-axe": "^3.5.4",
82
82
  "@types/node": "^17.0.41",
83
83
  "@typescript-eslint/eslint-plugin": "^5.30.0",
84
84
  "@typescript-eslint/parser": "^5.30.0",
85
- "@vitejs/plugin-vue": "^3.0.1",
85
+ "@vitejs/plugin-vue": "^3.0.3",
86
+ "@vitest/coverage-c8": "^0.22.1",
87
+ "@vitest/ui": "^0.22.1",
86
88
  "babel-loader": "^8.2.5",
87
89
  "c8": "^7.12.0",
88
90
  "cli-spinner": "^0.2.10",
@@ -100,19 +102,19 @@
100
102
  "jsdom": "^20.0.0",
101
103
  "sass": "^1.50.0",
102
104
  "storybook-addon-designs": "^6.3.1",
103
- "stylelint": "^14.9.1",
105
+ "stylelint": "^14.10.0",
104
106
  "stylelint-config-prettier": "^9.0.3",
105
107
  "stylelint-config-property-sort-order-smacss": "^9.0.0",
106
108
  "stylelint-order": "^5.0.0",
107
- "ts-node": "^10.8.1",
109
+ "ts-node": "^10.9.1",
108
110
  "typescript": "^4.7.4",
109
- "unplugin-icons": "^0.14.7",
110
- "vite": "^3.0.5",
111
- "vite-plugin-inspect": "^0.5.1",
111
+ "unplugin-icons": "^0.14.8",
112
+ "vite": "^3.0.9",
113
+ "vite-plugin-inspect": "^0.6.0",
112
114
  "vite-plugin-windicss": "^1.8.7",
113
- "vitest": "^0.21.1",
115
+ "vitest": "^0.22.1",
114
116
  "vue-loader": "^17.0.0",
115
- "vue-tsc": "^0.40.0",
117
+ "vue-tsc": "^0.40.1",
116
118
  "windicss": "^3.5.6"
117
119
  },
118
120
  "repository": {
@@ -136,4 +138,4 @@
136
138
  "path": "./node_modules/cz-conventional-changelog"
137
139
  }
138
140
  }
139
- }
141
+ }