@itcase/types 1.0.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/.editorconfig +35 -0
- package/.github/workflows/publish.yaml +33 -0
- package/.husky/check_message +5 -0
- package/.husky/post-commit +14 -0
- package/.husky/post-merge +14 -0
- package/.husky/pre-commit +6 -0
- package/.husky/pre-push +14 -0
- package/.husky/set_release_message +43 -0
- package/CHANGELOG.md +13 -0
- package/README.md +7 -0
- package/commitlint.config.mjs +3 -0
- package/eslint.config.mjs +3 -0
- package/index.ts +1 -0
- package/lint-staged.config.mjs +3 -0
- package/package.json +45 -0
- package/prettier.config.mjs +3 -0
- package/release.config.mjs +3 -0
- package/tsconfig.json +23 -0
- package/types/align/align.ts +15 -0
- package/types/align/alignDirection.ts +14 -0
- package/types/align/alignment.ts +14 -0
- package/types/align/index.ts +3 -0
- package/types/appearanceKeys.ts +33 -0
- package/types/border/borderColor.ts +46 -0
- package/types/border/borderColorHover.ts +18 -0
- package/types/border/borderType.ts +5 -0
- package/types/border/borderWidth.ts +16 -0
- package/types/border/index.ts +4 -0
- package/types/direction.ts +12 -0
- package/types/elevation.ts +5 -0
- package/types/fill/fill.ts +39 -0
- package/types/fill/fillGradient.ts +13 -0
- package/types/fill/fillHover.ts +20 -0
- package/types/fill/fillType.ts +5 -0
- package/types/fill/index.ts +4 -0
- package/types/flex/flexAlign.ts +12 -0
- package/types/flex/flexGrow.ts +5 -0
- package/types/flex/flexJustifyContent.ts +12 -0
- package/types/flex/flexWrap.ts +5 -0
- package/types/flex/index.ts +4 -0
- package/types/grid/gridAlign.ts +23 -0
- package/types/grid/gridAlignSelf.ts +23 -0
- package/types/grid/gridJustifyItems.ts +24 -0
- package/types/grid/gridJustifySelf.ts +28 -0
- package/types/grid/index.ts +4 -0
- package/types/height.ts +5 -0
- package/types/horizontal/horizontalContentAlign.ts +6 -0
- package/types/horizontal/horizontalResizeMode.ts +6 -0
- package/types/horizontal/index.ts +2 -0
- package/types/icon/iconFillSize.ts +16 -0
- package/types/icon/iconSize.ts +17 -0
- package/types/icon/index.ts +2 -0
- package/types/index.ts +33 -0
- package/types/itemColor.ts +39 -0
- package/types/justifyContent.ts +17 -0
- package/types/overflow.ts +5 -0
- package/types/position.ts +11 -0
- package/types/resizeMode.ts +11 -0
- package/types/shape.ts +5 -0
- package/types/size/index.ts +3 -0
- package/types/size/size.ts +5 -0
- package/types/size/sizeOption.ts +18 -0
- package/types/size/sizePX.ts +22 -0
- package/types/stacking.ts +5 -0
- package/types/state/index.ts +2 -0
- package/types/state/state.ts +12 -0
- package/types/state/stateKeys.ts +11 -0
- package/types/svgFill.ts +33 -0
- package/types/text/index.ts +10 -0
- package/types/text/textAlign.ts +5 -0
- package/types/text/textColor.ts +40 -0
- package/types/text/textColorActive.ts +40 -0
- package/types/text/textColorHover.ts +40 -0
- package/types/text/textGradient.ts +13 -0
- package/types/text/textSize.ts +5 -0
- package/types/text/textStyle.ts +5 -0
- package/types/text/textTag.ts +5 -0
- package/types/text/textWeight.ts +21 -0
- package/types/text/textWrap.ts +5 -0
- package/types/titleSize.ts +7 -0
- package/types/type.ts +13 -0
- package/types/underline.ts +5 -0
- package/types/vertical/index.ts +2 -0
- package/types/vertical/verticalContentAlign.ts +6 -0
- package/types/vertical/verticalResizeMode.ts +5 -0
- package/types/width.ts +5 -0
- package/types/wrap.ts +5 -0
package/types/width.ts
ADDED