@teamturing/react-kit 2.10.0 → 2.10.1
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.
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import icons from '@teamturing/icons';
|
|
2
|
-
import { ChipProps, StackProps, TextProps, SpaceProps, GridProps, GridUnitProps, StyledIconProps, ImageProps } from '../..';
|
|
2
|
+
import { ChipProps, StackProps, TextProps, SpaceProps, GridProps, GridUnitProps, StyledIconProps, ImageProps, AsProp } from '../..';
|
|
3
3
|
/**
|
|
4
4
|
* View Related Model
|
|
5
5
|
*/
|
|
6
6
|
export type TextViewType = {
|
|
7
7
|
text: string;
|
|
8
|
-
textProps?: {} & Pick<TextProps, 'typography' | 'textAlign' | 'color'
|
|
8
|
+
textProps?: {} & Pick<TextProps, 'typography' | 'textAlign' | 'color'> & AsProp;
|
|
9
9
|
spaceProps?: Omit<SpaceProps, 'sx'>;
|
|
10
10
|
};
|
|
11
11
|
export type ImageViewType = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teamturing/react-kit",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.1",
|
|
4
4
|
"description": "React components, hooks for create teamturing web application",
|
|
5
5
|
"author": "Sungchang Park <psch300@gmail.com> (https://github.com/psch300)",
|
|
6
6
|
"homepage": "https://github.com/weareteamturing/bombe#readme",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"check:lint": "eslint ./src --cache",
|
|
26
26
|
"check:type": "tsc --noEmit",
|
|
27
27
|
"build": "rm -rf dist esm && tsc --project tsconfig.cjs.json --declaration --emitDeclarationOnly --declarationDir dist && rollup --config rollup.config.js",
|
|
28
|
-
"generate-enigma-json-schema": "typescript-json-schema ./tsconfig.json EnigmaSectionType --aliasRefs --topRef --out ./src/enigma/schema/generated.json"
|
|
28
|
+
"generate-enigma-json-schema": "typescript-json-schema ./tsconfig.json EnigmaSectionType --include=./src/enigma/types/index.ts --aliasRefs --topRef --include=EnigmaSectionType --out ./src/enigma/schema/generated.json"
|
|
29
29
|
},
|
|
30
30
|
"bugs": {
|
|
31
31
|
"url": "https://github.com/weareteamturing/bombe/issues"
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"react-is": "^18.2.0",
|
|
60
60
|
"styled-system": "^5.1.5"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "588c13c2b6514cd7f1e9b7ca438ebb63ee0ee1ca"
|
|
63
63
|
}
|