1mpacto-react-ui 0.2.0-beta.20 → 0.2.0-beta.21
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/assets/_colors.scss +40 -0
- package/dist/assets/_typography.scss +286 -0
- package/dist/assets/colors.css +20 -0
- package/dist/assets/core.css +1 -1
- package/dist/assets/fontfamily.css +1 -1
- package/dist/assets/fonts/PlusJakartaSans-Italic-VariableFont_wght.ttf +0 -0
- package/dist/assets/fonts/PlusJakartaSans-VariableFont_wght.ttf +0 -0
- package/dist/assets/style.css +1 -1
- package/dist/assets/typography.css +78 -0
- package/dist/index.cjs +104 -92
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +13719 -13002
- package/dist/index.mjs.map +1 -1
- package/dist/package.json.d.ts +1 -1
- package/dist/src/components/Input/InputInnerLabel.d.ts +4 -0
- package/dist/src/components/Input/InputInnerLabel.stories.d.ts +31 -0
- package/dist/src/components/RadioCheckbox/RadioCheckbox.stories.d.ts +189 -7
- package/dist/src/components/SelectDropdownContainer/styleConfig.d.ts +2 -0
- package/dist/src/components/Textarea/TextareaInnerLabel.d.ts +4 -0
- package/dist/src/components/Textarea/TextareaInnerLabel.stories.d.ts +25 -0
- package/dist/src/components/TimeRange/TimeRange.d.ts +3 -0
- package/dist/src/components/TimeRange/TimeRange.stories.d.ts +19 -0
- package/dist/src/components/index.d.ts +7 -3
- package/dist/src/config/components/font.d.ts +6 -0
- package/dist/src/config/tailwind/typography.d.ts +1 -0
- package/dist/src/hooks/index.d.ts +5 -3
- package/dist/src/hooks/useCountdown.d.ts +6 -3
- package/dist/src/hooks/useOtpInput.d.ts +42 -0
- package/dist/src/interfaces/components/Badges/index.d.ts +2 -1
- package/dist/src/interfaces/components/Breadcrumbs/index.d.ts +3 -2
- package/dist/src/interfaces/components/Button/index.d.ts +2 -2
- package/dist/src/interfaces/components/Chips/index.d.ts +2 -1
- package/dist/src/interfaces/components/Input/index.d.ts +13 -0
- package/dist/src/interfaces/components/Popover/index.d.ts +3 -1
- package/dist/src/interfaces/components/RadioCheckbox/RadioCheckbox.d.ts +3 -2
- package/dist/src/interfaces/components/RadioCheckbox/RadioCheckboxLabel.d.ts +2 -1
- package/dist/src/interfaces/components/SelectDropdownContainer/index.d.ts +1 -1
- package/dist/src/interfaces/components/Sidebar/index.d.ts +1 -1
- package/dist/src/interfaces/components/Switch/index.d.ts +1 -1
- package/dist/src/interfaces/components/Table/index.d.ts +8 -1
- package/dist/src/interfaces/components/Tabs/index.d.ts +1 -1
- package/dist/src/interfaces/components/Textarea/index.d.ts +13 -0
- package/dist/src/interfaces/components/TimeRange/index.d.ts +28 -0
- package/package.json +1 -1
|
@@ -155,4 +155,82 @@
|
|
|
155
155
|
--text-laba-subtitle-sr: 10px;
|
|
156
156
|
--text-laba-subtitle-sr--line-height: 12px;
|
|
157
157
|
--text-laba-subtitle-sr--font-weight: 400;
|
|
158
|
+
--text-bill-h1: 60px;
|
|
159
|
+
--text-bill-h1--line-height: 72px;
|
|
160
|
+
--text-bill-h1--font-weight: 700;
|
|
161
|
+
--text-bill-h2: 48px;
|
|
162
|
+
--text-bill-h2--line-height: 58px;
|
|
163
|
+
--text-bill-h2--font-weight: 700;
|
|
164
|
+
--text-bill-h3: 40px;
|
|
165
|
+
--text-bill-h3--line-height: 58px;
|
|
166
|
+
--text-bill-h3--font-weight: 700;
|
|
167
|
+
--text-bill-h4: 30px;
|
|
168
|
+
--text-bill-h4--line-height: 38px;
|
|
169
|
+
--text-bill-h4--font-weight: 700;
|
|
170
|
+
--text-bill-h5: 28px;
|
|
171
|
+
--text-bill-h5--line-height: 40px;
|
|
172
|
+
--text-bill-h5--font-weight: 600;
|
|
173
|
+
--text-bill-h6: 24px;
|
|
174
|
+
--text-bill-h6--line-height: 30px;
|
|
175
|
+
--text-bill-h6--font-weight: 600;
|
|
176
|
+
--text-bill-body-lr: 18px;
|
|
177
|
+
--text-bill-body-lr--line-height: 26px;
|
|
178
|
+
--text-bill-body-lr--font-weight: 400;
|
|
179
|
+
--text-bill-body-lm: 18px;
|
|
180
|
+
--text-bill-body-lm--line-height: 26px;
|
|
181
|
+
--text-bill-body-lm--font-weight: 500;
|
|
182
|
+
--text-bill-body-lsm: 18px;
|
|
183
|
+
--text-bill-body-lsm--line-height: 26px;
|
|
184
|
+
--text-bill-body-lsm--font-weight: 600;
|
|
185
|
+
--text-bill-body-blb: 18px;
|
|
186
|
+
--text-bill-body-blb--line-height: 26px;
|
|
187
|
+
--text-bill-body-blb--font-weight: 700;
|
|
188
|
+
--text-bill-body-mr: 16px;
|
|
189
|
+
--text-bill-body-mr--line-height: 24px;
|
|
190
|
+
--text-bill-body-mr--font-weight: 400;
|
|
191
|
+
--text-bill-body-mm: 16px;
|
|
192
|
+
--text-bill-body-mm--line-height: 24px;
|
|
193
|
+
--text-bill-body-mm--font-weight: 500;
|
|
194
|
+
--text-bill-body-msm: 16px;
|
|
195
|
+
--text-bill-body-msm--line-height: 24px;
|
|
196
|
+
--text-bill-body-msm--font-weight: 600;
|
|
197
|
+
--text-bill-body-mb: 16px;
|
|
198
|
+
--text-bill-body-mb--line-height: 24px;
|
|
199
|
+
--text-bill-body-mb--font-weight: 700;
|
|
200
|
+
--text-bill-label-r: 15px;
|
|
201
|
+
--text-bill-label-r--line-height: 26px;
|
|
202
|
+
--text-bill-label-r--font-weight: 400;
|
|
203
|
+
--text-bill-label-m: 15px;
|
|
204
|
+
--text-bill-label-m--line-height: 26px;
|
|
205
|
+
--text-bill-label-m--font-weight: 500;
|
|
206
|
+
--text-bill-label-sm: 15px;
|
|
207
|
+
--text-bill-label-sm--line-height: 26px;
|
|
208
|
+
--text-bill-label-sm--font-weight: 600;
|
|
209
|
+
--text-bill-label-b: 15px;
|
|
210
|
+
--text-bill-label-b--line-height: 26px;
|
|
211
|
+
--text-bill-label-b--font-weight: 700;
|
|
212
|
+
--text-bill-body-sr: 14px;
|
|
213
|
+
--text-bill-body-sr--line-height: 22px;
|
|
214
|
+
--text-bill-body-sr--font-weight: 400;
|
|
215
|
+
--text-bill-body-sm: 14px;
|
|
216
|
+
--text-bill-body-sm--line-height: 22px;
|
|
217
|
+
--text-bill-body-sm--font-weight: 500;
|
|
218
|
+
--text-bill-body-ssm: 14px;
|
|
219
|
+
--text-bill-body-ssm--line-height: 22px;
|
|
220
|
+
--text-bill-body-ssm--font-weight: 600;
|
|
221
|
+
--text-bill-body-sb: 14px;
|
|
222
|
+
--text-bill-body-sb--line-height: 22px;
|
|
223
|
+
--text-bill-body-sb--font-weight: 700;
|
|
224
|
+
--text-bill-body-esr: 12px;
|
|
225
|
+
--text-bill-body-esr--line-height: 20px;
|
|
226
|
+
--text-bill-body-esr--font-weight: 400;
|
|
227
|
+
--text-bill-body-ems: 12px;
|
|
228
|
+
--text-bill-body-ems--line-height: 20px;
|
|
229
|
+
--text-bill-body-ems--font-weight: 500;
|
|
230
|
+
--text-bill-body-essm: 12px;
|
|
231
|
+
--text-bill-body-essm--line-height: 20px;
|
|
232
|
+
--text-bill-body-essm--font-weight: 600;
|
|
233
|
+
--text-bill-body-esb: 12px;
|
|
234
|
+
--text-bill-body-esb--line-height: 20px;
|
|
235
|
+
--text-bill-body-esb--font-weight: 700;
|
|
158
236
|
}
|