@quidgest/ui 0.7.14 → 0.7.15
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/dist/ui.css +14 -14
- package/dist/ui.esm.js +95 -97
- package/dist/ui.esm.js.map +1 -1
- package/dist/ui.js +1 -1
- package/dist/ui.js.map +1 -1
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +8 -8
- package/dist/ui.min.js.map +1 -1
- package/dist/ui.scss +24 -22
- package/package.json +2 -2
package/dist/ui.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Quidgest Framework v0.7.
|
|
2
|
+
* Quidgest Framework v0.7.15
|
|
3
3
|
* (c) 2023 Quidgest - Consultores de Gestão, SA
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -515,14 +515,6 @@ $input-height: 31.89px;
|
|
|
515
515
|
}
|
|
516
516
|
}
|
|
517
517
|
.q-input-group {
|
|
518
|
-
display: flex;
|
|
519
|
-
align-items: flex-end;
|
|
520
|
-
height: auto;
|
|
521
|
-
border-width: 0;
|
|
522
|
-
padding: 0;
|
|
523
|
-
&:focus-within {
|
|
524
|
-
outline: none;
|
|
525
|
-
}
|
|
526
518
|
&__prepend > :first-child {
|
|
527
519
|
border-top-left-radius: $border-radius;
|
|
528
520
|
border-bottom-left-radius: $border-radius;
|
|
@@ -558,19 +550,29 @@ $input-height: 31.89px;
|
|
|
558
550
|
margin-left: -1px;
|
|
559
551
|
}
|
|
560
552
|
}
|
|
561
|
-
>
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
border-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
553
|
+
> .q-field__control {
|
|
554
|
+
display: flex;
|
|
555
|
+
align-items: flex-end;
|
|
556
|
+
height: auto;
|
|
557
|
+
border-width: 0;
|
|
558
|
+
padding: 0;
|
|
559
|
+
&:focus-within {
|
|
560
|
+
outline: none;
|
|
561
|
+
}
|
|
562
|
+
> * {
|
|
563
|
+
border-radius: 0;
|
|
564
|
+
}
|
|
565
|
+
> :first-child {
|
|
566
|
+
border-top-left-radius: $border-radius;
|
|
567
|
+
border-bottom-left-radius: $border-radius;
|
|
568
|
+
}
|
|
569
|
+
> :last-child {
|
|
570
|
+
border-top-right-radius: $border-radius;
|
|
571
|
+
border-bottom-right-radius: $border-radius;
|
|
572
|
+
}
|
|
573
|
+
> * + * {
|
|
574
|
+
margin-left: -1px;
|
|
575
|
+
}
|
|
574
576
|
}
|
|
575
577
|
}
|
|
576
578
|
$line-color: var(--q-theme-primary);
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@quidgest/ui",
|
|
3
3
|
"private": false,
|
|
4
4
|
"description": "Quidgest's UI framework",
|
|
5
|
-
"version": "0.7.
|
|
5
|
+
"version": "0.7.15",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Quidgest"
|
|
8
8
|
},
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
"format:fix": "prettier . --write",
|
|
104
104
|
"lint": "eslint --max-warnings 0 --ext .ts,.vue .",
|
|
105
105
|
"lint:fix": "eslint src --ext .ts,.vue --fix",
|
|
106
|
-
"lint:style": "stylelint **/*.scss",
|
|
106
|
+
"lint:style": "stylelint \"**/*.scss\"",
|
|
107
107
|
"test": "vitest",
|
|
108
108
|
"test:coverage": "vitest run --coverage",
|
|
109
109
|
"storybook": "storybook dev -p 6006",
|