bianic-ui 2.8.0-alpha.0 → 2.8.0

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.
@@ -9,6 +9,7 @@ interface PickerContentProps {
9
9
  onPrevMonth?: () => void;
10
10
  onNextMonth?: () => void;
11
11
  onMonthSelect?: (month: number) => void;
12
+ onYearSelect?: (year: number) => void;
12
13
  }
13
14
  declare const PickerContent: React.FC<PickerContentProps>;
14
15
  export default PickerContent;
@@ -5,6 +5,7 @@ interface RangePickerProps {
5
5
  onClose: () => void;
6
6
  minDate: string | undefined;
7
7
  maxDate: string | undefined;
8
+ isPickerOpen: boolean;
8
9
  }
9
10
  declare const RangePicker: React.FC<RangePickerProps>;
10
11
  export default RangePicker;
@@ -0,0 +1,2 @@
1
+ import React from 'react';
2
+ export default function ModalNonCloseable(): React.JSX.Element;
@@ -0,0 +1,13 @@
1
+ import type { StoryObj } from '@storybook/react';
2
+ import Modal from '../../components/Modal/ModalNonCloseable';
3
+ declare const meta: {
4
+ title: string;
5
+ component: typeof Modal;
6
+ parameters: {
7
+ layout: string;
8
+ };
9
+ args: {};
10
+ };
11
+ export default meta;
12
+ type Story = StoryObj<typeof meta>;
13
+ export declare const NonCloseable: Story;
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "@biaenergi:registry": "https://gitlab.com/api/v4/projects/50905269/packages/npm/"
5
5
  },
6
- "version": "2.8.0-alpha.0",
6
+ "version": "2.8.0",
7
7
  "description": "Design Language System develop by BIAENERGI",
8
8
  "repository": {
9
9
  "type": "git",
@@ -18,8 +18,9 @@
18
18
  "lint:fix": "npx eslint src/components --fix",
19
19
  "prepare": "husky install",
20
20
  "release": "standard-version",
21
- "full-release": "npm run rollup && npm run release && git push --follow-tags origin development-temporary && npm publish",
22
- "release:beta": "npm run rollup && npm run release -- --prerelease beta && git push --follow-tags origin development-temporary && npm publish --tag beta"
21
+ "release:alpha": "node scripts/release.js alpha",
22
+ "release:beta": "node scripts/release.js beta",
23
+ "release:stable": "node scripts/release.js"
23
24
  },
24
25
  "standard-version": {
25
26
  "types": [