@nice2dev/icons-math 1.0.10

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.
Files changed (46) hide show
  1. package/README.md +223 -0
  2. package/dist/createMathIcon-BbQhEo0A.mjs +157 -0
  3. package/dist/createMathIcon-BbQhEo0A.mjs.map +1 -0
  4. package/dist/createMathIcon-CK9tbq5-.js +156 -0
  5. package/dist/createMathIcon-CK9tbq5-.js.map +1 -0
  6. package/dist/createMathIcon.d.ts +14 -0
  7. package/dist/createMathIcon.d.ts.map +1 -0
  8. package/dist/functions.cjs +137 -0
  9. package/dist/functions.cjs.map +1 -0
  10. package/dist/functions.d.ts +57 -0
  11. package/dist/functions.d.ts.map +1 -0
  12. package/dist/functions.mjs +137 -0
  13. package/dist/functions.mjs.map +1 -0
  14. package/dist/geometry.cjs +125 -0
  15. package/dist/geometry.cjs.map +1 -0
  16. package/dist/geometry.d.ts +56 -0
  17. package/dist/geometry.d.ts.map +1 -0
  18. package/dist/geometry.mjs +125 -0
  19. package/dist/geometry.mjs.map +1 -0
  20. package/dist/index.cjs +190 -0
  21. package/dist/index.cjs.map +1 -0
  22. package/dist/index.d.ts +114 -0
  23. package/dist/index.d.ts.map +1 -0
  24. package/dist/index.mjs +190 -0
  25. package/dist/index.mjs.map +1 -0
  26. package/dist/operators.cjs +124 -0
  27. package/dist/operators.cjs.map +1 -0
  28. package/dist/operators.d.ts +56 -0
  29. package/dist/operators.d.ts.map +1 -0
  30. package/dist/operators.mjs +124 -0
  31. package/dist/operators.mjs.map +1 -0
  32. package/dist/sets.cjs +126 -0
  33. package/dist/sets.cjs.map +1 -0
  34. package/dist/sets.d.ts +56 -0
  35. package/dist/sets.d.ts.map +1 -0
  36. package/dist/sets.mjs +126 -0
  37. package/dist/sets.mjs.map +1 -0
  38. package/dist/statistics.cjs +164 -0
  39. package/dist/statistics.cjs.map +1 -0
  40. package/dist/statistics.d.ts +56 -0
  41. package/dist/statistics.d.ts.map +1 -0
  42. package/dist/statistics.mjs +164 -0
  43. package/dist/statistics.mjs.map +1 -0
  44. package/dist/types.d.ts +59 -0
  45. package/dist/types.d.ts.map +1 -0
  46. package/package.json +78 -0
