@kouji-ui/core 0.1.4 → 0.2.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kouji-ui/core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Headless Angular 21 UI primitives — directives over CDK with WCAG 2.1 AAA semantics and zero CSS.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -39,6 +39,14 @@
|
|
|
39
39
|
"module": "fesm2022/kouji-ui-core.mjs",
|
|
40
40
|
"typings": "types/kouji-ui-core.d.ts",
|
|
41
41
|
"exports": {
|
|
42
|
+
"./icon/icon.css": {
|
|
43
|
+
"style": "./icon/icon.css",
|
|
44
|
+
"default": "./icon/icon.css"
|
|
45
|
+
},
|
|
46
|
+
"./typography/prose.css": {
|
|
47
|
+
"style": "./typography/prose.css",
|
|
48
|
+
"default": "./typography/prose.css"
|
|
49
|
+
},
|
|
42
50
|
"./package.json": {
|
|
43
51
|
"default": "./package.json"
|
|
44
52
|
},
|
package/types/kouji-ui-core.d.ts
CHANGED
|
@@ -11639,6 +11639,13 @@ declare class KjDatePickerTrigger {
|
|
|
11639
11639
|
private readonly el;
|
|
11640
11640
|
/** Cached typed text — avoids overwriting mid-edit. */
|
|
11641
11641
|
private editing;
|
|
11642
|
+
/**
|
|
11643
|
+
* Optional custom display formatter, e.g. for datetime pickers that show
|
|
11644
|
+
* the time next to the date. Free-text parsing (`commitTyped`) still uses
|
|
11645
|
+
* the locale date parser — text that doesn't parse as a plain date is
|
|
11646
|
+
* reverted to the formatted value on the next value change.
|
|
11647
|
+
*/
|
|
11648
|
+
readonly kjDisplayFormat: _angular_core.InputSignal<((d: Date, locale: string) => string) | null>;
|
|
11642
11649
|
readonly displayValue: _angular_core.Signal<string>;
|
|
11643
11650
|
constructor();
|
|
11644
11651
|
/** @internal */
|
|
@@ -11652,7 +11659,7 @@ declare class KjDatePickerTrigger {
|
|
|
11652
11659
|
attachPanel(panel: KjOverlayPanel): void;
|
|
11653
11660
|
private isOutOfBounds;
|
|
11654
11661
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KjDatePickerTrigger, never>;
|
|
11655
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<KjDatePickerTrigger, "input[kjDatePickerTrigger]", ["kjDatePickerTrigger"], {}, {}, never, never, true, [{ directive: typeof KjFormControl; inputs: {}; outputs: {}; }, { directive: typeof KjFocusRing; inputs: {}; outputs: {}; }, { directive: typeof KjOverlayTrigger; inputs: { "kjOpen": "kjOpen"; }; outputs: {}; }]>;
|
|
11662
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<KjDatePickerTrigger, "input[kjDatePickerTrigger]", ["kjDatePickerTrigger"], { "kjDisplayFormat": { "alias": "kjDisplayFormat"; "required": false; "isSignal": true; }; }, {}, never, never, true, [{ directive: typeof KjFormControl; inputs: {}; outputs: {}; }, { directive: typeof KjFocusRing; inputs: {}; outputs: {}; }, { directive: typeof KjOverlayTrigger; inputs: { "kjOpen": "kjOpen"; }; outputs: {}; }]>;
|
|
11656
11663
|
}
|
|
11657
11664
|
|
|
11658
11665
|
/**
|