储能智慧云小程序
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. import { SuperComponent } from '../common/src/index';
  2. export default class ActionSheet extends SuperComponent {
  3. static show: (options: import("./show").ActionSheetShowOption) => WechatMiniprogram.Component.TrivialInstance;
  4. behaviors: string[];
  5. externalClasses: string[];
  6. properties: {
  7. align?: {
  8. type: StringConstructor;
  9. value?: "center" | "left";
  10. };
  11. cancelText?: {
  12. type: StringConstructor;
  13. value?: string;
  14. };
  15. count?: {
  16. type: NumberConstructor;
  17. value?: number;
  18. };
  19. description?: {
  20. type: StringConstructor;
  21. value?: string;
  22. };
  23. items: {
  24. type: ArrayConstructor;
  25. value?: (string | import("./type").ActionSheetItem)[];
  26. };
  27. popupProps?: {
  28. type: ObjectConstructor;
  29. value?: import("../popup").TdPopupProps;
  30. };
  31. showCancel?: {
  32. type: BooleanConstructor;
  33. value?: boolean;
  34. };
  35. showOverlay?: {
  36. type: BooleanConstructor;
  37. value?: boolean;
  38. };
  39. theme?: {
  40. type: StringConstructor;
  41. value?: "list" | "grid";
  42. };
  43. usingCustomNavbar?: {
  44. type: BooleanConstructor;
  45. value?: boolean;
  46. };
  47. visible: {
  48. type: BooleanConstructor;
  49. value?: boolean;
  50. };
  51. defaultVisible: {
  52. type: BooleanConstructor;
  53. value?: boolean;
  54. };
  55. };
  56. data: {
  57. prefix: string;
  58. classPrefix: string;
  59. gridThemeItems: any[];
  60. currentSwiperIndex: number;
  61. defaultPopUpProps: {};
  62. defaultPopUpzIndex: number;
  63. };
  64. controlledProps: {
  65. key: string;
  66. event: string;
  67. }[];
  68. ready(): void;
  69. methods: {
  70. onSwiperChange(e: WechatMiniprogram.TouchEvent): void;
  71. splitGridThemeActions(): void;
  72. show(options: any): void;
  73. memoInitialData(): void;
  74. close(): void;
  75. onPopupVisibleChange({ detail }: {
  76. detail: any;
  77. }): void;
  78. onSelect(event: WechatMiniprogram.TouchEvent): void;
  79. onCancel(): void;
  80. };
  81. }