srcdev-nuxt-forms 5.1.1 → 6.0.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.
Files changed (157) hide show
  1. package/README.md +16 -0
  2. package/app/assets/styles/extends-layer/srcdev-forms/components/_form-fieldset.css +38 -0
  3. package/app/assets/styles/extends-layer/srcdev-forms/components/_input-button.css +66 -0
  4. package/app/assets/styles/extends-layer/srcdev-forms/components/_input-checkbox-radio-core.css +66 -0
  5. package/app/assets/styles/extends-layer/srcdev-forms/components/_input-checkbox-radio-options-button.css +76 -0
  6. package/app/assets/styles/extends-layer/srcdev-forms/components/_input-error.css +54 -0
  7. package/app/assets/styles/extends-layer/srcdev-forms/components/_input-label.css +21 -0
  8. package/app/assets/styles/extends-layer/srcdev-forms/components/_input-select.css +140 -0
  9. package/app/assets/styles/extends-layer/srcdev-forms/components/_input-text.css +190 -0
  10. package/app/assets/styles/extends-layer/srcdev-forms/components/_input-textarea.css +96 -0
  11. package/{assets → app/assets}/styles/extends-layer/srcdev-forms/components/index.css +3 -4
  12. package/app/assets/styles/extends-layer/srcdev-forms/setup/_generic.css +21 -0
  13. package/app/assets/styles/extends-layer/srcdev-forms/setup/index.css +4 -0
  14. package/{assets → app/assets}/styles/extends-layer/srcdev-forms/setup/themes/_error.css +12 -12
  15. package/{assets → app/assets}/styles/extends-layer/srcdev-forms/setup/themes/_ghost.css +12 -12
  16. package/{assets → app/assets}/styles/extends-layer/srcdev-forms/setup/themes/_input-action-underlined.css +7 -7
  17. package/{assets → app/assets}/styles/extends-layer/srcdev-forms/setup/themes/_input-action.css +7 -7
  18. package/{assets → app/assets}/styles/extends-layer/srcdev-forms/setup/themes/_primary.css +12 -12
  19. package/{assets → app/assets}/styles/extends-layer/srcdev-forms/setup/themes/_secondary.css +12 -12
  20. package/{assets → app/assets}/styles/extends-layer/srcdev-forms/setup/themes/_success.css +12 -12
  21. package/{assets → app/assets}/styles/extends-layer/srcdev-forms/setup/themes/_tertiary.css +12 -12
  22. package/{assets → app/assets}/styles/extends-layer/srcdev-forms/setup/themes/_warning.css +12 -12
  23. package/app/assets/styles/extends-layer/srcdev-forms/setup/variables/_a11y.css +7 -0
  24. package/app/assets/styles/extends-layer/srcdev-forms/setup/variables/index.css +1 -0
  25. package/app/assets/styles/extends-layer/srcdev-forms/setup/variants/_normal.css +48 -0
  26. package/{assets → app/assets}/styles/extends-layer/srcdev-forms/setup/variants/_underlined.css +10 -10
  27. package/app/assets/styles/extends-layer/srcdev-forms/setup/variants/index.css +3 -0
  28. package/app/assets/styles/extends-layer/srcdev-forms/setup/variants/sizes/_default.css +13 -0
  29. package/{assets/styles/extends-layer/srcdev-forms/setup → app/assets/styles/extends-layer/srcdev-forms/setup/variants}/sizes/index.css +2 -0
  30. package/app/assets/styles/setup/_head.css +36 -0
  31. package/app/assets/styles/setup/index.css +5 -0
  32. package/{assets/styles/setup/variables → app/assets/styles/setup/theming}/colors/_blue.css +1 -1
  33. package/{assets/styles/setup/variables → app/assets/styles/setup/theming}/index.css +1 -0
  34. package/app/assets/styles/setup/theming/themes/_default.css +66 -0
  35. package/app/assets/styles/setup/theming/themes/_error.css +66 -0
  36. package/app/assets/styles/setup/theming/themes/_ghost.css +31 -0
  37. package/app/assets/styles/setup/theming/themes/_info.css +31 -0
  38. package/app/assets/styles/setup/theming/themes/_primary.css +41 -0
  39. package/app/assets/styles/setup/theming/themes/_secondary.css +66 -0
  40. package/app/assets/styles/setup/theming/themes/_success.css +66 -0
  41. package/app/assets/styles/setup/theming/themes/_tertiary.css +31 -0
  42. package/app/assets/styles/setup/theming/themes/_warning.css +68 -0
  43. package/app/assets/styles/setup/theming/themes/index.css +9 -0
  44. package/app/assets/styles/setup/typography/index.css +2 -0
  45. package/app/assets/styles/setup/typography/utility-classes/_generic-font-classes.css +217 -0
  46. package/app/assets/styles/setup/typography/utility-classes/_generic-font-variation-settings.css +29 -0
  47. package/app/assets/styles/setup/typography/utility-classes/_generic-font-weights.css +39 -0
  48. package/app/assets/styles/setup/typography/vars/_colors.css +14 -0
  49. package/{assets → app/assets}/styles/setup/typography/vars/_reponsive-font-sizes.css +2 -0
  50. package/{assets → app/assets}/styles/setup/typography/vars/index.css +1 -0
  51. package/app/assets/styles/setup/utility-classes/_fluid-spacing.css +13 -0
  52. package/app/assets/styles/setup/utility-classes/animations/_auto-rotate.css +13 -0
  53. package/app/assets/styles/setup/utility-classes/animations/_entry-exit-blur.css +16 -0
  54. package/app/assets/styles/setup/utility-classes/animations/_entry-slide-in.css +15 -0
  55. package/app/assets/styles/setup/utility-classes/animations/_entry-zoom-reveal.css +15 -0
  56. package/app/assets/styles/setup/utility-classes/animations/index.css +4 -0
  57. package/app/assets/styles/setup/utility-classes/index.css +2 -0
  58. package/app/assets/styles/setup/variables/index.css +1 -0
  59. package/{components → app/components}/forms/form-errors/InputError.vue +32 -49
  60. package/{components → app/components}/forms/form-fieldset/FormFieldset.vue +9 -9
  61. package/{components → app/components}/forms/input-button/InputButtonCore.vue +20 -18
  62. package/{components → app/components}/forms/input-button/variants/InputButtonConfirm.vue +1 -1
  63. package/app/components/forms/input-checkbox-radio/InputCheckboxRadioButton.vue +204 -0
  64. package/{components → app/components}/forms/input-checkbox-radio/InputCheckboxRadioCore.vue +29 -17
  65. package/{components → app/components}/forms/input-checkbox-radio/InputCheckboxRadioWithLabel.vue +1 -0
  66. package/{components → app/components}/forms/input-label/InputLabel.vue +26 -7
  67. package/{components → app/components}/forms/input-number/InputNumberCore.vue +7 -6
  68. package/{components → app/components}/forms/input-number/variants/InputNumberDefault.vue +5 -6
  69. package/{components → app/components}/forms/input-range/InputRangeCore.vue +1 -1
  70. package/{components → app/components}/forms/input-range/variants/InputRangeDefault.vue +5 -2
  71. package/{components → app/components}/forms/input-range-fancy/InputRangeFancyCore.vue +1 -1
  72. package/{components → app/components}/forms/input-range-fancy/InputRangeFancyWithLabel.vue +1 -1
  73. package/{components → app/components}/forms/input-select/InputSelectCore.vue +23 -21
  74. package/{components → app/components}/forms/input-select/variants/InputSelectWithLabel.vue +1 -1
  75. package/app/components/forms/input-text/InputTextCore.vue +341 -0
  76. package/{components → app/components}/forms/input-text/variants/InputPasswordWithLabel.vue +1 -1
  77. package/{components → app/components}/forms/input-text/variants/InputTextAsNumberWithLabel.vue +4 -2
  78. package/app/components/forms/input-text/variants/InputTextWithLabel.vue +158 -0
  79. package/{components → app/components}/forms/input-textarea/InputTextareaCore.vue +10 -131
  80. package/app/components/forms/input-textarea/variants/InputTextareaWithLabel.vue +125 -0
  81. package/{components → app/components}/forms/toggle-switch/ToggleSwitchCore.vue +1 -1
  82. package/{components → app/components}/forms/toggle-switch/ToggleSwitchCoreOld.vue +1 -1
  83. package/{components → app/components}/forms/toggle-switch/variants/ToggleSwitchWithLabel.vue +5 -2
  84. package/{components → app/components}/forms/toggle-switch/variants/ToggleSwitchWithLabelInline.vue +5 -2
  85. package/{components → app/components}/utils/colour-scheme-select/ColourSchemeSelect.vue +1 -1
  86. package/{components → app/components}/utils/colour-scheme-select/ColourSchemeSelectOld.vue +1 -1
  87. package/nuxt.config.ts +5 -2
  88. package/package.json +9 -11
  89. package/assets/styles/extends-layer/srcdev-forms/components/_form-core.css +0 -8
  90. package/assets/styles/extends-layer/srcdev-forms/components/_form-fieldset.css +0 -16
  91. package/assets/styles/extends-layer/srcdev-forms/components/_input-checkbox-radio-options-button.css +0 -59
  92. package/assets/styles/extends-layer/srcdev-forms/components/_input-checkbox.css +0 -72
  93. package/assets/styles/extends-layer/srcdev-forms/components/_input-error.css +0 -55
  94. package/assets/styles/extends-layer/srcdev-forms/components/_input-label.css +0 -18
  95. package/assets/styles/extends-layer/srcdev-forms/components/_input-radio.css +0 -68
  96. package/assets/styles/extends-layer/srcdev-forms/components/_input-select.css +0 -18
  97. package/assets/styles/extends-layer/srcdev-forms/components/_input-text-as-number.css +0 -22
  98. package/assets/styles/extends-layer/srcdev-forms/components/_input-textarea.css +0 -5
  99. package/assets/styles/extends-layer/srcdev-forms/setup/_generic.css +0 -7
  100. package/assets/styles/extends-layer/srcdev-forms/setup/index.css +0 -4
  101. package/assets/styles/extends-layer/srcdev-forms/setup/sizes/_default.css +0 -12
  102. package/assets/styles/extends-layer/srcdev-forms/setup/variants/_normal.css +0 -48
  103. package/assets/styles/extends-layer/srcdev-forms/setup/variants/index.css +0 -2
  104. package/assets/styles/setup/_head.css +0 -5
  105. package/assets/styles/setup/index.css +0 -5
  106. package/assets/styles/setup/typography/index.css +0 -2
  107. package/assets/styles/setup/typography/utility-classes/_generic-font-classes.css +0 -192
  108. package/assets/styles/setup/typography/utility-classes/_generic-font-variation-settings.css +0 -29
  109. package/assets/styles/setup/typography/utility-classes/_generic-font-weights.css +0 -41
  110. package/assets/styles/setup/utility-classes/_margin-helpers.css +0 -334
  111. package/assets/styles/setup/utility-classes/_padding-helpers.css +0 -308
  112. package/assets/styles/setup/utility-classes/_page.css +0 -49
  113. package/assets/styles/setup/utility-classes/index.css +0 -3
  114. package/components/forms/input-checkbox-radio/InputCheckboxRadioButton.vue +0 -218
  115. package/components/forms/input-text/InputTextCore.vue +0 -390
  116. package/components/forms/input-text/variants/InputTextWithLabel.vue +0 -300
  117. package/components/forms/input-textarea/variants/InputTextareaWithLabel.vue +0 -269
  118. package/{assets → app/assets}/styles/extends-layer/srcdev-forms/index.css +0 -0
  119. package/{assets → app/assets}/styles/extends-layer/srcdev-forms/setup/themes/index.css +0 -0
  120. package/{assets/styles/extends-layer/srcdev-forms/setup → app/assets/styles/extends-layer/srcdev-forms/setup/variants}/sizes/_large.css +0 -0
  121. package/{assets/styles/extends-layer/srcdev-forms/setup → app/assets/styles/extends-layer/srcdev-forms/setup/variants}/sizes/_medium.css +0 -0
  122. package/{assets/styles/extends-layer/srcdev-forms/setup → app/assets/styles/extends-layer/srcdev-forms/setup/variants}/sizes/_small.css +0 -0
  123. package/{assets/styles/extends-layer/srcdev-forms/setup → app/assets/styles/extends-layer/srcdev-forms/setup/variants}/sizes/_x-small.css +0 -0
  124. package/{assets → app/assets}/styles/main.css +0 -0
  125. package/{assets → app/assets}/styles/setup/a11y/_utils.css +0 -0
  126. package/{assets → app/assets}/styles/setup/a11y/_variables.css +0 -0
  127. package/{assets → app/assets}/styles/setup/a11y/index.css +0 -0
  128. package/{assets/styles/setup/variables → app/assets/styles/setup/theming}/colors/_gray.css +0 -0
  129. package/{assets/styles/setup/variables → app/assets/styles/setup/theming}/colors/_green.css +0 -0
  130. package/{assets/styles/setup/variables → app/assets/styles/setup/theming}/colors/_orange.css +0 -0
  131. package/{assets/styles/setup/variables → app/assets/styles/setup/theming}/colors/_red.css +0 -0
  132. package/{assets/styles/setup/variables → app/assets/styles/setup/theming}/colors/_yellow.css +0 -0
  133. package/{assets/styles/setup/variables → app/assets/styles/setup/theming}/colors/index.css +3 -3
  134. package/{assets → app/assets}/styles/setup/typography/utility-classes/index.css +1 -1
  135. /package/{components → app/components}/forms/c12/prop-validators/index.ts +0 -0
  136. /package/{components → app/components}/forms/c12/utils.ts +0 -0
  137. /package/{components → app/components}/forms/form-errors/tests/InputError.spec.ts +0 -0
  138. /package/{components → app/components}/forms/input-button/variants/InputButtonSubmit.vue +0 -0
  139. /package/{components → app/components}/forms/input-checkbox/MultipleCheckboxes.vue +0 -0
  140. /package/{components → app/components}/forms/input-checkbox/SingleCheckbox.vue +0 -0
  141. /package/{components → app/components}/forms/input-checkbox/tests/MultipleCheckboxes.spec.ts +0 -0
  142. /package/{components → app/components}/forms/input-checkbox/tests/data/tags.json +0 -0
  143. /package/{components → app/components}/forms/input-radio/MultipleRadiobuttons.vue +0 -0
  144. /package/{components → app/components}/forms/input-radio/tests/MultipleRadioButtons.spec.ts +0 -0
  145. /package/{components → app/components}/forms/input-radio/tests/data/tags.json +0 -0
  146. /package/{components → app/components}/forms/ui/FormField.vue +0 -0
  147. /package/{components → app/components}/forms/ui/FormWrapper.vue +0 -0
  148. /package/{components → app/components}/utils/dark-mode-switcher/DarkModeSwitcher.vue +0 -0
  149. /package/{composables → app/composables}/useApiRequest.ts +0 -0
  150. /package/{composables → app/composables}/useColourScheme.ts +0 -0
  151. /package/{composables → app/composables}/useErrorMessages.ts +0 -0
  152. /package/{composables → app/composables}/useFormControl.ts +0 -0
  153. /package/{composables → app/composables}/useSleep.ts +0 -0
  154. /package/{composables → app/composables}/useStyleClassPassthrough.ts +0 -0
  155. /package/{composables → app/composables}/useZodValidation.ts +0 -0
  156. /package/{types → app/types}/types.forms.ts +0 -0
  157. /package/{types → app/types}/types.zodFormControl.ts +0 -0
