@delightui/components 0.1.86 → 0.1.89
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/components/atoms/Checkbox/Checkbox.presenter.d.ts +104 -104
- package/dist/cjs/components/atoms/CheckboxItem/CheckboxItem.presenter.d.ts +106 -106
- package/dist/cjs/components/atoms/Input/Input.presenter.d.ts +110 -110
- package/dist/cjs/components/atoms/Password/Password.presenter.d.ts +114 -114
- package/dist/cjs/components/atoms/RadioButtonItem/RadioButtonItem.presenter.d.ts +105 -105
- package/dist/cjs/components/atoms/Slider/Slider.presenter.d.ts +1 -2
- package/dist/cjs/components/atoms/TextArea/TextArea.presenter.d.ts +95 -96
- package/dist/cjs/components/atoms/Toggle/Toggle.presenter.d.ts +107 -107
- package/dist/cjs/components/atoms/ToggleButton/ToggleButton.presenter.d.ts +81 -82
- package/dist/cjs/components/molecules/Select/Select.presenter.d.ts +85 -86
- package/dist/cjs/library.css +7 -12
- package/dist/cjs/library.js +3 -3
- package/dist/cjs/library.js.map +1 -1
- package/dist/esm/components/atoms/Checkbox/Checkbox.presenter.d.ts +104 -104
- package/dist/esm/components/atoms/CheckboxItem/CheckboxItem.presenter.d.ts +106 -106
- package/dist/esm/components/atoms/Input/Input.presenter.d.ts +110 -110
- package/dist/esm/components/atoms/Password/Password.presenter.d.ts +114 -114
- package/dist/esm/components/atoms/RadioButtonItem/RadioButtonItem.presenter.d.ts +105 -105
- package/dist/esm/components/atoms/Slider/Slider.presenter.d.ts +1 -2
- package/dist/esm/components/atoms/TextArea/TextArea.presenter.d.ts +95 -96
- package/dist/esm/components/atoms/Toggle/Toggle.presenter.d.ts +107 -107
- package/dist/esm/components/atoms/ToggleButton/ToggleButton.presenter.d.ts +81 -82
- package/dist/esm/components/molecules/Select/Select.presenter.d.ts +85 -86
- package/dist/esm/library.css +7 -12
- package/dist/esm/library.js +3 -3
- package/dist/esm/library.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +2 -1
|
@@ -17,117 +17,116 @@ declare const usePresenter: (props: SelectProps) => {
|
|
|
17
17
|
resetSelectedValue: () => void;
|
|
18
18
|
triggerProps: {
|
|
19
19
|
id?: string;
|
|
20
|
-
disabled?: boolean
|
|
21
|
-
required?: boolean
|
|
22
|
-
checked?: boolean
|
|
20
|
+
disabled?: boolean;
|
|
21
|
+
required?: boolean;
|
|
22
|
+
checked?: boolean;
|
|
23
23
|
value?: import("../..").FieldValue | undefined;
|
|
24
|
-
invalid?: boolean
|
|
24
|
+
invalid?: boolean;
|
|
25
25
|
onValueChange?: ((value: import("../..").FieldValue) => void) | undefined;
|
|
26
26
|
initialValue?: import("../..").FieldValue | undefined;
|
|
27
27
|
role?: import("react").AriaRole | undefined;
|
|
28
28
|
onLoad?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
29
29
|
onError?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
30
|
-
defaultChecked?: boolean | undefined
|
|
30
|
+
defaultChecked?: boolean | undefined;
|
|
31
31
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
32
|
-
suppressContentEditableWarning?: boolean | undefined
|
|
33
|
-
suppressHydrationWarning?: boolean | undefined
|
|
34
|
-
accessKey?: string | undefined
|
|
35
|
-
|
|
36
|
-
autoFocus?: boolean | undefined | undefined;
|
|
32
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
33
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
34
|
+
accessKey?: string | undefined;
|
|
35
|
+
autoFocus?: boolean | undefined;
|
|
37
36
|
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
38
|
-
contextMenu?: string | undefined
|
|
39
|
-
dir?: string | undefined
|
|
37
|
+
contextMenu?: string | undefined;
|
|
38
|
+
dir?: string | undefined;
|
|
40
39
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
slot?: string | undefined | undefined;
|
|
40
|
+
hidden?: boolean | undefined;
|
|
41
|
+
lang?: string | undefined;
|
|
42
|
+
nonce?: string | undefined;
|
|
43
|
+
slot?: string | undefined;
|
|
46
44
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
47
|
-
tabIndex?: number | undefined
|
|
48
|
-
title?: string | undefined
|
|
49
|
-
translate?: "yes" | "no" | undefined
|
|
50
|
-
radioGroup?: string | undefined
|
|
51
|
-
about?: string | undefined
|
|
52
|
-
content?: string | undefined
|
|
53
|
-
datatype?: string | undefined
|
|
45
|
+
tabIndex?: number | undefined;
|
|
46
|
+
title?: string | undefined;
|
|
47
|
+
translate?: "yes" | "no" | undefined;
|
|
48
|
+
radioGroup?: string | undefined;
|
|
49
|
+
about?: string | undefined;
|
|
50
|
+
content?: string | undefined;
|
|
51
|
+
datatype?: string | undefined;
|
|
54
52
|
inlist?: any;
|
|
55
|
-
prefix?: string | undefined
|
|
56
|
-
property?: string | undefined
|
|
57
|
-
rel?: string | undefined
|
|
58
|
-
resource?: string | undefined
|
|
59
|
-
rev?: string | undefined
|
|
60
|
-
typeof?: string | undefined
|
|
61
|
-
vocab?: string | undefined
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
53
|
+
prefix?: string | undefined;
|
|
54
|
+
property?: string | undefined;
|
|
55
|
+
rel?: string | undefined;
|
|
56
|
+
resource?: string | undefined;
|
|
57
|
+
rev?: string | undefined;
|
|
58
|
+
typeof?: string | undefined;
|
|
59
|
+
vocab?: string | undefined;
|
|
60
|
+
autoCapitalize?: string | undefined;
|
|
61
|
+
autoCorrect?: string | undefined;
|
|
62
|
+
autoSave?: string | undefined;
|
|
63
|
+
color?: string | undefined;
|
|
64
|
+
itemProp?: string | undefined;
|
|
65
|
+
itemScope?: boolean | undefined;
|
|
66
|
+
itemType?: string | undefined;
|
|
67
|
+
itemID?: string | undefined;
|
|
68
|
+
itemRef?: string | undefined;
|
|
69
|
+
results?: number | undefined;
|
|
70
|
+
security?: string | undefined;
|
|
71
|
+
unselectable?: "on" | "off" | undefined;
|
|
72
|
+
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
73
|
+
is?: string | undefined;
|
|
74
|
+
"aria-activedescendant"?: string | undefined;
|
|
76
75
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
77
|
-
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined
|
|
78
|
-
"aria-braillelabel"?: string | undefined
|
|
79
|
-
"aria-brailleroledescription"?: string | undefined
|
|
76
|
+
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
|
|
77
|
+
"aria-braillelabel"?: string | undefined;
|
|
78
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
80
79
|
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
81
|
-
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined
|
|
82
|
-
"aria-colcount"?: number | undefined
|
|
83
|
-
"aria-colindex"?: number | undefined
|
|
84
|
-
"aria-colindextext"?: string | undefined
|
|
85
|
-
"aria-colspan"?: number | undefined
|
|
86
|
-
"aria-controls"?: string | undefined
|
|
87
|
-
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined
|
|
88
|
-
"aria-describedby"?: string | undefined
|
|
89
|
-
"aria-description"?: string | undefined
|
|
90
|
-
"aria-details"?: string | undefined
|
|
80
|
+
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
81
|
+
"aria-colcount"?: number | undefined;
|
|
82
|
+
"aria-colindex"?: number | undefined;
|
|
83
|
+
"aria-colindextext"?: string | undefined;
|
|
84
|
+
"aria-colspan"?: number | undefined;
|
|
85
|
+
"aria-controls"?: string | undefined;
|
|
86
|
+
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
|
|
87
|
+
"aria-describedby"?: string | undefined;
|
|
88
|
+
"aria-description"?: string | undefined;
|
|
89
|
+
"aria-details"?: string | undefined;
|
|
91
90
|
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
92
|
-
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined
|
|
93
|
-
"aria-errormessage"?: string | undefined
|
|
91
|
+
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
|
|
92
|
+
"aria-errormessage"?: string | undefined;
|
|
94
93
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
95
|
-
"aria-flowto"?: string | undefined
|
|
94
|
+
"aria-flowto"?: string | undefined;
|
|
96
95
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
97
|
-
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined
|
|
96
|
+
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
|
|
98
97
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
99
|
-
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined
|
|
100
|
-
"aria-keyshortcuts"?: string | undefined
|
|
101
|
-
"aria-label"?: string | undefined
|
|
102
|
-
"aria-labelledby"?: string | undefined
|
|
103
|
-
"aria-level"?: number | undefined
|
|
104
|
-
"aria-live"?: "off" | "assertive" | "polite" | undefined
|
|
98
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
99
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
100
|
+
"aria-label"?: string | undefined;
|
|
101
|
+
"aria-labelledby"?: string | undefined;
|
|
102
|
+
"aria-level"?: number | undefined;
|
|
103
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
105
104
|
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
106
105
|
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
107
106
|
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
108
|
-
"aria-orientation"?: "horizontal" | "vertical" | undefined
|
|
109
|
-
"aria-owns"?: string | undefined
|
|
110
|
-
"aria-placeholder"?: string | undefined
|
|
111
|
-
"aria-posinset"?: number | undefined
|
|
112
|
-
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined
|
|
107
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
108
|
+
"aria-owns"?: string | undefined;
|
|
109
|
+
"aria-placeholder"?: string | undefined;
|
|
110
|
+
"aria-posinset"?: number | undefined;
|
|
111
|
+
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
113
112
|
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
114
|
-
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined
|
|
113
|
+
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
|
|
115
114
|
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
116
|
-
"aria-roledescription"?: string | undefined
|
|
117
|
-
"aria-rowcount"?: number | undefined
|
|
118
|
-
"aria-rowindex"?: number | undefined
|
|
119
|
-
"aria-rowindextext"?: string | undefined
|
|
120
|
-
"aria-rowspan"?: number | undefined
|
|
115
|
+
"aria-roledescription"?: string | undefined;
|
|
116
|
+
"aria-rowcount"?: number | undefined;
|
|
117
|
+
"aria-rowindex"?: number | undefined;
|
|
118
|
+
"aria-rowindextext"?: string | undefined;
|
|
119
|
+
"aria-rowspan"?: number | undefined;
|
|
121
120
|
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
122
|
-
"aria-setsize"?: number | undefined
|
|
123
|
-
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined
|
|
124
|
-
"aria-valuemax"?: number | undefined
|
|
125
|
-
"aria-valuemin"?: number | undefined
|
|
126
|
-
"aria-valuenow"?: number | undefined
|
|
127
|
-
"aria-valuetext"?: string | undefined
|
|
121
|
+
"aria-setsize"?: number | undefined;
|
|
122
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
123
|
+
"aria-valuemax"?: number | undefined;
|
|
124
|
+
"aria-valuemin"?: number | undefined;
|
|
125
|
+
"aria-valuenow"?: number | undefined;
|
|
126
|
+
"aria-valuetext"?: string | undefined;
|
|
128
127
|
dangerouslySetInnerHTML?: {
|
|
129
128
|
__html: string | TrustedHTML;
|
|
130
|
-
} | undefined
|
|
129
|
+
} | undefined;
|
|
131
130
|
onCopy?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
|
132
131
|
onCopyCapture?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
|
133
132
|
onCut?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
package/dist/cjs/library.css
CHANGED
|
@@ -4384,7 +4384,13 @@ span.flatpickr-weekday {
|
|
|
4384
4384
|
--modal-color: var(--slide-out-panel-color);
|
|
4385
4385
|
--modal-content-height: 100%;
|
|
4386
4386
|
}
|
|
4387
|
-
|
|
4387
|
+
.SlideOutPanel-module_slideOutPanel__eBr9a .SlideOutPanel-module_form__lv6bn {
|
|
4388
|
+
height: 100%;
|
|
4389
|
+
width: 100%;
|
|
4390
|
+
min-height: 0;
|
|
4391
|
+
display: flex;
|
|
4392
|
+
flex-direction: column;
|
|
4393
|
+
}
|
|
4388
4394
|
.SlideOutPanel-module_slideOutPanel--right__I8eTm {
|
|
4389
4395
|
top: 0;
|
|
4390
4396
|
right: -100%;
|
|
@@ -4392,16 +4398,13 @@ span.flatpickr-weekday {
|
|
|
4392
4398
|
left: initial;
|
|
4393
4399
|
height: 100vh;
|
|
4394
4400
|
}
|
|
4395
|
-
|
|
4396
4401
|
.SlideOutPanel-module_slideOutPanel--right__I8eTm.SlideOutPanel-module_open__Q-ONw {
|
|
4397
4402
|
right: 0;
|
|
4398
4403
|
opacity: 1;
|
|
4399
4404
|
}
|
|
4400
|
-
|
|
4401
4405
|
.SlideOutPanel-module_slideOutPanel--right__I8eTm.SlideOutPanel-module_slideOutPanel--small__FNO8Q, .SlideOutPanel-module_slideOutPanel--right__I8eTm.SlideOutPanel-module_slideOutPanel--medium__9-tzL, .SlideOutPanel-module_slideOutPanel--right__I8eTm.SlideOutPanel-module_slideOutPanel--large__7RHyd {
|
|
4402
4406
|
width: var(--slide-out-panel-width);
|
|
4403
4407
|
}
|
|
4404
|
-
|
|
4405
4408
|
.SlideOutPanel-module_slideOutPanel--left__oBPI2 {
|
|
4406
4409
|
top: 0;
|
|
4407
4410
|
right: auto;
|
|
@@ -4409,16 +4412,13 @@ span.flatpickr-weekday {
|
|
|
4409
4412
|
left: -100%;
|
|
4410
4413
|
height: 100vh;
|
|
4411
4414
|
}
|
|
4412
|
-
|
|
4413
4415
|
.SlideOutPanel-module_slideOutPanel--left__oBPI2.SlideOutPanel-module_open__Q-ONw {
|
|
4414
4416
|
left: 0;
|
|
4415
4417
|
opacity: 1;
|
|
4416
4418
|
}
|
|
4417
|
-
|
|
4418
4419
|
.SlideOutPanel-module_slideOutPanel--left__oBPI2.SlideOutPanel-module_slideOutPanel--small__FNO8Q, .SlideOutPanel-module_slideOutPanel--left__oBPI2.SlideOutPanel-module_slideOutPanel--medium__9-tzL, .SlideOutPanel-module_slideOutPanel--left__oBPI2.SlideOutPanel-module_slideOutPanel--large__7RHyd {
|
|
4419
4420
|
width: var(--slide-out-panel-width);
|
|
4420
4421
|
}
|
|
4421
|
-
|
|
4422
4422
|
.SlideOutPanel-module_slideOutPanel--top__4e54e {
|
|
4423
4423
|
top: -100%;
|
|
4424
4424
|
left: 0;
|
|
@@ -4426,16 +4426,13 @@ span.flatpickr-weekday {
|
|
|
4426
4426
|
bottom: initial;
|
|
4427
4427
|
width: 100vw;
|
|
4428
4428
|
}
|
|
4429
|
-
|
|
4430
4429
|
.SlideOutPanel-module_slideOutPanel--top__4e54e.SlideOutPanel-module_open__Q-ONw {
|
|
4431
4430
|
top: 0;
|
|
4432
4431
|
opacity: 1;
|
|
4433
4432
|
}
|
|
4434
|
-
|
|
4435
4433
|
.SlideOutPanel-module_slideOutPanel--top__4e54e.SlideOutPanel-module_slideOutPanel--small__FNO8Q, .SlideOutPanel-module_slideOutPanel--top__4e54e.SlideOutPanel-module_slideOutPanel--medium__9-tzL, .SlideOutPanel-module_slideOutPanel--top__4e54e.SlideOutPanel-module_slideOutPanel--large__7RHyd {
|
|
4436
4434
|
height: var(--slide-out-panel-height);
|
|
4437
4435
|
}
|
|
4438
|
-
|
|
4439
4436
|
.SlideOutPanel-module_slideOutPanel--bottom__E3bRO {
|
|
4440
4437
|
top: auto;
|
|
4441
4438
|
top: initial;
|
|
@@ -4443,12 +4440,10 @@ span.flatpickr-weekday {
|
|
|
4443
4440
|
bottom: -100%;
|
|
4444
4441
|
width: 100vw;
|
|
4445
4442
|
}
|
|
4446
|
-
|
|
4447
4443
|
.SlideOutPanel-module_slideOutPanel--bottom__E3bRO.SlideOutPanel-module_open__Q-ONw {
|
|
4448
4444
|
bottom: 0;
|
|
4449
4445
|
opacity: 1;
|
|
4450
4446
|
}
|
|
4451
|
-
|
|
4452
4447
|
.SlideOutPanel-module_slideOutPanel--bottom__E3bRO.SlideOutPanel-module_slideOutPanel--small__FNO8Q, .SlideOutPanel-module_slideOutPanel--bottom__E3bRO.SlideOutPanel-module_slideOutPanel--medium__9-tzL, .SlideOutPanel-module_slideOutPanel--bottom__E3bRO.SlideOutPanel-module_slideOutPanel--large__7RHyd {
|
|
4453
4448
|
height: var(--slide-out-panel-height);
|
|
4454
4449
|
}
|