@public-ui/sample-react 2.0.13 → 2.0.14
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/1502.js +1 -1
- package/dist/2182.js +1 -1
- package/dist/2439.js +1 -1
- package/dist/249.js +2 -0
- package/dist/2624.js +1 -1
- package/dist/2671.js +1 -1
- package/dist/2926.js +1 -1
- package/dist/4619.js +1 -1
- package/dist/528.js +1 -1
- package/dist/5342.js +1 -1
- package/dist/6114.js +1 -1
- package/dist/6511.js +1 -1
- package/dist/{3525.js → 7539.js} +2 -2
- package/dist/7628.js +1 -1
- package/dist/7732.js +1 -1
- package/dist/8494.js +1 -1
- package/dist/9094.js +1 -1
- package/dist/9483.js +1 -1
- package/dist/9528.js +1 -1
- package/dist/main.js +1 -1
- package/package.json +4 -4
- package/src/components/input-checkbox/partials/cases.tsx +5 -51
- package/dist/5615.js +0 -2
- /package/dist/{3525.js.LICENSE.txt → 249.js.LICENSE.txt} +0 -0
- /package/dist/{5615.js.LICENSE.txt → 7539.js.LICENSE.txt} +0 -0
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/sample-react",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.14",
|
|
4
4
|
"description": "This app contains samples for the KoliBri/Public UI",
|
|
5
5
|
"license": "EUPL-1.2",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@leanup/stack": "1.3.49",
|
|
8
8
|
"@leanup/stack-react": "1.3.49",
|
|
9
9
|
"@leanup/stack-webpack": "1.3.49",
|
|
10
|
-
"@public-ui/components": "2.0.
|
|
11
|
-
"@public-ui/react": "2.0.
|
|
12
|
-
"@public-ui/themes": "2.0.
|
|
10
|
+
"@public-ui/components": "2.0.14",
|
|
11
|
+
"@public-ui/react": "2.0.14",
|
|
12
|
+
"@public-ui/themes": "2.0.14",
|
|
13
13
|
"@types/node": "ts5.4",
|
|
14
14
|
"@types/react": "18.2.77",
|
|
15
15
|
"@types/react-dom": "18.2.25",
|
|
@@ -8,59 +8,13 @@ import type { Components } from '@public-ui/components';
|
|
|
8
8
|
export const InputCheckboxCases = forwardRef<HTMLKolInputCheckboxElement, Components.KolInputCheckbox>(function InputCheckboxCases(props, ref) {
|
|
9
9
|
return (
|
|
10
10
|
<div className="grid gap-4">
|
|
11
|
-
<KolInputCheckbox
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
}}
|
|
16
|
-
_label="Nicht ausgewählt"
|
|
17
|
-
_value={false}
|
|
18
|
-
_required
|
|
19
|
-
/>
|
|
20
|
-
<KolInputCheckbox
|
|
21
|
-
{...props}
|
|
22
|
-
_icons={{
|
|
23
|
-
unchecked: 'codicon codicon-close',
|
|
24
|
-
}}
|
|
25
|
-
_label="Unbestimmt (Indeterminate)"
|
|
26
|
-
_value={null}
|
|
27
|
-
_indeterminate
|
|
28
|
-
/>
|
|
29
|
-
<KolInputCheckbox
|
|
30
|
-
{...props}
|
|
31
|
-
ref={ref}
|
|
32
|
-
_accessKey="A"
|
|
33
|
-
_checked
|
|
34
|
-
_icons={{
|
|
35
|
-
unchecked: 'codicon codicon-close',
|
|
36
|
-
}}
|
|
37
|
-
_label="Ausgewählt"
|
|
38
|
-
_tooltipAlign="right"
|
|
39
|
-
_value={true}
|
|
40
|
-
/>
|
|
41
|
-
<KolInputCheckbox
|
|
42
|
-
{...props}
|
|
43
|
-
_disabled
|
|
44
|
-
_icons={{
|
|
45
|
-
unchecked: 'codicon codicon-close',
|
|
46
|
-
}}
|
|
47
|
-
_label="Disabled"
|
|
48
|
-
_value={true}
|
|
49
|
-
_hint="Hint text"
|
|
50
|
-
/>
|
|
11
|
+
<KolInputCheckbox {...props} _label="Nicht ausgewählt" _value={false} _required />
|
|
12
|
+
<KolInputCheckbox {...props} _label="Unbestimmt (Indeterminate)" _value={null} _indeterminate />
|
|
13
|
+
<KolInputCheckbox {...props} ref={ref} _accessKey="A" _checked _label="Ausgewählt" _tooltipAlign="right" _value={true} />
|
|
14
|
+
<KolInputCheckbox {...props} _disabled _label="Disabled" _value={true} _hint="Hint text" />
|
|
51
15
|
<KolInputCheckbox {...props} _checked _disabled _label="Checked and disabled" />
|
|
52
16
|
<KolInputCheckbox {...props} _indeterminate _disabled _label="Indeterminate and disabled" />
|
|
53
|
-
<KolInputCheckbox
|
|
54
|
-
{...props}
|
|
55
|
-
_msg={{ _type: 'error', _description: ERROR_MSG }}
|
|
56
|
-
_icons={{
|
|
57
|
-
unchecked: 'codicon codicon-close',
|
|
58
|
-
}}
|
|
59
|
-
_label="Mit Fehler"
|
|
60
|
-
_touched
|
|
61
|
-
_value={true}
|
|
62
|
-
_hint="Hint text"
|
|
63
|
-
/>
|
|
17
|
+
<KolInputCheckbox {...props} _msg={{ _type: 'error', _description: ERROR_MSG }} _label="Mit Fehler" _touched _value={true} _hint="Hint text" />
|
|
64
18
|
</div>
|
|
65
19
|
);
|
|
66
20
|
});
|
package/dist/5615.js
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
/*! For license information please see 5615.js.LICENSE.txt */
|
|
2
|
-
"use strict";(self.webpackChunk_public_ui_sample_react=self.webpackChunk_public_ui_sample_react||[]).push([[5615],{5615:(e,t,a)=>{switch(location.pathname){case"/dev/toaster.html":a.e(3525).then(a.bind(a,3525));break;case"/dev/input-error.html":a.e(9993).then(a.bind(a,9993));break;case"/dev/reprod-accordion-does-not-toggle-with-open.html":a.e(9190).then(a.bind(a,9190));break;case"/dev/details-synced-open-state.html":a.e(2186).then(a.bind(a,2186));break;case"/dev/table-render-function.html":a.e(3073).then(a.t.bind(a,3073,23))}}}]);
|
|
File without changes
|
|
File without changes
|