@orfium/ictinus 4.42.1 → 4.43.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/dist/utils/common.d.ts +2 -0
- package/dist/utils/common.js +12 -1
- package/package.json +2 -1
package/dist/utils/common.d.ts
CHANGED
|
@@ -13,3 +13,5 @@ export declare type ButtonProps = Partial<Omit<ButtonHTMLAttributes<HTMLButtonEl
|
|
|
13
13
|
export declare type DivProps = Omit<React.HTMLProps<HTMLDivElement>, 'size' | 'css'>;
|
|
14
14
|
export declare type FlexDirectionProperty = 'row' | 'column' | 'row-reverse' | 'column-reverse';
|
|
15
15
|
export declare type ChangeEvent = React.ChangeEvent<HTMLInputElement>;
|
|
16
|
+
/** URL currently used for figma version 4.5 frozen */
|
|
17
|
+
export declare const FIGMA_URL = "https://www.figma.com/file/3deO7jGtkly8ij4TiIUpzY/Design-System-V4.5-(%E2%9D%84%EF%B8%8FDO-NOT-EDIT)";
|
package/dist/utils/common.js
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
exports.__esModule = true;
|
|
3
|
+
exports.__esModule = true;
|
|
4
|
+
exports.FIGMA_URL = void 0;
|
|
5
|
+
|
|
6
|
+
/** A type to turn any type optional properties to required */
|
|
7
|
+
|
|
8
|
+
/** A generic type for native events */
|
|
9
|
+
//@TODO fix props to not overwrite button props from base
|
|
10
|
+
//@TODO fix props to not overwrite div props from base
|
|
11
|
+
|
|
12
|
+
/** URL currently used for figma version 4.5 frozen */
|
|
13
|
+
var FIGMA_URL = 'https://www.figma.com/file/3deO7jGtkly8ij4TiIUpzY/Design-System-V4.5-(%E2%9D%84%EF%B8%8FDO-NOT-EDIT)';
|
|
14
|
+
exports.FIGMA_URL = FIGMA_URL;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orfium/ictinus",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.43.0",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"license": "MIT",
|
|
@@ -76,6 +76,7 @@
|
|
|
76
76
|
"react-router-dom": "^5.2.0",
|
|
77
77
|
"react-test-renderer": "^16.13.1",
|
|
78
78
|
"rimraf": "^3.0.2",
|
|
79
|
+
"storybook-addon-designs": "^6.2.1",
|
|
79
80
|
"storybook-addon-pseudo-states": "^1.0.0",
|
|
80
81
|
"styled-components": "^5.2.0",
|
|
81
82
|
"ts-jest": "^26.5.6",
|