angular-tailwind-components 1.8.3-RC1 → 1.8.3-RC2
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
|
@@ -40,7 +40,7 @@ interface TailwindMenuItem {
|
|
|
40
40
|
disabled?: boolean;
|
|
41
41
|
divider?: boolean;
|
|
42
42
|
value?: string;
|
|
43
|
-
items?: TailwindMenuItem[];
|
|
43
|
+
items?: Exclude<TailwindMenuItem, 'items'>[];
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
/**
|
|
@@ -145,7 +145,7 @@ declare class TailwindButton extends TailwindComponent {
|
|
|
145
145
|
/** Whether the button is disabled */
|
|
146
146
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
147
147
|
/** HTML button type attribute */
|
|
148
|
-
readonly type: _angular_core.InputSignal<"button" | "
|
|
148
|
+
readonly type: _angular_core.InputSignal<"button" | "reset" | "submit">;
|
|
149
149
|
/** ARIA role attribute */
|
|
150
150
|
readonly role: _angular_core.InputSignal<TailwindButtonRole>;
|
|
151
151
|
/** Optional Heroicons outline icon inside the button */
|
|
@@ -228,7 +228,7 @@ declare class TailwindTextarea extends TailwindComponent implements ControlValue
|
|
|
228
228
|
/** Maximum character length (HTML maxlength) */
|
|
229
229
|
readonly maxlength: _angular_core.InputSignal<number | undefined>;
|
|
230
230
|
/** Resize behavior */
|
|
231
|
-
readonly resize: _angular_core.InputSignal<"
|
|
231
|
+
readonly resize: _angular_core.InputSignal<"vertical" | "none" | "both" | "horizontal">;
|
|
232
232
|
/** Size variant */
|
|
233
233
|
readonly size: _angular_core.InputSignal<TailwindSize>;
|
|
234
234
|
/** Whether the textarea is readonly */
|
|
@@ -418,7 +418,7 @@ declare class TailwindRadioGroup<T = unknown> extends TailwindComponent implemen
|
|
|
418
418
|
/** Size variant */
|
|
419
419
|
readonly size: _angular_core.InputSignal<TailwindSize>;
|
|
420
420
|
/** Layout orientation */
|
|
421
|
-
readonly orientation: _angular_core.InputSignal<"
|
|
421
|
+
readonly orientation: _angular_core.InputSignal<"vertical" | "horizontal">;
|
|
422
422
|
/** Currently selected value */
|
|
423
423
|
readonly value: _angular_core.ModelSignal<T | null>;
|
|
424
424
|
/** Internal disabled state */
|
|
@@ -689,7 +689,7 @@ declare class TailwindSpinner extends TailwindComponent {
|
|
|
689
689
|
/** Aria label for accessibility */
|
|
690
690
|
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
691
691
|
/** Layout orientation */
|
|
692
|
-
readonly orientation: _angular_core.InputSignal<"
|
|
692
|
+
readonly orientation: _angular_core.InputSignal<"vertical" | "horizontal">;
|
|
693
693
|
readonly containerClasses: _angular_core.Signal<string>;
|
|
694
694
|
readonly iconPixelSize: _angular_core.Signal<number>;
|
|
695
695
|
readonly iconClasses: _angular_core.Signal<string>;
|
|
@@ -1250,7 +1250,7 @@ declare class TailwindToolbar extends TailwindComponent {
|
|
|
1250
1250
|
*/
|
|
1251
1251
|
readonly variant: _angular_core.InputSignal<TailwindSeverity | "default">;
|
|
1252
1252
|
/** `horizontal` for a top app bar; `vertical` for a side rail (logo → menu → end). */
|
|
1253
|
-
readonly orientation: _angular_core.InputSignal<"
|
|
1253
|
+
readonly orientation: _angular_core.InputSignal<"vertical" | "horizontal">;
|
|
1254
1254
|
/** Navigation / actions rendered between logo and end slots. */
|
|
1255
1255
|
readonly menu: _angular_core.InputSignal<TailwindMenuItem[]>;
|
|
1256
1256
|
/** Emitted when a non-disabled, non-divider menu entry is activated. */
|
|
@@ -1285,7 +1285,7 @@ declare class TailwindToolbar extends TailwindComponent {
|
|
|
1285
1285
|
|
|
1286
1286
|
declare class TailwindDivider extends TailwindComponent {
|
|
1287
1287
|
/** Rule direction */
|
|
1288
|
-
readonly orientation: _angular_core.InputSignal<"
|
|
1288
|
+
readonly orientation: _angular_core.InputSignal<"vertical" | "horizontal">;
|
|
1289
1289
|
/** Adds horizontal margin to the rule (horizontal orientation only). */
|
|
1290
1290
|
readonly inset: _angular_core.InputSignal<boolean>;
|
|
1291
1291
|
/** Border style for the rule */
|
|
@@ -1352,7 +1352,7 @@ declare class TailwindSlider extends TailwindComponent implements ControlValueAc
|
|
|
1352
1352
|
/** Two-thumb range mode */
|
|
1353
1353
|
readonly range: _angular_core.InputSignal<boolean>;
|
|
1354
1354
|
/** Layout */
|
|
1355
|
-
readonly orientation: _angular_core.InputSignal<"
|
|
1355
|
+
readonly orientation: _angular_core.InputSignal<"vertical" | "horizontal">;
|
|
1356
1356
|
/** Tick marks at each step */
|
|
1357
1357
|
readonly showTicks: _angular_core.InputSignal<boolean>;
|
|
1358
1358
|
/** Control size */
|