@youngonesworks/ui 0.1.90 → 0.1.92
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/components/datePickerInput/DatePickerInput.stories.d.ts +2 -2
- package/dist/components/datePickerInput/index.d.ts +1 -1
- package/dist/components/searchInput/index.d.ts +2 -2
- package/dist/components/searchInput/searchInput.test.d.ts +1 -1
- package/dist/components/textInput/index.d.ts +2 -2
- package/dist/components/textInput/textInput.test.d.ts +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +65 -65
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { type Meta, type StoryObj } from
|
|
2
|
-
import { DatePickerInput } from
|
|
1
|
+
import { type Meta, type StoryObj } from '@storybook/react-vite';
|
|
2
|
+
import { DatePickerInput } from './index';
|
|
3
3
|
declare const meta: Meta<typeof DatePickerInput>;
|
|
4
4
|
export default meta;
|
|
5
5
|
type Story = StoryObj<typeof meta>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { type ChangeEvent } from
|
|
2
|
-
import { type TextInputProps } from
|
|
1
|
+
import { type ChangeEvent } from 'react';
|
|
2
|
+
import { type TextInputProps } from '../textInput';
|
|
3
3
|
export interface SearchInputProps extends TextInputProps {
|
|
4
4
|
placeholder: string;
|
|
5
5
|
value?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import
|
|
1
|
+
import '@testing-library/jest-dom';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import { type ChangeEvent, type FocusEvent, type InputHTMLAttributes, type KeyboardEvent } from
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { type ChangeEvent, type FocusEvent, type InputHTMLAttributes, type KeyboardEvent } from 'react';
|
|
3
3
|
export type TextInputProps = InputHTMLAttributes<HTMLInputElement> & {
|
|
4
4
|
rightSection?: React.ReactNode;
|
|
5
5
|
leftSection?: React.ReactNode;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import
|
|
1
|
+
import '@testing-library/jest-dom';
|
package/dist/index.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
'use client';
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
//#region rolldown:runtime
|
|
@@ -1670,7 +1670,7 @@ const Modal = ({ title, children, withCloseButton = true, opened, additionalClas
|
|
|
1670
1670
|
className: "absolute top-0 right-0",
|
|
1671
1671
|
"data-testid": "close-modal",
|
|
1672
1672
|
icon: /* @__PURE__ */ (0, react_jsx_runtime.jsx)(__tabler_icons_react.IconX, {}),
|
|
1673
|
-
title: "
|
|
1673
|
+
title: "Close modal"
|
|
1674
1674
|
})
|
|
1675
1675
|
}),
|
|
1676
1676
|
title && /* @__PURE__ */ (0, react_jsx_runtime.jsx)("div", {
|