@wra-gov/vue-components 0.26.9 → 0.27.1
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/index.d.ts +94 -0
- package/dist/vue-components.js +531 -418
- package/dist/vue-components.umd.cjs +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -579,6 +579,100 @@ itemInfo: string;
|
|
|
579
579
|
returnObject: boolean;
|
|
580
580
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
581
581
|
|
|
582
|
+
export declare const WraContentAccordion: DefineComponent<ExtractPropTypes< {
|
|
583
|
+
title: {
|
|
584
|
+
type: PropType<string>;
|
|
585
|
+
required: true;
|
|
586
|
+
};
|
|
587
|
+
/**
|
|
588
|
+
* Description text displayed below the title
|
|
589
|
+
*/
|
|
590
|
+
description: {
|
|
591
|
+
type: PropType<string>;
|
|
592
|
+
required: false;
|
|
593
|
+
};
|
|
594
|
+
/**
|
|
595
|
+
* A unique string used to generate ARIA attributes for accessibility.
|
|
596
|
+
*/
|
|
597
|
+
ariaTitle: {
|
|
598
|
+
type: PropType<string>;
|
|
599
|
+
required: true;
|
|
600
|
+
};
|
|
601
|
+
/**
|
|
602
|
+
* Text to display when the panel is collapsed
|
|
603
|
+
*/
|
|
604
|
+
showText: {
|
|
605
|
+
type: PropType<string>;
|
|
606
|
+
default: string;
|
|
607
|
+
};
|
|
608
|
+
/**
|
|
609
|
+
* Text to display when the panel is expanded
|
|
610
|
+
*/
|
|
611
|
+
hideText: {
|
|
612
|
+
type: PropType<string>;
|
|
613
|
+
default: string;
|
|
614
|
+
};
|
|
615
|
+
/**
|
|
616
|
+
* If set, overrides the expanded/collapsed state programmatically
|
|
617
|
+
*/
|
|
618
|
+
expandOverride: {
|
|
619
|
+
type: PropType<boolean>;
|
|
620
|
+
default: any;
|
|
621
|
+
};
|
|
622
|
+
}>, {}, {
|
|
623
|
+
internalPanel: boolean;
|
|
624
|
+
}, {
|
|
625
|
+
showPanel(): boolean;
|
|
626
|
+
}, {
|
|
627
|
+
togglePanel(): void;
|
|
628
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, "update:expanded"[], "update:expanded", PublicProps, Readonly<ExtractPropTypes< {
|
|
629
|
+
title: {
|
|
630
|
+
type: PropType<string>;
|
|
631
|
+
required: true;
|
|
632
|
+
};
|
|
633
|
+
/**
|
|
634
|
+
* Description text displayed below the title
|
|
635
|
+
*/
|
|
636
|
+
description: {
|
|
637
|
+
type: PropType<string>;
|
|
638
|
+
required: false;
|
|
639
|
+
};
|
|
640
|
+
/**
|
|
641
|
+
* A unique string used to generate ARIA attributes for accessibility.
|
|
642
|
+
*/
|
|
643
|
+
ariaTitle: {
|
|
644
|
+
type: PropType<string>;
|
|
645
|
+
required: true;
|
|
646
|
+
};
|
|
647
|
+
/**
|
|
648
|
+
* Text to display when the panel is collapsed
|
|
649
|
+
*/
|
|
650
|
+
showText: {
|
|
651
|
+
type: PropType<string>;
|
|
652
|
+
default: string;
|
|
653
|
+
};
|
|
654
|
+
/**
|
|
655
|
+
* Text to display when the panel is expanded
|
|
656
|
+
*/
|
|
657
|
+
hideText: {
|
|
658
|
+
type: PropType<string>;
|
|
659
|
+
default: string;
|
|
660
|
+
};
|
|
661
|
+
/**
|
|
662
|
+
* If set, overrides the expanded/collapsed state programmatically
|
|
663
|
+
*/
|
|
664
|
+
expandOverride: {
|
|
665
|
+
type: PropType<boolean>;
|
|
666
|
+
default: any;
|
|
667
|
+
};
|
|
668
|
+
}>> & Readonly<{
|
|
669
|
+
"onUpdate:expanded"?: (...args: any[]) => any;
|
|
670
|
+
}>, {
|
|
671
|
+
showText: string;
|
|
672
|
+
hideText: string;
|
|
673
|
+
expandOverride: boolean;
|
|
674
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
675
|
+
|
|
582
676
|
export declare const WraContentSectionTitle: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
583
677
|
|
|
584
678
|
export declare const WraCustomInput: DefineComponent<ExtractPropTypes< {
|