@@ -1,48 +0,0 @@
1
- :root {
2
- .normal {
3
- --input-row-margin-block-start: 0;
4
-
5
- /* --element-decorator-background-color: var(--theme-form-input-bg-normal); */
6
- --element-decorator-background-color: color-mix(in srgb, currentColor 5%, transparent);
7
-
8
- --element-decorator-margin-block-start: 0.5rem;
9
- --element-decorator-padding-inline: 1rem;
10
-
11
- --element-decorator-outline-default: 1px solid color-mix(in srgb, var(--theme-form-input-border) 5%, transparent);
12
- --element-decorator-outline-active: 1px solid var(--theme-form-input-border);
13
-
14
- /* Border styles */
15
- --element-decorator-border-top-left-radius: var(--form-input-border-radius);
16
- --element-decorator-border-top-right-radius: var(--form-input-border-radius);
17
- --element-decorator-border-bottom-right-radius: var(--form-input-border-radius);
18
- --element-decorator-border-bottom-left-radius: var(--form-input-border-radius);
19
-
20
- --element-decorator-border-top-default: var(--form-element-border-width) solid var(--theme-form-input-border);
21
- --element-decorator-border-right-default: var(--form-element-border-width) solid var(--theme-form-input-border);
22
- --element-decorator-border-bottom-default: var(--form-element-border-width) solid var(--theme-form-input-border);
23
- --element-decorator-border-left-default: var(--form-element-border-width) solid var(--theme-form-input-border);
24
-
25
- --input-placeholder-color: light-dark(var(--gray-7), var(--gray-5));
26
- --input-placeholder-font-size: var(--step-5);
27
- --input-placeholder-font-style: italic;
28
- --input-placeholder-font-weight: normal;
29
- --input-placeholder-line-height: 1;
30
-
31
- /* Label vars */
32
- --_label-text-color: var(--theme-form-input-text-label-color-underlined);
33
- --_label-text-margin-block: 0.8rem;
34
- --_label-text-size: var(--step-5);
35
- --_label-text-weight: normal;
36
- --_label-text-line-height: 1.5;
37
-
38
- .error {
39
- --element-decorator-border-bottom-right-radius: 0;
40
- --element-decorator-border-bottom-left-radius: 0;
41
-
42
- --element-decorator-border-top-default: var(--form-element-border-width) solid var(--theme-error-surface);
43
- --element-decorator-border-right-default: var(--form-element-border-width) solid var(--theme-error-surface);
44
- --element-decorator-border-bottom-default: var(--form-element-border-width) solid var(--theme-error-surface);
45
- --element-decorator-border-left-default: var(--form-element-border-width) solid var(--theme-error-surface);
46
- }
47
- }
48
- }
@@ -1,2 +0,0 @@
1
- @import './_normal';
2
- @import './_underlined';
@@ -1,5 +0,0 @@
1
- :root {
2
- --font-size: 1.6rem;
3
- --line-height: calc((var(--font-size) * 2) - 1rem);
4
- --font-family: futura-pt, Seravek, 'Gill Sans Nova', Ubuntu, Calibri, 'DejaVu Sans', source-sans-pro, sans-serif;
5
- }
@@ -1,5 +0,0 @@
1
- @import './_head.css';
2
- @import './utility-classes/';
3
- @import './a11y/';
4
- @import './variables/';
5
- @import './typography/';
@@ -1,2 +0,0 @@
1
- @import './utility-classes/';
2
- @import './vars/';
@@ -1,192 +0,0 @@
1
- :root {
2
- .heading-1 {
3
- font-size: var(--step-8);
4
- font-weight: bold;
5
- line-height: 1.3;
6
- }
7
-
8
- .heading-2 {
9
- font-size: var(--step-7);
10
- font-weight: bold;
11
- line-height: 1.3;
12
- }
13
-
14
- .heading-3 {
15
- font-size: var(--step-6);
16
- font-weight: bold;
17
- line-height: 1.3;
18
- }
19
-
20
- .heading-4 {
21
- font-size: var(--step-5);
22
- font-weight: bold;
23
- line-height: 1.3;
24
- }
25
-
26
- .heading-5 {
27
- font-size: var(--step-4);
28
- font-weight: bold;
29
- line-height: 1.3;
30
- }
31
-
32
- .heading-6 {
33
- font-size: var(--step-3);
34
- font-weight: bold;
35
- line-height: 1.3;
36
- }
37
-
38
- /* Body text */
39
-
40
- .body-large {
41
- font-size: var(--step-6);
42
- font-weight: normal;
43
- line-height: 1.5;
44
- }
45
-
46
- .body-medium {
47
- font-size: var(--step-5);
48
- font-weight: normal;
49
- line-height: 1.5;
50
- }
51
-
52
- .body-normal {
53
- font-size: var(--step-4);
54
- font-weight: normal;
55
- line-height: 1.5;
56
- }
57
-
58
- .body-small {
59
- font-size: var(--step--0);
60
- font-weight: normal;
61
- line-height: 1.5;
62
- }
63
-
64
- .body-xsmall {
65
- font-size: var(--step-2);
66
- font-weight: normal;
67
- line-height: 1.5;
68
- }
69
-
70
- .body-large-semibold {
71
- font-size: var(--step-6);
72
- font-weight: 500;
73
- line-height: 1.5;
74
- }
75
-
76
- .body-medium-semibold {
77
- font-size: var(--step-5);
78
- font-weight: 500;
79
- line-height: 1.5;
80
- }
81
-
82
- .body-normal-semibold {
83
- font-size: var(--step-4);
84
- font-weight: 500;
85
- line-height: 1.5;
86
- }
87
-
88
- .body-small-semibold {
89
- font-size: var(--step-3);
90
- font-weight: 500;
91
- line-height: 1.5;
92
- }
93
-
94
- .body-xsmall-semibold {
95
- font-size: var(--step-2);
96
- font-weight: 500;
97
- line-height: 1.5;
98
- }
99
-
100
- .body-large-bold {
101
- font-size: var(--step-6);
102
- font-weight: bold;
103
- line-height: 1.5;
104
- }
105
-
106
- .body-medium-bold {
107
- font-size: var(--step-5);
108
- font-weight: bold;
109
- line-height: 1.5;
110
- }
111
-
112
- .body-normal-bold {
113
- font-size: var(--step-4);
114
- font-weight: bold;
115
- line-height: 1.5;
116
- }
117
-
118
- .body-small-bold {
119
- font-size: var(--step-3);
120
- font-weight: bold;
121
- line-height: 1.5;
122
- }
123
-
124
- .body-xsmall-bold {
125
- font-size: var(--step-2);
126
- font-weight: bold;
127
- line-height: 1.5;
128
- }
129
-
130
- /* Links */
131
-
132
- .link-large {
133
- color: var(--theme-link-default);
134
- font-size: var(--step-6);
135
- font-weight: 600;
136
- line-height: 1.5;
137
- text-decoration: underline;
138
-
139
- &:visited {
140
- color: var(--theme-link-default);
141
- }
142
- }
143
-
144
- .link-medium {
145
- color: var(--theme-link-default);
146
- font-size: var(--step-5);
147
- font-weight: 600;
148
- line-height: 1.5;
149
- text-decoration: underline;
150
-
151
- &:visited {
152
- color: var(--theme-link-default);
153
- }
154
- }
155
-
156
- .link-normal {
157
- color: var(--theme-link-default);
158
- font-size: var(--step-4);
159
- font-weight: 600;
160
- line-height: 1.5;
161
- text-decoration: underline;
162
-
163
- &:visited,
164
- &:active {
165
- color: var(--theme-link-default);
166
- }
167
- }
168
-
169
- .link-small {
170
- color: var(--theme-link-default);
171
- font-size: var(--step-3);
172
- font-weight: 600;
173
- line-height: 1.5;
174
- text-decoration: underline;
175
-
176
- &:visited {
177
- color: var(--theme-link-default);
178
- }
179
- }
180
-
181
- .link-xsmall {
182
- color: var(--theme-link-default);
183
- font-size: var(--step-2);
184
- font-weight: 600;
185
- line-height: 1.5;
186
- text-decoration: underline;
187
-
188
- &:visited {
189
- color: var(--theme-link-default);
190
- }
191
- }
192
- }
@@ -1,29 +0,0 @@
1
- :root {
2
- .fvs-wght-100 {
3
- font-variation-settings: 'wght' 100;
4
- }
5
- .fvs-wght-200 {
6
- font-variation-settings: 'wght' 200;
7
- }
8
- .fvs-wght-300 {
9
- font-variation-settings: 'wght' 300;
10
- }
11
- .fvs-wght-400 {
12
- font-variation-settings: 'wght' 400;
13
- }
14
- .fvs-wght-500 {
15
- font-variation-settings: 'wght' 500;
16
- }
17
- .fvs-wght-600 {
18
- font-variation-settings: 'wght' 600;
19
- }
20
- .fvs-wght-700 {
21
- font-variation-settings: 'wght' 700;
22
- }
23
- .fvs-wght-800 {
24
- font-variation-settings: 'wght' 800;
25
- }
26
- .fvs-wght-900 {
27
- font-variation-settings: 'wght' 900;
28
- }
29
- }
@@ -1,41 +0,0 @@
1
- :root {
2
- /* By numeric step */
3
- .wght-100 {
4
- font-weight: 100;
5
- }
6
- .wght-200 {
7
- font-weight: 200;
8
- }
9
- .wght-300 {
10
- font-weight: 300;
11
- }
12
- .wght-400 {
13
- font-weight: 400;
14
- }
15
- .wght-500 {
16
- font-weight: 500;
17
- }
18
- .wght-600 {
19
- font-weight: 600;
20
- }
21
- .wght-700 {
22
- font-weight: 700;
23
- }
24
- .wght-800 {
25
- font-weight: 800;
26
- }
27
- .wght-900 {
28
- font-weight: 900;
29
- }
30
-
31
- /* By named weight */
32
- .light {
33
- font-weight: light;
34
- }
35
- .normal {
36
- font-weight: normal;
37
- }
38
- .bold {
39
- font-weight: bold;
40
- }
41
- }
@@ -1,334 +0,0 @@
1
- /* Margin */
2
- .mi-auto {
3
- margin-inline: auto;
4
- }
5
- .mis-auto {
6
- margin-inline-start: auto;
7
- }
8
- .mie-auto {
9
- margin-inline-end: auto;
10
- }
11
- .mb-auto {
12
- margin-block: auto;
13
- }
14
- .mbs-auto {
15
- margin-block-start: auto;
16
- }
17
- .mbe-auto {
18
- margin-block-end: auto;
19
- }
20
-
21
- .mb-0 {
22
- margin-block: 0;
23
- }
24
- .mi-0 {
25
- margin-inline: 0;
26
- }
27
-
28
- .m-0 {
29
- margin: 0;
30
- }
31
- .mbs-0 {
32
- margin-block-start: 0;
33
- }
34
- .mbe-0 {
35
- margin-block-end: 0;
36
- }
37
- .mis-0 {
38
- margin-inline-start: 0;
39
- }
40
- .mie-0 {
41
- margin-inline-end: 0;
42
- }
43
- .mi-0 {
44
- margin-inline: 0;
45
- }
46
- .mb-0 {
47
- margin-block: 0;
48
- }
49
-
50
- .m-1 {
51
- margin: 0.1rem;
52
- }
53
- .mbs-1 {
54
- margin-block-start: 0.1rem;
55
- }
56
- .mbe-1 {
57
- margin-block-end: 0.1rem;
58
- }
59
- .mis-1 {
60
- margin-inline-start: 0.1rem;
61
- }
62
- .mie-1 {
63
- margin-inline-end: 0.1rem;
64
- }
65
- .mi-1 {
66
- margin-inline: 0.1rem;
67
- }
68
- .mb-1 {
69
- margin-block: 0.1rem;
70
- }
71
-
72
- .m-2 {
73
- margin: 0.2rem;
74
- }
75
- .mbs-2 {
76
- margin-block-start: 0.2rem;
77
- }
78
- .mbe-2 {
79
- margin-block-end: 0.2rem;
80
- }
81
- .mis-2 {
82
- margin-inline-start: 0.2rem;
83
- }
84
- .mie-2 {
85
- margin-inline-end: 0.2rem;
86
- }
87
- .mi-2 {
88
- margin-inline: 0.2rem;
89
- }
90
- .mb-2 {
91
- margin-block: 0.2rem;
92
- }
93
-
94
- .m-4 {
95
- margin: 0.4rem;
96
- }
97
- .mbs-4 {
98
- margin-block-start: 0.4rem;
99
- }
100
- .mbe-4 {
101
- margin-block-end: 0.4rem;
102
- }
103
- .mis-4 {
104
- margin-inline-start: 0.4rem;
105
- }
106
- .mie-4 {
107
- margin-inline-end: 0.4rem;
108
- }
109
- .mi-4 {
110
- margin-inline: 0.4rem;
111
- }
112
- .mb-4 {
113
- margin-block: 0.4rem;
114
- }
115
-
116
- .m-6 {
117
- margin: 0.6rem;
118
- }
119
- .mbs-6 {
120
- margin-block-start: 0.6rem;
121
- }
122
- .mbe-6 {
123
- margin-block-end: 0.6rem;
124
- }
125
- .mis-6 {
126
- margin-inline-start: 0.6rem;
127
- }
128
- .mie-6 {
129
- margin-inline-end: 0.6rem;
130
- }
131
- .mi-6 {
132
- margin-inline: 0.6rem;
133
- }
134
- .mb-6 {
135
- margin-block: 0.6rem;
136
- }
137
-
138
- .m-8 {
139
- margin: 0.8rem;
140
- }
141
- .mbs-8 {
142
- margin-block-start: 0.8rem;
143
- }
144
- .mbe-8 {
145
- margin-block-end: 0.8rem;
146
- }
147
- .mis-8 {
148
- margin-inline-start: 0.8rem;
149
- }
150
- .mie-8 {
151
- margin-inline-end: 0.8rem;
152
- }
153
- .mi-8 {
154
- margin-inline: 0.8rem;
155
- }
156
- .mb-8 {
157
- margin-block: 0.8rem;
158
- }
159
-
160
- .m-10 {
161
- margin: 1rem;
162
- }
163
- .mbs-10 {
164
- margin-block-start: 1rem;
165
- }
166
- .mbe-10 {
167
- margin-block-end: 1rem;
168
- }
169
- .mis-10 {
170
- margin-inline-start: 1rem;
171
- }
172
- .mie-10 {
173
- margin-inline-end: 1rem;
174
- }
175
- .mi-10 {
176
- margin-inline: 1rem;
177
- }
178
- .mb-10 {
179
- margin-block: 1rem;
180
- }
181
-
182
- .m-12 {
183
- margin: 1.2rem;
184
- }
185
- .mbs-12 {
186
- margin-block-start: 1.2rem;
187
- }
188
- .mbe-12 {
189
- margin-block-end: 1.2rem;
190
- }
191
- .mis-12 {
192
- margin-inline-start: 1.2rem;
193
- }
194
- .mie-12 {
195
- margin-inline-end: 1.2rem;
196
- }
197
- .mi-12 {
198
- margin-inline: 1.2rem;
199
- }
200
- .mb-12 {
201
- margin-block: 1.2rem;
202
- }
203
-
204
- .m-18 {
205
- margin: 1.8rem;
206
- }
207
- .mbs-18 {
208
- margin-block-start: 1.8rem;
209
- }
210
- .mbe-18 {
211
- margin-block-end: 1.8rem;
212
- }
213
- .mis-18 {
214
- margin-inline-start: 1.8rem;
215
- }
216
- .mie-18 {
217
- margin-inline-end: 1.8rem;
218
- }
219
- .mi-18 {
220
- margin-inline: 1.8rem;
221
- }
222
- .mb-18 {
223
- margin-block: 1.8rem;
224
- }
225
-
226
- .m-20 {
227
- margin: 2rem;
228
- }
229
- .mbs-20 {
230
- margin-block-start: 2rem;
231
- }
232
- .mbe-20 {
233
- margin-block-end: 2rem;
234
- }
235
- .mis-20 {
236
- margin-inline-start: 2rem;
237
- }
238
- .mie-20 {
239
- margin-inline-end: 2rem;
240
- }
241
- .mi-20 {
242
- margin-inline: 2rem;
243
- }
244
- .mb-20 {
245
- margin-block: 2rem;
246
- }
247
-
248
- .m-24 {
249
- margin: 2.4rem;
250
- }
251
- .mbs-24 {
252
- margin-block-start: 2.4rem;
253
- }
254
- .mbe-24 {
255
- margin-block-end: 2.4rem;
256
- }
257
- .mis-24 {
258
- margin-inline-start: 2.4rem;
259
- }
260
- .mie-24 {
261
- margin-inline-end: 2.4rem;
262
- }
263
- .mi-24 {
264
- margin-inline: 2.4rem;
265
- }
266
- .mb-24 {
267
- margin-block: 2.4rem;
268
- }
269
-
270
- .m-32 {
271
- margin: 3.2rem;
272
- }
273
- .mbs-32 {
274
- margin-block-start: 3.2rem;
275
- }
276
- .mbe-32 {
277
- margin-block-end: 3.2rem;
278
- }
279
- .mis-32 {
280
- margin-inline-start: 3.2rem;
281
- }
282
- .mie-32 {
283
- margin-inline-end: 3.2rem;
284
- }
285
- .mi-32 {
286
- margin-inline: 3.2rem;
287
- }
288
- .mb-32 {
289
- margin-block: 3.2rem;
290
- }
291
-
292
- .m-40 {
293
- margin: 4rem;
294
- }
295
- .mbs-40 {
296
- margin-block-start: 4rem;
297
- }
298
- .mbe-40 {
299
- margin-block-end: 4rem;
300
- }
301
- .mis-40 {
302
- margin-inline-start: 4rem;
303
- }
304
- .mie-40 {
305
- margin-inline-end: 4rem;
306
- }
307
- .mi-40 {
308
- margin-inline: 4rem;
309
- }
310
- .mb-40 {
311
- margin-block: 4rem;
312
- }
313
-
314
- .m-60 {
315
- margin: 6rem;
316
- }
317
- .mbs-60 {
318
- margin-block-start: 6rem;
319
- }
320
- .mbe-60 {
321
- margin-block-end: 6rem;
322
- }
323
- .mis-60 {
324
- margin-inline-start: 6rem;
325
- }
326
- .mie-60 {
327
- margin-inline-end: 6rem;
328
- }
329
- .mi-60 {
330
- margin-inline: 6rem;
331
- }
332
- .mb-60 {
333
- margin-block: 6rem;
334
- }