@20minutes/hela 2.7.1 → 2.7.2
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.es.js +1663 -1749
- package/dist/index.umd.js +2 -2
- package/dist/js/scripts.es.js +330 -355
- package/dist/js/scripts.umd.js +3 -3
- package/dist/scss/abstracts/variables/_token-variables.scss +1 -1
- package/dist/scss/abstracts/variables/_variables.scss +1 -1
- package/dist/src/components/atoms/Icon/Icon.d.ts +1 -0
- package/dist/src/components/molecules/IconItem/IconItem.d.ts +4 -4
- package/dist/src/components/organisms/Toolbar/Toolbar.d.ts +3 -2
- package/dist/src/components/organisms/Toolbar/Toolbar.stories.d.ts +12 -4
- package/dist/src/components/organisms/index.d.ts +0 -1
- package/dist/style.css +1 -1
- package/package.json +3 -3
- package/dist/src/assets/scripts/actualSearch.d.ts +0 -1
- package/dist/src/components/organisms/ActualSearchbar/ActualSearchbar.d.ts +0 -11
- package/dist/src/components/organisms/ActualSearchbar/ActualSearchbar.stories.d.ts +0 -49
- package/dist/src/components/organisms/ActualSearchbar/index.d.ts +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@20minutes/hela",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.2",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+ssh://git@github.com/20minutes/hela.git"
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
},
|
|
77
77
|
"devDependencies": {
|
|
78
78
|
"@20minutes/eslint-config": "^1.2.7",
|
|
79
|
-
"@aws-sdk/client-s3": "3.
|
|
79
|
+
"@aws-sdk/client-s3": "3.810.0",
|
|
80
80
|
"@babel/core": "^7.27.1",
|
|
81
81
|
"@babel/eslint-parser": "^7.27.1",
|
|
82
82
|
"@csstools/postcss-sass": "^5.1.1",
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
"@svgr/cli": "^8.1.0",
|
|
97
97
|
"@testing-library/dom": "^10.4.0",
|
|
98
98
|
"@testing-library/react": "^16.3.0",
|
|
99
|
-
"@types/node": "^22.15.
|
|
99
|
+
"@types/node": "^22.15.18",
|
|
100
100
|
"@types/react": "^18.3.12",
|
|
101
101
|
"@types/react-dom": "^18.3.1",
|
|
102
102
|
"@typescript-eslint/eslint-plugin": "^8.32.1",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const listenerOfActualSearch: () => void;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
|
-
import { BoxProps, FlexProps } from '../..';
|
|
3
|
-
import { LayoutType } from '../../../types';
|
|
4
|
-
export interface ActualSearchbarProps extends BoxProps {
|
|
5
|
-
layout: LayoutType;
|
|
6
|
-
actualApiUrl?: string;
|
|
7
|
-
locationApiUrl?: string;
|
|
8
|
-
containerProps?: FlexProps;
|
|
9
|
-
autocompleteDataAttributes?: Record<string, boolean>;
|
|
10
|
-
}
|
|
11
|
-
export declare const ActualSearchbar: React.FC<ActualSearchbarProps>;
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
|
-
import { ActualSearchbarProps } from './ActualSearchbar';
|
|
3
|
-
import { LayoutType } from '../../../types';
|
|
4
|
-
import { StoryObj } from '@storybook/react';
|
|
5
|
-
declare const meta: {
|
|
6
|
-
title: string;
|
|
7
|
-
component: React.FC<ActualSearchbarProps>;
|
|
8
|
-
argTypes: {
|
|
9
|
-
m?: import('@storybook/csf').InputType | undefined;
|
|
10
|
-
mt?: import('@storybook/csf').InputType | undefined;
|
|
11
|
-
mr?: import('@storybook/csf').InputType | undefined;
|
|
12
|
-
mb?: import('@storybook/csf').InputType | undefined;
|
|
13
|
-
ml?: import('@storybook/csf').InputType | undefined;
|
|
14
|
-
mx?: import('@storybook/csf').InputType | undefined;
|
|
15
|
-
my?: import('@storybook/csf').InputType | undefined;
|
|
16
|
-
p?: import('@storybook/csf').InputType | undefined;
|
|
17
|
-
pt?: import('@storybook/csf').InputType | undefined;
|
|
18
|
-
pr?: import('@storybook/csf').InputType | undefined;
|
|
19
|
-
pb?: import('@storybook/csf').InputType | undefined;
|
|
20
|
-
pl?: import('@storybook/csf').InputType | undefined;
|
|
21
|
-
px?: import('@storybook/csf').InputType | undefined;
|
|
22
|
-
py?: import('@storybook/csf').InputType | undefined;
|
|
23
|
-
borderColor?: import('@storybook/csf').InputType | undefined;
|
|
24
|
-
bg?: import('@storybook/csf').InputType | undefined;
|
|
25
|
-
color?: import('@storybook/csf').InputType | undefined;
|
|
26
|
-
radius?: import('@storybook/csf').InputType | undefined;
|
|
27
|
-
};
|
|
28
|
-
args: {
|
|
29
|
-
layout: LayoutType.DESKTOP;
|
|
30
|
-
p: "m";
|
|
31
|
-
bg: string;
|
|
32
|
-
autocompleteDataAttributes: {
|
|
33
|
-
'data-storybook': true;
|
|
34
|
-
};
|
|
35
|
-
actualApiUrl: string;
|
|
36
|
-
locationApiUrl: string;
|
|
37
|
-
};
|
|
38
|
-
parameters: {
|
|
39
|
-
layout: string;
|
|
40
|
-
viewport: {
|
|
41
|
-
defaultViewport: string;
|
|
42
|
-
};
|
|
43
|
-
};
|
|
44
|
-
render: (args: ActualSearchbarProps) => React.JSX.Element;
|
|
45
|
-
};
|
|
46
|
-
export default meta;
|
|
47
|
-
type Story = StoryObj<typeof meta>;
|
|
48
|
-
export declare const Overview: Story;
|
|
49
|
-
export declare const Mobile: Story;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './ActualSearchbar';
|