@pequity/squirrel 5.3.2 → 5.4.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.
- package/dist/cjs/inputClassesShared.js +1 -1
- package/dist/es/inputClassesShared.js +1 -1
- package/dist/squirrel/utils/inputClassesShared.d.ts +1 -1
- package/package.json +1 -1
- package/squirrel/components/p-file-upload/p-file-upload.spec.js +1 -1
- package/squirrel/components/p-inline-date-picker/p-inline-date-picker.spec.js +1 -1
- package/squirrel/components/p-input/p-input.spec.js +1 -1
- package/squirrel/components/p-input-number/p-input-number.spec.js +1 -1
- package/squirrel/components/p-input-percent/p-input-percent.spec.js +1 -1
- package/squirrel/components/p-select/p-select.spec.js +1 -1
- package/squirrel/components/p-textarea/p-textarea.spec.js +1 -1
- package/squirrel/composables/useInputClasses.spec.js +1 -1
- package/squirrel/utils/inputClassesMixin.spec.js +1 -1
- package/squirrel/utils/inputClassesShared.ts +1 -1
package/package.json
CHANGED
|
@@ -44,7 +44,7 @@ const baseInputClassesLg = () => {
|
|
|
44
44
|
.replace('pr-4', 'pr-5');
|
|
45
45
|
};
|
|
46
46
|
|
|
47
|
-
const baseLabelClasses = 'block mb-1 font-
|
|
47
|
+
const baseLabelClasses = 'block mb-1 font-medium text-sm';
|
|
48
48
|
|
|
49
49
|
describe('useInputClasses', () => {
|
|
50
50
|
it('generates input classes md', () => {
|
|
@@ -43,7 +43,7 @@ const baseInputClassesLg = () => {
|
|
|
43
43
|
.replace('pr-4', 'pr-5');
|
|
44
44
|
};
|
|
45
45
|
|
|
46
|
-
const baseLabelClasses = 'block mb-1 font-
|
|
46
|
+
const baseLabelClasses = 'block mb-1 font-medium text-sm';
|
|
47
47
|
|
|
48
48
|
const createWrapper = (opts) => {
|
|
49
49
|
const TestComponent = {
|