@@ -0,0 +1,59 @@
1
+ import { SVGProps, ReactElement } from 'react';
2
+ /**
3
+ * Math icon animation types
4
+ */
5
+ export type MathIconAnimation = 'pulse' | 'grow' | 'shake' | 'spin' | 'bounce' | 'fade' | 'flip' | 'slide' | 'glow';
6
+ /**
7
+ * Math icon rendering variants
8
+ */
9
+ export type MathIconVariant = 'filled' | 'outlined' | 'duotone';
10
+ /**
11
+ * Base props for all math icons
12
+ */
13
+ export interface MathIconProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {
14
+ /** Icon size in pixels */
15
+ size?: number | string;
16
+ /** Icon color (defaults to currentColor) */
17
+ color?: string;
18
+ /** Secondary color for duotone variant */
19
+ secondaryColor?: string;
20
+ /** Icon rendering variant */
21
+ variant?: MathIconVariant;
22
+ /** Animation effect */
23
+ animation?: MathIconAnimation;
24
+ /** Animation duration in milliseconds */
25
+ animationDuration?: number;
26
+ /** Title for accessibility */
27
+ title?: string;
28
+ /** Description for accessibility */
29
+ desc?: string;
30
+ }
31
+ /**
32
+ * Operator icon names
33
+ */
34
+ export type OperatorIconName = 'Plus' | 'Minus' | 'Multiply' | 'Divide' | 'Equals' | 'NotEquals' | 'LessThan' | 'GreaterThan' | 'LessOrEqual' | 'GreaterOrEqual' | 'PlusMinus' | 'Percent' | 'Modulo' | 'Power' | 'SquareRoot';
35
+ /**
36
+ * Function icon names
37
+ */
38
+ export type FunctionIconName = 'Function' | 'Integral' | 'Derivative' | 'Summation' | 'Product' | 'Limit' | 'Pi' | 'Infinity' | 'InfinityIcon' | 'Sigma' | 'Delta' | 'Theta' | 'Lambda' | 'Factorial' | 'Logarithm' | 'Absolute';
39
+ /**
40
+ * Geometry icon names
41
+ */
42
+ export type GeometryIconName = 'Triangle' | 'Square' | 'Circle' | 'Cube' | 'Sphere' | 'Pyramid' | 'Cylinder' | 'Cone' | 'Pentagon' | 'Hexagon' | 'Angle' | 'Parallel' | 'Perpendicular' | 'Compass' | 'Protractor';
43
+ /**
44
+ * Set theory icon names
45
+ */
46
+ export type SetIconName = 'Union' | 'Intersection' | 'Subset' | 'Superset' | 'Element' | 'NotElement' | 'EmptySet' | 'Universal' | 'Complement' | 'Difference' | 'SymmetricDiff' | 'CartesianProduct' | 'PowerSet' | 'SetBraces' | 'Mapping';
47
+ /**
48
+ * Statistics icon names
49
+ */
50
+ export type StatisticsIconName = 'BarChart' | 'Histogram' | 'BellCurve' | 'Scatter' | 'LineGraph' | 'PieChart' | 'BoxPlot' | 'Mean' | 'Median' | 'Mode' | 'StandardDev' | 'Variance' | 'Correlation' | 'Regression' | 'Probability';
51
+ /**
52
+ * All math icon names
53
+ */
54
+ export type MathIconName = OperatorIconName | FunctionIconName | GeometryIconName | SetIconName | StatisticsIconName;
55
+ /**
56
+ * Math icon component type
57
+ */
58
+ export type MathIcon = (props: MathIconProps) => ReactElement;
59
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAEpD;;GAEG;AACH,MAAM,MAAM,iBAAiB,GACzB,OAAO,GACP,MAAM,GACN,OAAO,GACP,MAAM,GACN,QAAQ,GACR,MAAM,GACN,MAAM,GACN,OAAO,GACP,MAAM,CAAC;AAEX;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG,QAAQ,GAAG,UAAU,GAAG,SAAS,CAAC;AAEhE;;GAEG;AACH,MAAM,WAAW,aAAc,SAAQ,IAAI,CAAC,QAAQ,CAAC,aAAa,CAAC,EAAE,KAAK,CAAC;IACzE,0BAA0B;IAC1B,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,4CAA4C;IAC5C,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,0CAA0C;IAC1C,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,6BAA6B;IAC7B,OAAO,CAAC,EAAE,eAAe,CAAC;IAC1B,uBAAuB;IACvB,SAAS,CAAC,EAAE,iBAAiB,CAAC;IAC9B,yCAAyC;IACzC,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,8BAA8B;IAC9B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,oCAAoC;IACpC,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED;;GAEG;AACH,MAAM,MAAM,gBAAgB,GACxB,MAAM,GACN,OAAO,GACP,UAAU,GACV,QAAQ,GACR,QAAQ,GACR,WAAW,GACX,UAAU,GACV,aAAa,GACb,aAAa,GACb,gBAAgB,GAChB,WAAW,GACX,SAAS,GACT,QAAQ,GACR,OAAO,GACP,YAAY,CAAC;AAEjB;;GAEG;AACH,MAAM,MAAM,gBAAgB,GACxB,UAAU,GACV,UAAU,GACV,YAAY,GACZ,WAAW,GACX,SAAS,GACT,OAAO,GACP,IAAI,GACJ,UAAU,GACV,cAAc,GACd,OAAO,GACP,OAAO,GACP,OAAO,GACP,QAAQ,GACR,WAAW,GACX,WAAW,GACX,UAAU,CAAC;AAEf;;GAEG;AACH,MAAM,MAAM,gBAAgB,GACxB,UAAU,GACV,QAAQ,GACR,QAAQ,GACR,MAAM,GACN,QAAQ,GACR,SAAS,GACT,UAAU,GACV,MAAM,GACN,UAAU,GACV,SAAS,GACT,OAAO,GACP,UAAU,GACV,eAAe,GACf,SAAS,GACT,YAAY,CAAC;AAEjB;;GAEG;AACH,MAAM,MAAM,WAAW,GACnB,OAAO,GACP,cAAc,GACd,QAAQ,GACR,UAAU,GACV,SAAS,GACT,YAAY,GACZ,UAAU,GACV,WAAW,GACX,YAAY,GACZ,YAAY,GACZ,eAAe,GACf,kBAAkB,GAClB,UAAU,GACV,WAAW,GACX,SAAS,CAAC;AAEd;;GAEG;AACH,MAAM,MAAM,kBAAkB,GAC1B,UAAU,GACV,WAAW,GACX,WAAW,GACX,SAAS,GACT,WAAW,GACX,UAAU,GACV,SAAS,GACT,MAAM,GACN,QAAQ,GACR,MAAM,GACN,aAAa,GACb,UAAU,GACV,aAAa,GACb,YAAY,GACZ,aAAa,CAAC;AAElB;;GAEG;AACH,MAAM,MAAM,YAAY,GACpB,gBAAgB,GAChB,gBAAgB,GAChB,gBAAgB,GAChB,WAAW,GACX,kBAAkB,CAAC;AAEvB;;GAEG;AACH,MAAM,MAAM,QAAQ,GAAG,CAAC,KAAK,EAAE,aAAa,KAAK,YAAY,CAAC"}
package/package.json ADDED
@@ -0,0 +1,78 @@
1
+ {
2
+ "name": "@nice2dev/icons-math",
3
+ "version": "1.0.10",
4
+ "description": "Mathematics icons for NiceToDev UI - operators, functions, geometry, sets, and statistics",
5
+ "main": "./dist/index.cjs",
6
+ "module": "./dist/index.mjs",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/index.mjs",
11
+ "require": "./dist/index.cjs",
12
+ "types": "./dist/index.d.ts"
13
+ },
14
+ "./operators": {
15
+ "import": "./dist/operators.mjs",
16
+ "require": "./dist/operators.cjs",
17
+ "types": "./dist/operators.d.ts"
18
+ },
19
+ "./functions": {
20
+ "import": "./dist/functions.mjs",
21
+ "require": "./dist/functions.cjs",
22
+ "types": "./dist/functions.d.ts"
23
+ },
24
+ "./geometry": {
25
+ "import": "./dist/geometry.mjs",
26
+ "require": "./dist/geometry.cjs",
27
+ "types": "./dist/geometry.d.ts"
28
+ },
29
+ "./sets": {
30
+ "import": "./dist/sets.mjs",
31
+ "require": "./dist/sets.cjs",
32
+ "types": "./dist/sets.d.ts"
33
+ },
34
+ "./statistics": {
35
+ "import": "./dist/statistics.mjs",
36
+ "require": "./dist/statistics.cjs",
37
+ "types": "./dist/statistics.d.ts"
38
+ }
39
+ },
40
+ "files": [
41
+ "dist"
42
+ ],
43
+ "sideEffects": false,
44
+ "scripts": {
45
+ "build": "tsc -p tsconfig.build.json && vite build",
46
+ "test": "vitest run --passWithNoTests",
47
+ "test:watch": "vitest",
48
+ "lint": "eslint src --ext .ts,.tsx",
49
+ "typecheck": "tsc --noEmit"
50
+ },
51
+ "keywords": [
52
+ "icons",
53
+ "react",
54
+ "svg",
55
+ "math",
56
+ "mathematics",
57
+ "geometry",
58
+ "statistics",
59
+ "nice2dev",
60
+ "omniwerk"
61
+ ],
62
+ "author": "NiceToDev",
63
+ "license": "MIT",
64
+ "peerDependencies": {
65
+ "react": "^18.0.0 || ^19.0.0"
66
+ },
67
+ "devDependencies": {
68
+ "@testing-library/react": "^16.1.0",
69
+ "@types/react": "^19.1.2",
70
+ "@vitejs/plugin-react": "^4.7.0",
71
+ "jsdom": "^26.1.0",
72
+ "react": "^19.1.0",
73
+ "typescript": "^5.9.3",
74
+ "vite": "^6.4.1",
75
+ "vite-plugin-dts": "^4.4.0",
76
+ "vitest": "^2.1.9"
77
+ }
78
+ }