5htp-core 0.6.0-6 → 0.6.0-65
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.
|
@@ -177,10 +177,10 @@
|
|
|
177
177
|
|
|
178
178
|
.apply-theme({
|
|
179
179
|
alpha: false;
|
|
180
|
-
background: #
|
|
181
|
-
foreground:
|
|
182
|
-
accent1: #
|
|
183
|
-
accent2: #
|
|
180
|
+
background: #179e50;
|
|
181
|
+
foreground: #fff;
|
|
182
|
+
accent1: #fff;
|
|
183
|
+
accent2: #fff;
|
|
184
184
|
});
|
|
185
185
|
|
|
186
186
|
&.light {
|
|
@@ -236,10 +236,10 @@
|
|
|
236
236
|
|
|
237
237
|
.apply-theme({
|
|
238
238
|
alpha: false;
|
|
239
|
-
background:
|
|
240
|
-
foreground:
|
|
241
|
-
accent1: #
|
|
242
|
-
accent2: #
|
|
239
|
+
background: #6C5DD3;
|
|
240
|
+
foreground: #fff;
|
|
241
|
+
accent1: #fff;
|
|
242
|
+
accent2: #fff;
|
|
243
243
|
});
|
|
244
244
|
|
|
245
245
|
&.light {
|
|
@@ -26,7 +26,11 @@ export default (initProps: Props) => {
|
|
|
26
26
|
- INIT
|
|
27
27
|
----------------------------------*/
|
|
28
28
|
|
|
29
|
-
const [{ title, onChange }, { errors, required, ...props }] = useMantineInput<Props>(initProps);
|
|
29
|
+
const [{ title, onChange, value }, { errors, required, ...props }] = useMantineInput<Props>(initProps);
|
|
30
|
+
|
|
31
|
+
if (initProps.title === 'Exact match')
|
|
32
|
+
console.log("Checkbox", initProps, props);
|
|
33
|
+
|
|
30
34
|
|
|
31
35
|
/*----------------------------------
|
|
32
36
|
- RENDER
|
|
@@ -36,6 +40,7 @@ export default (initProps: Props) => {
|
|
|
36
40
|
label={title}
|
|
37
41
|
error={errors?.join(', ')}
|
|
38
42
|
required={required}
|
|
43
|
+
checked={value}
|
|
39
44
|
{...props}
|
|
40
45
|
onChange={e => onChange?.(e.target.checked)}
|
|
41
46
|
/>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "5htp-core",
|
|
3
3
|
"description": "Convenient TypeScript framework designed for Performance and Productivity.",
|
|
4
|
-
"version": "0.6.0-
|
|
4
|
+
"version": "0.6.0-65",
|
|
5
5
|
"author": "Gaetan Le Gac (https://github.com/gaetanlegac)",
|
|
6
6
|
"repository": "git://github.com/gaetanlegac/5htp-core.git",
|
|
7
7
|
"license": "MIT",
|
package/types/icons.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export type TIcones = "
|
|
1
|
+
export type TIcones = "long-arrow-right"|"times"|"solid/spinner-third"|"sack-dollar"|"bell"|"bullseye"|"project-diagram"|"user-friends"|"eye"|"lock"|"comments"|"phone"|"chalkboard-teacher"|"rocket"|"chart-bar"|"planet-ringed"|"user-circle"|"brands/linkedin"|"crosshairs"|"plus-circle"|"comments-alt"|"arrow-right"|"user-shield"|"shield-alt"|"chart-line"|"money-bill-wave"|"star"|"link"|"file-alt"|"long-arrow-left"|"at"|"search"|"lightbulb"|"magnet"|"calendar-alt"|"paper-plane"|"angle-up"|"angle-down"|"user-plus"|"mouse-pointer"|"thumbs-up"|"dollar-sign"|"key"|"user"|"envelope"|"plus"|"solid/crown"|"brands/discord"|"pen"|"file"|"binoculars"|"times-circle"|"info-circle"|"check-circle"|"exclamation-circle"|"check"|"arrow-left"|"meh-rolling-eyes"|"trash"|"solid/star"|"solid/star-half-alt"|"regular/star"|"chevron-left"|"cog"|"power-off"|"usd-circle"|"users"|"home"|"home-alt"|"trophy"|"bars"|"question-circle"|"plane-departure"|"brands/whatsapp"|"wind"|"play"|"minus-circle"|"external-link"|"map-marker-alt"|"clock"|"arrow-to-bottom"|"ellipsis-h"|"exclamation-triangle"|"magic"|"globe"|"industry"|"briefcase"|"map-marker"|"calendar"|"fire"|"building"|"graduation-cap"|"unlink"|"bold"|"italic"|"underline"|"strikethrough"|"subscript"|"superscript"|"code"|"font"|"empty-set"|"horizontal-rule"|"page-break"|"image"|"table"|"poll"|"columns"|"sticky-note"|"caret-right"|"align-left"|"align-center"|"align-right"|"align-justify"|"indent"|"outdent"|"list-ul"|"check-square"|"h1"|"h2"|"h3"|"h4"|"list-ol"|"paragraph"|"quote-left"|"solid/magic"
|