@gumigumih/react-calculator-input-form 1.0.0 → 1.1.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gumigumih/react-calculator-input-form",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "React電卓入力フォームプラグイン - 税込税抜計算機能付き",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -68,7 +68,9 @@
68
68
  "react-dom": ">=16.8.0"
69
69
  },
70
70
  "dependencies": {
71
- "react-number-format": "^5.4.4"
71
+ "@types/styled-components": "^5.1.34",
72
+ "react-number-format": "^5.4.4",
73
+ "styled-components": "^6.1.19"
72
74
  },
73
75
  "devDependencies": {
74
76
  "@eslint/js": "^9.34.0",
@@ -91,6 +93,7 @@
91
93
  "jest-environment-jsdom": "^30.1.2",
92
94
  "rollup": "^3.0.0",
93
95
  "rollup-plugin-peer-deps-external": "^2.2.4",
96
+ "rollup-plugin-postcss": "^4.0.2",
94
97
  "ts-jest": "^29.4.1",
95
98
  "tslib": "^2.6.2",
96
99
  "typescript": "^5.0.0"
@@ -1,13 +0,0 @@
1
- export interface CalculatorInputProps {
2
- value: string;
3
- onChange: (value: string) => void;
4
- placeholder?: string;
5
- className?: string;
6
- title?: string;
7
- description?: string;
8
- enableTaxCalculation?: boolean;
9
- decimalPlaces?: number;
10
- numberFormatOptions?: any;
11
- displayPlaceholder?: string;
12
- }
13
- export declare const CalculatorInput: ({ value, onChange, placeholder, className, title, description, enableTaxCalculation, decimalPlaces, numberFormatOptions, displayPlaceholder, }: CalculatorInputProps) => import("react/jsx-runtime").JSX.Element;