@q2devel/q2-storybook 1.0.165 → 1.0.166

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.
@@ -38,12 +38,10 @@ export interface MovieDetailProps {
38
38
  /** ČSFD rating (optional) */
39
39
  csfdRating?: string;
40
40
  /** ČSFD URL */
41
- linksToMovieDatabase: [
42
- {
43
- field_link_to_movie_database: string;
44
- title: string;
45
- }
46
- ];
41
+ linksToMovieDatabase: Array<{
42
+ field_link_to_movie_database: string;
43
+ title: string;
44
+ }>;
47
45
  /** Special event tag (e.g., "Duna maraton") */
48
46
  specialTag?: string;
49
47
  /** Array of showtimes */
@@ -1,8 +1,8 @@
1
1
  'use client';
2
2
  import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
3
- import { useState } from 'react';
4
3
  import { Button } from '@q2devel/q2-storybook';
5
4
  import parse from 'html-react-parser';
5
+ import { useState } from 'react';
6
6
  /**
7
7
  * MovieDetail Component
8
8
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@q2devel/q2-storybook",
3
- "version": "1.0.165",
3
+ "version": "1.0.166",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",