Bladeren bron

Update workspace structure

Start separating trivial components to their own categories outside the
kitchen sink package.
pull/1/head
TheoryOfNekomata 11 maanden geleden
bovenliggende
commit
77bf6806bd
100 gewijzigde bestanden met toevoegingen van 2153 en 101 verwijderingen
  1. +9
    -0
      base/.eslintrc
  2. +107
    -0
      base/.gitignore
  3. +7
    -0
      base/LICENSE
  4. +66
    -0
      base/package.json
  5. +3
    -0
      base/pridepack.json
  6. +5
    -0
      base/src/button.ts
  7. +2
    -0
      base/src/index.ts
  8. +5
    -0
      base/src/text-control.ts
  9. +21
    -0
      base/tsconfig.eslint.json
  10. +21
    -0
      base/tsconfig.json
  11. +9
    -0
      categories/action/react/.eslintrc
  12. +107
    -0
      categories/action/react/.gitignore
  13. +7
    -0
      categories/action/react/LICENSE
  14. +81
    -0
      categories/action/react/package.json
  15. +3
    -0
      categories/action/react/pridepack.json
  16. +4
    -4
      categories/action/react/src/components/ActionButton/index.tsx
  17. +0
    -0
      categories/action/react/src/index.ts
  18. +21
    -0
      categories/action/react/tsconfig.eslint.json
  19. +21
    -0
      categories/action/react/tsconfig.json
  20. +8
    -0
      categories/action/react/vitest.config.ts
  21. +9
    -0
      categories/color/react/.eslintrc
  22. +107
    -0
      categories/color/react/.gitignore
  23. +7
    -0
      categories/color/react/LICENSE
  24. +80
    -0
      categories/color/react/package.json
  25. +3
    -0
      categories/color/react/pridepack.json
  26. +0
    -0
      categories/color/react/src/components/Swatch/index.tsx
  27. +0
    -0
      categories/color/react/src/index.ts
  28. +21
    -0
      categories/color/react/tsconfig.eslint.json
  29. +21
    -0
      categories/color/react/tsconfig.json
  30. +8
    -0
      categories/color/react/vitest.config.ts
  31. +9
    -0
      categories/formatted/react/.eslintrc
  32. +107
    -0
      categories/formatted/react/.gitignore
  33. +7
    -0
      categories/formatted/react/LICENSE
  34. +81
    -0
      categories/formatted/react/package.json
  35. +3
    -0
      categories/formatted/react/pridepack.json
  36. +3
    -3
      categories/formatted/react/src/components/EmailInput/index.tsx
  37. +3
    -3
      categories/formatted/react/src/components/PhoneNumberInput/index.tsx
  38. +3
    -3
      categories/formatted/react/src/components/UrlInput/index.tsx
  39. +0
    -0
      categories/formatted/react/src/index.ts
  40. +21
    -0
      categories/formatted/react/tsconfig.eslint.json
  41. +21
    -0
      categories/formatted/react/tsconfig.json
  42. +8
    -0
      categories/formatted/react/vitest.config.ts
  43. +9
    -0
      categories/freeform/react/.eslintrc
  44. +107
    -0
      categories/freeform/react/.gitignore
  45. +7
    -0
      categories/freeform/react/LICENSE
  46. +81
    -0
      categories/freeform/react/package.json
  47. +3
    -0
      categories/freeform/react/pridepack.json
  48. +3
    -3
      categories/freeform/react/src/components/MaskedTextInput/index.tsx
  49. +3
    -3
      categories/freeform/react/src/components/MultilineTextInput/index.tsx
  50. +4
    -4
      categories/freeform/react/src/components/TextInput/index.tsx
  51. +0
    -0
      categories/freeform/react/src/index.ts
  52. +21
    -0
      categories/freeform/react/tsconfig.eslint.json
  53. +21
    -0
      categories/freeform/react/tsconfig.json
  54. +8
    -0
      categories/freeform/react/vitest.config.ts
  55. +9
    -0
      categories/information/react/.eslintrc
  56. +107
    -0
      categories/information/react/.gitignore
  57. +7
    -0
      categories/information/react/LICENSE
  58. +80
    -0
      categories/information/react/package.json
  59. +3
    -0
      categories/information/react/pridepack.json
  60. +0
    -0
      categories/information/react/src/components/Badge/index.tsx
  61. +0
    -0
      categories/information/react/src/components/KeyValueTable/index.tsx
  62. +0
    -0
      categories/information/react/src/index.ts
  63. +21
    -0
      categories/information/react/tsconfig.eslint.json
  64. +21
    -0
      categories/information/react/tsconfig.json
  65. +8
    -0
      categories/information/react/vitest.config.ts
  66. +9
    -0
      categories/navigation/react/.eslintrc
  67. +107
    -0
      categories/navigation/react/.gitignore
  68. +7
    -0
      categories/navigation/react/LICENSE
  69. +81
    -0
      categories/navigation/react/package.json
  70. +3
    -0
      categories/navigation/react/pridepack.json
  71. +3
    -3
      categories/navigation/react/src/components/LinkButton/index.tsx
  72. +0
    -0
      categories/navigation/react/src/index.ts
  73. +21
    -0
      categories/navigation/react/tsconfig.eslint.json
  74. +21
    -0
      categories/navigation/react/tsconfig.json
  75. +8
    -0
      categories/navigation/react/vitest.config.ts
  76. +9
    -0
      packages/react-utils/.eslintrc
  77. +107
    -0
      packages/react-utils/.gitignore
  78. +7
    -0
      packages/react-utils/LICENSE
  79. +77
    -0
      packages/react-utils/package.json
  80. +3
    -0
      packages/react-utils/pridepack.json
  81. +1
    -1
      packages/react-utils/src/event.ts
  82. +18
    -0
      packages/react-utils/src/hooks/client-side.ts
  83. +2
    -0
      packages/react-utils/src/index.ts
  84. +21
    -0
      packages/react-utils/tsconfig.eslint.json
  85. +21
    -0
      packages/react-utils/tsconfig.json
  86. +8
    -0
      packages/react-utils/vitest.config.ts
  87. +9
    -1
      packages/web-kitchensink-reactnext/package.json
  88. +0
    -5
      packages/web-kitchensink-reactnext/src/base/button/index.ts
  89. +0
    -5
      packages/web-kitchensink-reactnext/src/base/textcontrol/index.ts
  90. +9
    -9
      packages/web-kitchensink-reactnext/src/categories/blob/react/components/AudioFilePreview/index.tsx
  91. +4
    -4
      packages/web-kitchensink-reactnext/src/categories/blob/react/components/AudioMiniFilePreview/index.tsx
  92. +5
    -5
      packages/web-kitchensink-reactnext/src/categories/blob/react/components/BinaryFilePreview/index.tsx
  93. +7
    -7
      packages/web-kitchensink-reactnext/src/categories/blob/react/components/FileSelectBox/index.tsx
  94. +7
    -7
      packages/web-kitchensink-reactnext/src/categories/blob/react/components/ImageFilePreview/index.tsx
  95. +5
    -5
      packages/web-kitchensink-reactnext/src/categories/blob/react/components/TextFilePreview/index.tsx
  96. +8
    -8
      packages/web-kitchensink-reactnext/src/categories/blob/react/components/VideoFilePreview/index.tsx
  97. +3
    -3
      packages/web-kitchensink-reactnext/src/categories/number/react/components/Spinner/index.tsx
  98. +4
    -4
      packages/web-kitchensink-reactnext/src/categories/option/react/components/ComboBox/index.tsx
  99. +3
    -8
      packages/web-kitchensink-reactnext/src/categories/option/react/components/DropdownSelect/index.tsx
  100. +3
    -3
      packages/web-kitchensink-reactnext/src/categories/option/react/components/MenuSelect/index.tsx

+ 9
- 0
base/.eslintrc Bestand weergeven

@@ -0,0 +1,9 @@
{
"root": true,
"extends": [
"lxsmnsyc/typescript"
],
"parserOptions": {
"project": "./tsconfig.eslint.json"
}
}

+ 107
- 0
base/.gitignore Bestand weergeven

@@ -0,0 +1,107 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.production
.env.development

# parcel-bundler cache (https://parceljs.org/)
.cache

# Next.js build output
.next

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and *not* Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

.npmrc

+ 7
- 0
base/LICENSE Bestand weergeven

@@ -0,0 +1,7 @@
MIT License Copyright (c) 2023 TheoryOfNekomata <allan.crisostomo@outlook.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

+ 66
- 0
base/package.json Bestand weergeven

@@ -0,0 +1,66 @@
{
"name": "@tesseract-design/web-base",
"version": "0.0.0",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=12"
},
"license": "MIT",
"keywords": [
"pridepack"
],
"devDependencies": {
"@types/node": "^18.14.1",
"eslint": "^8.35.0",
"eslint-config-lxsmnsyc": "^0.5.0",
"pridepack": "2.4.4",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"vitest": "^0.28.1"
},
"scripts": {
"prepublishOnly": "pridepack clean && pridepack build",
"build": "pridepack build",
"type-check": "pridepack check",
"lint": "pridepack lint",
"clean": "pridepack clean",
"watch": "pridepack watch",
"start": "pridepack start",
"dev": "pridepack dev",
"test": "vitest"
},
"private": false,
"description": "Base types for Tesseract.",
"repository": {
"url": "",
"type": "git"
},
"homepage": "",
"bugs": {
"url": ""
},
"author": "TheoryOfNekomata <allan.crisostomo@outlook.com>",
"publishConfig": {
"access": "public"
},
"types": "./dist/types/index.d.ts",
"main": "./dist/cjs/production/index.js",
"module": "./dist/esm/production/index.js",
"exports": {
".": {
"development": {
"require": "./dist/cjs/development/index.js",
"import": "./dist/esm/development/index.js"
},
"require": "./dist/cjs/production/index.js",
"import": "./dist/esm/production/index.js",
"types": "./dist/types/index.d.ts"
}
},
"typesVersions": {
"*": {}
}
}

+ 3
- 0
base/pridepack.json Bestand weergeven

@@ -0,0 +1,3 @@
{
"target": "es2018"
}

+ 5
- 0
base/src/button.ts Bestand weergeven

@@ -0,0 +1,5 @@
export type Type = 'submit' | 'reset' | 'button';

export type Variant = 'bare' | 'filled' | 'outline';

export type Size = 'small' | 'medium' | 'large';

+ 2
- 0
base/src/index.ts Bestand weergeven

@@ -0,0 +1,2 @@
export * as Button from './button';
export * as TextControl from './text-control';

+ 5
- 0
base/src/text-control.ts Bestand weergeven

@@ -0,0 +1,5 @@
export type Size = 'small' | 'medium' | 'large';

export type Variant = 'default' | 'alternate';

export type InputType = 'text' | 'search';

+ 21
- 0
base/tsconfig.eslint.json Bestand weergeven

@@ -0,0 +1,21 @@
{
"exclude": ["node_modules"],
"include": ["src", "types", "test"],
"compilerOptions": {
"module": "ESNext",
"lib": ["ESNext"],
"importHelpers": true,
"declaration": true,
"sourceMap": true,
"rootDir": "./",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"jsx": "react",
"esModuleInterop": true,
"target": "es2018"
}
}

+ 21
- 0
base/tsconfig.json Bestand weergeven

@@ -0,0 +1,21 @@
{
"exclude": ["node_modules"],
"include": ["src", "types"],
"compilerOptions": {
"module": "ESNext",
"lib": ["ESNext"],
"importHelpers": true,
"declaration": true,
"sourceMap": true,
"rootDir": "./src",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"jsx": "react",
"esModuleInterop": true,
"target": "es2018"
}
}

+ 9
- 0
categories/action/react/.eslintrc Bestand weergeven

@@ -0,0 +1,9 @@
{
"root": true,
"extends": [
"lxsmnsyc/typescript/react"
],
"parserOptions": {
"project": "./tsconfig.eslint.json"
}
}

+ 107
- 0
categories/action/react/.gitignore Bestand weergeven

@@ -0,0 +1,107 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.production
.env.development

# parcel-bundler cache (https://parceljs.org/)
.cache

# Next.js build output
.next

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and *not* Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

.npmrc

+ 7
- 0
categories/action/react/LICENSE Bestand weergeven

@@ -0,0 +1,7 @@
MIT License Copyright (c) 2023 TheoryOfNekomata <allan.crisostomo@outlook.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

+ 81
- 0
categories/action/react/package.json Bestand weergeven

@@ -0,0 +1,81 @@
{
"name": "@tesseract-design/web-action-react",
"version": "0.0.0",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=12"
},
"license": "MIT",
"keywords": [
"pridepack"
],
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/node": "^18.14.1",
"@types/react": "^18.0.27",
"eslint": "^8.35.0",
"eslint-config-lxsmnsyc": "^0.5.0",
"jsdom": "^21.1.0",
"pridepack": "2.4.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"vitest": "^0.28.1"
},
"peerDependencies": {
"react": "^16.8 || ^17.0 || ^18.0",
"react-dom": "^16.8 || ^17.0 || ^18.0"
},
"scripts": {
"prepublishOnly": "pridepack clean && pridepack build",
"build": "pridepack build",
"type-check": "pridepack check",
"lint": "pridepack lint",
"clean": "pridepack clean",
"watch": "pridepack watch",
"start": "pridepack start",
"dev": "pridepack dev",
"test": "vitest"
},
"private": false,
"description": "Tesseract components for committing actions for forms.",
"repository": {
"url": "",
"type": "git"
},
"homepage": "",
"bugs": {
"url": ""
},
"author": "TheoryOfNekomata <allan.crisostomo@outlook.com>",
"publishConfig": {
"access": "public"
},
"dependencies": {
"clsx": "^1.2.1",
"@tesseract-design/web-base": "workspace:*"
},
"types": "./dist/types/index.d.ts",
"main": "./dist/cjs/production/index.js",
"module": "./dist/esm/production/index.js",
"exports": {
".": {
"development": {
"require": "./dist/cjs/development/index.js",
"import": "./dist/esm/development/index.js"
},
"require": "./dist/cjs/production/index.js",
"import": "./dist/esm/production/index.js",
"types": "./dist/types/index.d.ts"
}
},
"typesVersions": {
"*": {}
}
}

+ 3
- 0
categories/action/react/pridepack.json Bestand weergeven

@@ -0,0 +1,3 @@
{
"target": "es2018"
}

packages/web-kitchensink-reactnext/src/categories/action/react/components/ActionButton/index.tsx → categories/action/react/src/components/ActionButton/index.tsx Bestand weergeven

@@ -1,17 +1,17 @@
import * as React from 'react';
import clsx from 'clsx';
import * as ButtonBase from '@tesseract-design/web-base-button';
import { Button } from '@tesseract-design/web-base';

export type ActionButtonDerivedElement = HTMLButtonElement;

export interface ActionButtonProps extends Omit<React.HTMLProps<ActionButtonDerivedElement>, 'type' | 'size'> {
type?: ButtonBase.ButtonType;
variant: ButtonBase.ButtonVariant;
type?: Button.Type;
variant: Button.Variant;
block?: boolean;
subtext?: React.ReactNode;
badge?: React.ReactNode;
menuItem?: boolean;
size?: ButtonBase.ButtonSize;
size?: Button.Size;
compact?: boolean;
}


packages/web-kitchensink-reactnext/src/categories/action/react/index.ts → categories/action/react/src/index.ts Bestand weergeven


+ 21
- 0
categories/action/react/tsconfig.eslint.json Bestand weergeven

@@ -0,0 +1,21 @@
{
"exclude": ["node_modules"],
"include": ["src", "types", "test"],
"compilerOptions": {
"module": "ESNext",
"lib": ["DOM", "ESNext"],
"importHelpers": true,
"declaration": true,
"sourceMap": true,
"rootDir": "./",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"jsx": "react",
"esModuleInterop": true,
"target": "es2018"
}
}

+ 21
- 0
categories/action/react/tsconfig.json Bestand weergeven

@@ -0,0 +1,21 @@
{
"exclude": ["node_modules"],
"include": ["src", "types"],
"compilerOptions": {
"module": "ESNext",
"lib": ["DOM", "ESNext"],
"importHelpers": true,
"declaration": true,
"sourceMap": true,
"rootDir": "./src",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"jsx": "react",
"esModuleInterop": true,
"target": "es2018"
}
}

+ 8
- 0
categories/action/react/vitest.config.ts Bestand weergeven

@@ -0,0 +1,8 @@
/// <reference types="vitest" />

export default ({
test: {
global: true,
environment: 'jsdom',
},
});

+ 9
- 0
categories/color/react/.eslintrc Bestand weergeven

@@ -0,0 +1,9 @@
{
"root": true,
"extends": [
"lxsmnsyc/typescript/react"
],
"parserOptions": {
"project": "./tsconfig.eslint.json"
}
}

+ 107
- 0
categories/color/react/.gitignore Bestand weergeven

@@ -0,0 +1,107 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.production
.env.development

# parcel-bundler cache (https://parceljs.org/)
.cache

# Next.js build output
.next

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and *not* Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

.npmrc

+ 7
- 0
categories/color/react/LICENSE Bestand weergeven

@@ -0,0 +1,7 @@
MIT License Copyright (c) 2023 TheoryOfNekomata <allan.crisostomo@outlook.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

+ 80
- 0
categories/color/react/package.json Bestand weergeven

@@ -0,0 +1,80 @@
{
"name": "@tesseract-design/web-color-react",
"version": "0.0.0",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=12"
},
"license": "MIT",
"keywords": [
"pridepack"
],
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/node": "^18.14.1",
"@types/react": "^18.0.27",
"eslint": "^8.35.0",
"eslint-config-lxsmnsyc": "^0.5.0",
"jsdom": "^21.1.0",
"pridepack": "2.4.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"vitest": "^0.28.1"
},
"peerDependencies": {
"react": "^16.8 || ^17.0 || ^18.0",
"react-dom": "^16.8 || ^17.0 || ^18.0"
},
"scripts": {
"prepublishOnly": "pridepack clean && pridepack build",
"build": "pridepack build",
"type-check": "pridepack check",
"lint": "pridepack lint",
"clean": "pridepack clean",
"watch": "pridepack watch",
"start": "pridepack start",
"dev": "pridepack dev",
"test": "vitest"
},
"private": false,
"description": "Tesseract components for color data.",
"repository": {
"url": "",
"type": "git"
},
"homepage": "",
"bugs": {
"url": ""
},
"author": "TheoryOfNekomata <allan.crisostomo@outlook.com>",
"publishConfig": {
"access": "public"
},
"dependencies": {
"clsx": "^1.2.1"
},
"types": "./dist/types/index.d.ts",
"main": "./dist/cjs/production/index.js",
"module": "./dist/esm/production/index.js",
"exports": {
".": {
"development": {
"require": "./dist/cjs/development/index.js",
"import": "./dist/esm/development/index.js"
},
"require": "./dist/cjs/production/index.js",
"import": "./dist/esm/production/index.js",
"types": "./dist/types/index.d.ts"
}
},
"typesVersions": {
"*": {}
}
}

+ 3
- 0
categories/color/react/pridepack.json Bestand weergeven

@@ -0,0 +1,3 @@
{
"target": "es2018"
}

packages/web-kitchensink-reactnext/src/categories/color/react/components/Swatch/index.tsx → categories/color/react/src/components/Swatch/index.tsx Bestand weergeven


packages/web-kitchensink-reactnext/src/categories/color/react/index.ts → categories/color/react/src/index.ts Bestand weergeven


+ 21
- 0
categories/color/react/tsconfig.eslint.json Bestand weergeven

@@ -0,0 +1,21 @@
{
"exclude": ["node_modules"],
"include": ["src", "types", "test"],
"compilerOptions": {
"module": "ESNext",
"lib": ["DOM", "ESNext"],
"importHelpers": true,
"declaration": true,
"sourceMap": true,
"rootDir": "./",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"jsx": "react",
"esModuleInterop": true,
"target": "es2018"
}
}

+ 21
- 0
categories/color/react/tsconfig.json Bestand weergeven

@@ -0,0 +1,21 @@
{
"exclude": ["node_modules"],
"include": ["src", "types"],
"compilerOptions": {
"module": "ESNext",
"lib": ["DOM", "ESNext"],
"importHelpers": true,
"declaration": true,
"sourceMap": true,
"rootDir": "./src",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"jsx": "react",
"esModuleInterop": true,
"target": "es2018"
}
}

+ 8
- 0
categories/color/react/vitest.config.ts Bestand weergeven

@@ -0,0 +1,8 @@
/// <reference types="vitest" />

export default ({
test: {
global: true,
environment: 'jsdom',
},
});

+ 9
- 0
categories/formatted/react/.eslintrc Bestand weergeven

@@ -0,0 +1,9 @@
{
"root": true,
"extends": [
"lxsmnsyc/typescript/react"
],
"parserOptions": {
"project": "./tsconfig.eslint.json"
}
}

+ 107
- 0
categories/formatted/react/.gitignore Bestand weergeven

@@ -0,0 +1,107 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.production
.env.development

# parcel-bundler cache (https://parceljs.org/)
.cache

# Next.js build output
.next

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and *not* Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

.npmrc

+ 7
- 0
categories/formatted/react/LICENSE Bestand weergeven

@@ -0,0 +1,7 @@
MIT License Copyright (c) 2023 TheoryOfNekomata <allan.crisostomo@outlook.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

+ 81
- 0
categories/formatted/react/package.json Bestand weergeven

@@ -0,0 +1,81 @@
{
"name": "@tesseract-design/web-formatted-react",
"version": "0.0.0",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=12"
},
"license": "MIT",
"keywords": [
"pridepack"
],
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/node": "^18.14.1",
"@types/react": "^18.0.27",
"eslint": "^8.35.0",
"eslint-config-lxsmnsyc": "^0.5.0",
"jsdom": "^21.1.0",
"pridepack": "2.4.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"vitest": "^0.28.1"
},
"peerDependencies": {
"react": "^16.8 || ^17.0 || ^18.0",
"react-dom": "^16.8 || ^17.0 || ^18.0"
},
"scripts": {
"prepublishOnly": "pridepack clean && pridepack build",
"build": "pridepack build",
"type-check": "pridepack check",
"lint": "pridepack lint",
"clean": "pridepack clean",
"watch": "pridepack watch",
"start": "pridepack start",
"dev": "pridepack dev",
"test": "vitest"
},
"private": false,
"description": "Tesseract components for formatted data.",
"repository": {
"url": "",
"type": "git"
},
"homepage": "",
"bugs": {
"url": ""
},
"author": "TheoryOfNekomata <allan.crisostomo@outlook.com>",
"publishConfig": {
"access": "public"
},
"dependencies": {
"clsx": "^1.2.1",
"@tesseract-design/web-base": "workspace:*"
},
"types": "./dist/types/index.d.ts",
"main": "./dist/cjs/production/index.js",
"module": "./dist/esm/production/index.js",
"exports": {
".": {
"development": {
"require": "./dist/cjs/development/index.js",
"import": "./dist/esm/development/index.js"
},
"require": "./dist/cjs/production/index.js",
"import": "./dist/esm/production/index.js",
"types": "./dist/types/index.d.ts"
}
},
"typesVersions": {
"*": {}
}
}

+ 3
- 0
categories/formatted/react/pridepack.json Bestand weergeven

@@ -0,0 +1,3 @@
{
"target": "es2018"
}

packages/web-kitchensink-reactnext/src/categories/formatted/react/components/EmailInput/index.tsx → categories/formatted/react/src/components/EmailInput/index.tsx Bestand weergeven

@@ -1,5 +1,5 @@
import * as React from 'react';
import * as TextControlBase from '@/base/textcontrol';
import { TextControl } from '@tesseract-design/web-base';
import clsx from 'clsx';

export type EmailInputDerivedElement = HTMLInputElement;
@@ -16,7 +16,7 @@ export interface EmailInputProps extends Omit<React.HTMLProps<EmailInputDerivedE
/**
* Size of the component.
*/
size?: TextControlBase.TextControlSize,
size?: TextControl.Size,
/**
* Additional description, usually graphical, indicating the nature of the component's value.
*/
@@ -32,7 +32,7 @@ export interface EmailInputProps extends Omit<React.HTMLProps<EmailInputDerivedE
/**
* Style of the component.
*/
variant?: TextControlBase.TextControlVariant,
variant?: TextControl.Variant,
/**
* Is the label hidden?
*/

packages/web-kitchensink-reactnext/src/categories/formatted/react/components/PhoneNumberInput/index.tsx → categories/formatted/react/src/components/PhoneNumberInput/index.tsx Bestand weergeven

@@ -1,5 +1,5 @@
import * as React from 'react';
import * as TextControlBase from '@/base/textcontrol';
import { TextControl } from '@tesseract-design/web-base';
import clsx from 'clsx';

export type PhoneNumberInputDerivedElement = HTMLInputElement;
@@ -16,7 +16,7 @@ export interface PhoneNumberInputProps extends Omit<React.HTMLProps<PhoneNumberI
/**
* Size of the component.
*/
size?: TextControlBase.TextControlSize,
size?: TextControl.Size,
/**
* Additional description, usually graphical, indicating the nature of the component's value.
*/
@@ -32,7 +32,7 @@ export interface PhoneNumberInputProps extends Omit<React.HTMLProps<PhoneNumberI
/**
* Style of the component.
*/
variant?: TextControlBase.TextControlVariant,
variant?: TextControl.Variant,
/**
* Is the label hidden?
*/

packages/web-kitchensink-reactnext/src/categories/formatted/react/components/UrlInput/index.tsx → categories/formatted/react/src/components/UrlInput/index.tsx Bestand weergeven

@@ -1,5 +1,5 @@
import * as React from 'react';
import * as TextControlBase from '@/base/textcontrol';
import { TextControl } from '@tesseract-design/web-base';
import clsx from 'clsx';

export type UrlInputDerivedElement = HTMLInputElement;
@@ -16,7 +16,7 @@ export interface UrlInputProps extends Omit<React.HTMLProps<UrlInputDerivedEleme
/**
* Size of the component.
*/
size?: TextControlBase.TextControlSize,
size?: TextControl.Size,
/**
* Additional description, usually graphical, indicating the nature of the component's value.
*/
@@ -32,7 +32,7 @@ export interface UrlInputProps extends Omit<React.HTMLProps<UrlInputDerivedEleme
/**
* Style of the component.
*/
variant?: TextControlBase.TextControlVariant,
variant?: TextControl.Variant,
/**
* Is the label hidden?
*/

packages/web-kitchensink-reactnext/src/categories/formatted/react/index.ts → categories/formatted/react/src/index.ts Bestand weergeven


+ 21
- 0
categories/formatted/react/tsconfig.eslint.json Bestand weergeven

@@ -0,0 +1,21 @@
{
"exclude": ["node_modules"],
"include": ["src", "types", "test"],
"compilerOptions": {
"module": "ESNext",
"lib": ["DOM", "ESNext"],
"importHelpers": true,
"declaration": true,
"sourceMap": true,
"rootDir": "./",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"jsx": "react",
"esModuleInterop": true,
"target": "es2018"
}
}

+ 21
- 0
categories/formatted/react/tsconfig.json Bestand weergeven

@@ -0,0 +1,21 @@
{
"exclude": ["node_modules"],
"include": ["src", "types"],
"compilerOptions": {
"module": "ESNext",
"lib": ["DOM", "ESNext"],
"importHelpers": true,
"declaration": true,
"sourceMap": true,
"rootDir": "./src",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"jsx": "react",
"esModuleInterop": true,
"target": "es2018"
}
}

+ 8
- 0
categories/formatted/react/vitest.config.ts Bestand weergeven

@@ -0,0 +1,8 @@
/// <reference types="vitest" />

export default ({
test: {
global: true,
environment: 'jsdom',
},
});

+ 9
- 0
categories/freeform/react/.eslintrc Bestand weergeven

@@ -0,0 +1,9 @@
{
"root": true,
"extends": [
"lxsmnsyc/typescript/react"
],
"parserOptions": {
"project": "./tsconfig.eslint.json"
}
}

+ 107
- 0
categories/freeform/react/.gitignore Bestand weergeven

@@ -0,0 +1,107 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.production
.env.development

# parcel-bundler cache (https://parceljs.org/)
.cache

# Next.js build output
.next

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and *not* Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

.npmrc

+ 7
- 0
categories/freeform/react/LICENSE Bestand weergeven

@@ -0,0 +1,7 @@
MIT License Copyright (c) 2023 TheoryOfNekomata <allan.crisostomo@outlook.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

+ 81
- 0
categories/freeform/react/package.json Bestand weergeven

@@ -0,0 +1,81 @@
{
"name": "@tesseract-design/web-freeform-react",
"version": "0.0.0",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=12"
},
"license": "MIT",
"keywords": [
"pridepack"
],
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/node": "^18.14.1",
"@types/react": "^18.0.27",
"eslint": "^8.35.0",
"eslint-config-lxsmnsyc": "^0.5.0",
"jsdom": "^21.1.0",
"pridepack": "2.4.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"vitest": "^0.28.1"
},
"peerDependencies": {
"react": "^16.8 || ^17.0 || ^18.0",
"react-dom": "^16.8 || ^17.0 || ^18.0"
},
"scripts": {
"prepublishOnly": "pridepack clean && pridepack build",
"build": "pridepack build",
"type-check": "pridepack check",
"lint": "pridepack lint",
"clean": "pridepack clean",
"watch": "pridepack watch",
"start": "pridepack start",
"dev": "pridepack dev",
"test": "vitest"
},
"private": false,
"description": "Tesseract components for freeform data.",
"repository": {
"url": "",
"type": "git"
},
"homepage": "",
"bugs": {
"url": ""
},
"author": "TheoryOfNekomata <allan.crisostomo@outlook.com>",
"publishConfig": {
"access": "public"
},
"dependencies": {
"clsx": "^1.2.1",
"@tesseract-design/web-base": "workspace:*"
},
"types": "./dist/types/index.d.ts",
"main": "./dist/cjs/production/index.js",
"module": "./dist/esm/production/index.js",
"exports": {
".": {
"development": {
"require": "./dist/cjs/development/index.js",
"import": "./dist/esm/development/index.js"
},
"require": "./dist/cjs/production/index.js",
"import": "./dist/esm/production/index.js",
"types": "./dist/types/index.d.ts"
}
},
"typesVersions": {
"*": {}
}
}

+ 3
- 0
categories/freeform/react/pridepack.json Bestand weergeven

@@ -0,0 +1,3 @@
{
"target": "es2018"
}

packages/web-kitchensink-reactnext/src/categories/freeform/react/components/MaskedTextInput/index.tsx → categories/freeform/react/src/components/MaskedTextInput/index.tsx Bestand weergeven

@@ -1,5 +1,5 @@
import * as React from 'react';
import * as TextControlBase from '@tesseract-design/web-base-textcontrol';
import { TextControl } from '@tesseract-design/web-base';
import clsx from 'clsx';

export type MaskedTextInputDerivedElement = HTMLInputElement;
@@ -16,7 +16,7 @@ export interface MaskedTextInputProps extends Omit<React.HTMLProps<MaskedTextInp
/**
* Size of the component.
*/
size?: TextControlBase.TextControlSize,
size?: TextControl.Size,
/**
* Additional description, usually graphical, indicating the nature of the component's value.
*/
@@ -32,7 +32,7 @@ export interface MaskedTextInputProps extends Omit<React.HTMLProps<MaskedTextInp
/**
* Style of the component.
*/
variant?: TextControlBase.TextControlVariant,
variant?: TextControl.Variant,
/**
* Is the label hidden?
*/

packages/web-kitchensink-reactnext/src/categories/freeform/react/components/MultilineTextInput/index.tsx → categories/freeform/react/src/components/MultilineTextInput/index.tsx Bestand weergeven

@@ -1,5 +1,5 @@
import * as React from 'react';
import * as TextControlBase from '@tesseract-design/web-base-textcontrol';
import { TextControl } from '@tesseract-design/web-base';
import clsx from 'clsx';

export type MultilineTextInputDerivedElement = HTMLTextAreaElement;
@@ -16,7 +16,7 @@ export interface MultilineTextInputProps extends Omit<React.HTMLProps<MultilineT
/**
* Size of the component.
*/
size?: TextControlBase.TextControlSize,
size?: TextControl.Size,
/**
* Additional description, usually graphical, indicating the nature of the component's value.
*/
@@ -32,7 +32,7 @@ export interface MultilineTextInputProps extends Omit<React.HTMLProps<MultilineT
/**
* Style of the component.
*/
variant?: TextControlBase.TextControlVariant,
variant?: TextControl.Variant,
/**
* Is the label hidden?
*/

packages/web-kitchensink-reactnext/src/categories/freeform/react/components/TextInput/index.tsx → categories/freeform/react/src/components/TextInput/index.tsx Bestand weergeven

@@ -1,5 +1,5 @@
import * as React from 'react';
import * as TextControlBase from '@tesseract-design/web-base-textcontrol';
import { TextControl } from '@tesseract-design/web-base';
import clsx from 'clsx';

export type TextInputDerivedElement = HTMLInputElement;
@@ -16,7 +16,7 @@ export interface TextInputProps extends Omit<React.HTMLProps<TextInputDerivedEle
/**
* Size of the component.
*/
size?: TextControlBase.TextControlSize,
size?: TextControl.Size,
/**
* Additional description, usually graphical, indicating the nature of the component's value.
*/
@@ -32,11 +32,11 @@ export interface TextInputProps extends Omit<React.HTMLProps<TextInputDerivedEle
/**
* Type of the component value.
*/
type?: TextControlBase.TextControlInputType,
type?: TextControl.InputType,
/**
* Style of the component.
*/
variant?: TextControlBase.TextControlVariant,
variant?: TextControl.Variant,
/**
* Is the label hidden?
*/

packages/web-kitchensink-reactnext/src/categories/freeform/react/index.ts → categories/freeform/react/src/index.ts Bestand weergeven


+ 21
- 0
categories/freeform/react/tsconfig.eslint.json Bestand weergeven

@@ -0,0 +1,21 @@
{
"exclude": ["node_modules"],
"include": ["src", "types", "test"],
"compilerOptions": {
"module": "ESNext",
"lib": ["DOM", "ESNext"],
"importHelpers": true,
"declaration": true,
"sourceMap": true,
"rootDir": "./",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"jsx": "react",
"esModuleInterop": true,
"target": "es2018"
}
}

+ 21
- 0
categories/freeform/react/tsconfig.json Bestand weergeven

@@ -0,0 +1,21 @@
{
"exclude": ["node_modules"],
"include": ["src", "types"],
"compilerOptions": {
"module": "ESNext",
"lib": ["DOM", "ESNext"],
"importHelpers": true,
"declaration": true,
"sourceMap": true,
"rootDir": "./src",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"jsx": "react",
"esModuleInterop": true,
"target": "es2018"
}
}

+ 8
- 0
categories/freeform/react/vitest.config.ts Bestand weergeven

@@ -0,0 +1,8 @@
/// <reference types="vitest" />

export default ({
test: {
global: true,
environment: 'jsdom',
},
});

+ 9
- 0
categories/information/react/.eslintrc Bestand weergeven

@@ -0,0 +1,9 @@
{
"root": true,
"extends": [
"lxsmnsyc/typescript/react"
],
"parserOptions": {
"project": "./tsconfig.eslint.json"
}
}

+ 107
- 0
categories/information/react/.gitignore Bestand weergeven

@@ -0,0 +1,107 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.production
.env.development

# parcel-bundler cache (https://parceljs.org/)
.cache

# Next.js build output
.next

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and *not* Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

.npmrc

+ 7
- 0
categories/information/react/LICENSE Bestand weergeven

@@ -0,0 +1,7 @@
MIT License Copyright (c) 2023 TheoryOfNekomata <allan.crisostomo@outlook.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

+ 80
- 0
categories/information/react/package.json Bestand weergeven

@@ -0,0 +1,80 @@
{
"name": "@tesseract-design/web-information-react",
"version": "0.0.0",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=12"
},
"license": "MIT",
"keywords": [
"pridepack"
],
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/node": "^18.14.1",
"@types/react": "^18.0.27",
"eslint": "^8.35.0",
"eslint-config-lxsmnsyc": "^0.5.0",
"jsdom": "^21.1.0",
"pridepack": "2.4.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"vitest": "^0.28.1"
},
"peerDependencies": {
"react": "^16.8 || ^17.0 || ^18.0",
"react-dom": "^16.8 || ^17.0 || ^18.0"
},
"scripts": {
"prepublishOnly": "pridepack clean && pridepack build",
"build": "pridepack build",
"type-check": "pridepack check",
"lint": "pridepack lint",
"clean": "pridepack clean",
"watch": "pridepack watch",
"start": "pridepack start",
"dev": "pridepack dev",
"test": "vitest"
},
"private": false,
"description": "Tesseract components for displaying data.",
"repository": {
"url": "",
"type": "git"
},
"homepage": "",
"bugs": {
"url": ""
},
"author": "TheoryOfNekomata <allan.crisostomo@outlook.com>",
"publishConfig": {
"access": "public"
},
"dependencies": {
"clsx": "^1.2.1"
},
"types": "./dist/types/index.d.ts",
"main": "./dist/cjs/production/index.js",
"module": "./dist/esm/production/index.js",
"exports": {
".": {
"development": {
"require": "./dist/cjs/development/index.js",
"import": "./dist/esm/development/index.js"
},
"require": "./dist/cjs/production/index.js",
"import": "./dist/esm/production/index.js",
"types": "./dist/types/index.d.ts"
}
},
"typesVersions": {
"*": {}
}
}

+ 3
- 0
categories/information/react/pridepack.json Bestand weergeven

@@ -0,0 +1,3 @@
{
"target": "es2018"
}

packages/web-kitchensink-reactnext/src/categories/information/react/components/Badge/index.tsx → categories/information/react/src/components/Badge/index.tsx Bestand weergeven


packages/web-kitchensink-reactnext/src/categories/information/react/components/KeyValueTable/index.tsx → categories/information/react/src/components/KeyValueTable/index.tsx Bestand weergeven


packages/web-kitchensink-reactnext/src/categories/information/react/index.ts → categories/information/react/src/index.ts Bestand weergeven


+ 21
- 0
categories/information/react/tsconfig.eslint.json Bestand weergeven

@@ -0,0 +1,21 @@
{
"exclude": ["node_modules"],
"include": ["src", "types", "test"],
"compilerOptions": {
"module": "ESNext",
"lib": ["DOM", "ESNext"],
"importHelpers": true,
"declaration": true,
"sourceMap": true,
"rootDir": "./",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"jsx": "react",
"esModuleInterop": true,
"target": "es2018"
}
}

+ 21
- 0
categories/information/react/tsconfig.json Bestand weergeven

@@ -0,0 +1,21 @@
{
"exclude": ["node_modules"],
"include": ["src", "types"],
"compilerOptions": {
"module": "ESNext",
"lib": ["DOM", "ESNext"],
"importHelpers": true,
"declaration": true,
"sourceMap": true,
"rootDir": "./src",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"jsx": "react",
"esModuleInterop": true,
"target": "es2018"
}
}

+ 8
- 0
categories/information/react/vitest.config.ts Bestand weergeven

@@ -0,0 +1,8 @@
/// <reference types="vitest" />

export default ({
test: {
global: true,
environment: 'jsdom',
},
});

+ 9
- 0
categories/navigation/react/.eslintrc Bestand weergeven

@@ -0,0 +1,9 @@
{
"root": true,
"extends": [
"lxsmnsyc/typescript/react"
],
"parserOptions": {
"project": "./tsconfig.eslint.json"
}
}

+ 107
- 0
categories/navigation/react/.gitignore Bestand weergeven

@@ -0,0 +1,107 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.production
.env.development

# parcel-bundler cache (https://parceljs.org/)
.cache

# Next.js build output
.next

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and *not* Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

.npmrc

+ 7
- 0
categories/navigation/react/LICENSE Bestand weergeven

@@ -0,0 +1,7 @@
MIT License Copyright (c) 2023 TheoryOfNekomata <allan.crisostomo@outlook.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

+ 81
- 0
categories/navigation/react/package.json Bestand weergeven

@@ -0,0 +1,81 @@
{
"name": "@tesseract-design/web-navigation-react",
"version": "0.0.0",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=12"
},
"license": "MIT",
"keywords": [
"pridepack"
],
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/node": "^18.14.1",
"@types/react": "^18.0.27",
"eslint": "^8.35.0",
"eslint-config-lxsmnsyc": "^0.5.0",
"jsdom": "^21.1.0",
"pridepack": "2.4.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"vitest": "^0.28.1"
},
"peerDependencies": {
"react": "^16.8 || ^17.0 || ^18.0",
"react-dom": "^16.8 || ^17.0 || ^18.0"
},
"scripts": {
"prepublishOnly": "pridepack clean && pridepack build",
"build": "pridepack build",
"type-check": "pridepack check",
"lint": "pridepack lint",
"clean": "pridepack clean",
"watch": "pridepack watch",
"start": "pridepack start",
"dev": "pridepack dev",
"test": "vitest"
},
"private": false,
"description": "Tesseract components for navigation.",
"repository": {
"url": "",
"type": "git"
},
"homepage": "",
"bugs": {
"url": ""
},
"author": "TheoryOfNekomata <allan.crisostomo@outlook.com>",
"publishConfig": {
"access": "public"
},
"dependencies": {
"clsx": "^1.2.1",
"@tesseract-design/web-base": "workspace:*"
},
"types": "./dist/types/index.d.ts",
"main": "./dist/cjs/production/index.js",
"module": "./dist/esm/production/index.js",
"exports": {
".": {
"development": {
"require": "./dist/cjs/development/index.js",
"import": "./dist/esm/development/index.js"
},
"require": "./dist/cjs/production/index.js",
"import": "./dist/esm/production/index.js",
"types": "./dist/types/index.d.ts"
}
},
"typesVersions": {
"*": {}
}
}

+ 3
- 0
categories/navigation/react/pridepack.json Bestand weergeven

@@ -0,0 +1,3 @@
{
"target": "es2018"
}

packages/web-kitchensink-reactnext/src/categories/navigation/react/components/LinkButton/index.tsx → categories/navigation/react/src/components/LinkButton/index.tsx Bestand weergeven

@@ -1,16 +1,16 @@
import * as React from 'react';
import clsx from 'clsx';
import * as ButtonBase from '@tesseract-design/web-base-button';
import { Button } from '@tesseract-design/web-base';

export type LinkButtonDerivedElement = HTMLAnchorElement;

export interface LinkButtonProps extends Omit<React.HTMLProps<LinkButtonDerivedElement>, 'size'> {
block?: boolean;
variant: ButtonBase.ButtonVariant;
variant: Button.Variant;
subtext?: React.ReactNode;
badge?: React.ReactNode;
menuItem?: boolean;
size?: ButtonBase.ButtonSize;
size?: Button.Size;
compact?: boolean;
component?: React.ElementType;
}

packages/web-kitchensink-reactnext/src/categories/navigation/react/index.ts → categories/navigation/react/src/index.ts Bestand weergeven


+ 21
- 0
categories/navigation/react/tsconfig.eslint.json Bestand weergeven

@@ -0,0 +1,21 @@
{
"exclude": ["node_modules"],
"include": ["src", "types", "test"],
"compilerOptions": {
"module": "ESNext",
"lib": ["DOM", "ESNext"],
"importHelpers": true,
"declaration": true,
"sourceMap": true,
"rootDir": "./",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"jsx": "react",
"esModuleInterop": true,
"target": "es2018"
}
}

+ 21
- 0
categories/navigation/react/tsconfig.json Bestand weergeven

@@ -0,0 +1,21 @@
{
"exclude": ["node_modules"],
"include": ["src", "types"],
"compilerOptions": {
"module": "ESNext",
"lib": ["DOM", "ESNext"],
"importHelpers": true,
"declaration": true,
"sourceMap": true,
"rootDir": "./src",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"jsx": "react",
"esModuleInterop": true,
"target": "es2018"
}
}

+ 8
- 0
categories/navigation/react/vitest.config.ts Bestand weergeven

@@ -0,0 +1,8 @@
/// <reference types="vitest" />

export default ({
test: {
global: true,
environment: 'jsdom',
},
});

+ 9
- 0
packages/react-utils/.eslintrc Bestand weergeven

@@ -0,0 +1,9 @@
{
"root": true,
"extends": [
"lxsmnsyc/typescript/react"
],
"parserOptions": {
"project": "./tsconfig.eslint.json"
}
}

+ 107
- 0
packages/react-utils/.gitignore Bestand weergeven

@@ -0,0 +1,107 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.production
.env.development

# parcel-bundler cache (https://parceljs.org/)
.cache

# Next.js build output
.next

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and *not* Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

.npmrc

+ 7
- 0
packages/react-utils/LICENSE Bestand weergeven

@@ -0,0 +1,7 @@
MIT License Copyright (c) 2023 TheoryOfNekomata <allan.crisostomo@outlook.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

+ 77
- 0
packages/react-utils/package.json Bestand weergeven

@@ -0,0 +1,77 @@
{
"name": "@modal-sh/react-utils",
"version": "0.0.0",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=12"
},
"license": "MIT",
"keywords": [
"pridepack"
],
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/node": "^18.14.1",
"@types/react": "^18.0.27",
"eslint": "^8.35.0",
"eslint-config-lxsmnsyc": "^0.5.0",
"jsdom": "^21.1.0",
"pridepack": "2.4.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"vitest": "^0.28.1"
},
"peerDependencies": {
"react": "^16.8 || ^17.0 || ^18.0",
"react-dom": "^16.8 || ^17.0 || ^18.0"
},
"scripts": {
"prepublishOnly": "pridepack clean && pridepack build",
"build": "pridepack build",
"type-check": "pridepack check",
"lint": "pridepack lint",
"clean": "pridepack clean",
"watch": "pridepack watch",
"start": "pridepack start",
"dev": "pridepack dev",
"test": "vitest"
},
"private": false,
"description": "Utilities for React.",
"repository": {
"url": "",
"type": "git"
},
"homepage": "",
"bugs": {
"url": ""
},
"author": "TheoryOfNekomata <allan.crisostomo@outlook.com>",
"publishConfig": {
"access": "public"
},
"types": "./dist/types/index.d.ts",
"main": "./dist/cjs/production/index.js",
"module": "./dist/esm/production/index.js",
"exports": {
".": {
"development": {
"require": "./dist/cjs/development/index.js",
"import": "./dist/esm/development/index.js"
},
"require": "./dist/cjs/production/index.js",
"import": "./dist/esm/production/index.js",
"types": "./dist/types/index.d.ts"
}
},
"typesVersions": {
"*": {}
}
}

+ 3
- 0
packages/react-utils/pridepack.json Bestand weergeven

@@ -0,0 +1,3 @@
{
"target": "es2018"
}

packages/web-kitchensink-reactnext/src/utils/event.ts → packages/react-utils/src/event.ts Bestand weergeven

@@ -40,4 +40,4 @@ export const delegateTriggerEvent = <T extends HTMLElement>(eventName: string, t
}
const simulatedEvent = new Event(eventName, {bubbles: true});
target.dispatchEvent(simulatedEvent);
}
};

+ 18
- 0
packages/react-utils/src/hooks/client-side.ts Bestand weergeven

@@ -0,0 +1,18 @@
import * as React from 'react';

export interface UseEnhancedOptions {
clientSide: boolean;
initial?: boolean;
}

export const useClientSide = (options: UseEnhancedOptions) => {
const { clientSide: enhancedProp, initial = false } = options;
const [enhanced, setEnhanced] = React.useState(initial);
React.useEffect(() => {
setEnhanced(enhancedProp);
}, [enhancedProp]);

return React.useMemo(() => ({
clientSide: enhanced,
}), [enhanced]);
};

+ 2
- 0
packages/react-utils/src/index.ts Bestand weergeven

@@ -0,0 +1,2 @@
export * from './hooks/client-side';
export * from './event';

+ 21
- 0
packages/react-utils/tsconfig.eslint.json Bestand weergeven

@@ -0,0 +1,21 @@
{
"exclude": ["node_modules"],
"include": ["src", "types", "test"],
"compilerOptions": {
"module": "ESNext",
"lib": ["DOM", "ESNext"],
"importHelpers": true,
"declaration": true,
"sourceMap": true,
"rootDir": "./",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"jsx": "react",
"esModuleInterop": true,
"target": "es2018"
}
}

+ 21
- 0
packages/react-utils/tsconfig.json Bestand weergeven

@@ -0,0 +1,21 @@
{
"exclude": ["node_modules"],
"include": ["src", "types"],
"compilerOptions": {
"module": "ESNext",
"lib": ["DOM", "ESNext"],
"importHelpers": true,
"declaration": true,
"sourceMap": true,
"rootDir": "./src",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"jsx": "react",
"esModuleInterop": true,
"target": "es2018"
}
}

+ 8
- 0
packages/react-utils/vitest.config.ts Bestand weergeven

@@ -0,0 +1,8 @@
/// <reference types="vitest" />

export default ({
test: {
global: true,
environment: 'jsdom',
},
});

+ 9
- 1
packages/web-kitchensink-reactnext/package.json Bestand weergeven

@@ -33,7 +33,15 @@
"@modal-soft/audio-utils": "workspace:*",
"@modal-soft/image-utils": "workspace:*",
"@modal-soft/text-utils": "workspace:*",
"@modal-soft/video-utils": "workspace:*"
"@modal-soft/video-utils": "workspace:*",
"@modal-sh/react-utils": "workspace:*",
"@tesseract-design/web-base": "workspace:*",
"@tesseract-design/web-action-react": "workspace:*",
"@tesseract-design/web-color-react": "workspace:*",
"@tesseract-design/web-formatted-react": "workspace:*",
"@tesseract-design/web-freeform-react": "workspace:*",
"@tesseract-design/web-information-react": "workspace:*",
"@tesseract-design/web-navigation-react": "workspace:*"
},
"devDependencies": {
"@types/mime-types": "^2.1.1",


+ 0
- 5
packages/web-kitchensink-reactnext/src/base/button/index.ts Bestand weergeven

@@ -1,5 +0,0 @@
export type ButtonType = 'submit' | 'reset' | 'button';

export type ButtonVariant = 'bare' | 'filled' | 'outline';

export type ButtonSize = 'small' | 'medium' | 'large';

+ 0
- 5
packages/web-kitchensink-reactnext/src/base/textcontrol/index.ts Bestand weergeven

@@ -1,5 +0,0 @@
export type TextControlSize = 'small' | 'medium' | 'large';

export type TextControlVariant = 'default' | 'alternate';

export type TextControlInputType = 'text' | 'search';

+ 9
- 9
packages/web-kitchensink-reactnext/src/categories/blob/react/components/AudioFilePreview/index.tsx Bestand weergeven

@@ -13,8 +13,8 @@ import {useFileMetadata, useFileUrl} from '@/categories/blob/react';
import clsx from 'clsx';
import {SpectrogramCanvas, WaveformCanvas} from '@modal-soft/react-wavesurfer';
import {Slider} from '@/categories/number/react';
import {KeyValueTable} from '@/categories/information/react';
import {useEnhanced} from '@modal-soft/react-utils';
import {KeyValueTable} from '../../../../../../../../categories/information/react/src';
import {useClientSide} from '@modal-soft/react-utils';
import {CommonPreviewProps} from '@/categories/blob/react/common';

export type AudioFilePreviewDerivedElement = HTMLAudioElement;
@@ -62,7 +62,7 @@ export const AudioFilePreview = React.forwardRef<AudioFilePreviewDerivedElement,
controllerRef: forwardedRef,
visualizationMode: 'waveform',
});
const { enhanced } = useEnhanced({ enhanced: enhancedProp });
const { clientSide } = useClientSide({ clientSide: enhancedProp });

if (!fileWithMetadata) {
return null;
@@ -92,7 +92,7 @@ export const AudioFilePreview = React.forwardRef<AudioFilePreviewDerivedElement,
>
<audio
{...etcProps}
controls={!enhanced}
controls={!clientSide}
ref={mediaControllerRef}
onLoadedMetadata={refreshControls}
onDurationChange={refreshControls}
@@ -106,7 +106,7 @@ export const AudioFilePreview = React.forwardRef<AudioFilePreviewDerivedElement,
/>
Audio playback not supported.
</audio>
{enhanced && (
{clientSide && (
<>
<div className="flex justify-end w-full h-full gap-4 absolute top-0 right-0 z-[5] px-4">
<div className="contents">
@@ -209,7 +209,7 @@ export const AudioFilePreview = React.forwardRef<AudioFilePreviewDerivedElement,
</>
)}
</div>
{enhanced && (
{clientSide && (
<div className="w-full flex-shrink-0 h-10 flex gap-4 items-center bg-[#000000] px-3">
<div
className="py-1 w-14 h-full flex-shrink-0 text-primary flex items-center justify-center"
@@ -342,7 +342,7 @@ export const AudioFilePreview = React.forwardRef<AudioFilePreviewDerivedElement,
children: fileWithMetadata.name,
},
},
(enhanced && Boolean(getMimeTypeDescription(fileWithMetadata.type, fileWithMetadata.name) || '(Loading)') || Boolean(fileWithMetadata.type)) && {
(clientSide && Boolean(getMimeTypeDescription(fileWithMetadata.type, fileWithMetadata.name) || '(Loading)') || Boolean(fileWithMetadata.type)) && {
key: 'Type',
valueProps: {
className: clsx(
@@ -351,7 +351,7 @@ export const AudioFilePreview = React.forwardRef<AudioFilePreviewDerivedElement,
children: getMimeTypeDescription(fileWithMetadata.type, fileWithMetadata.name) || '(Loading)',
},
},
(enhanced && Boolean(formatFileSize(fileWithMetadata.size) || '(Loading)') || Boolean(fileWithMetadata.size)) && {
(clientSide && Boolean(formatFileSize(fileWithMetadata.size) || '(Loading)') || Boolean(fileWithMetadata.size)) && {
key: 'Size',
valueProps: {
className: clsx(
@@ -374,7 +374,7 @@ export const AudioFilePreview = React.forwardRef<AudioFilePreviewDerivedElement,
},
]}
/>
{enhanced && (
{clientSide && (
<form
id={formId}
onSubmit={handleAction}


+ 4
- 4
packages/web-kitchensink-reactnext/src/categories/blob/react/components/AudioMiniFilePreview/index.tsx Bestand weergeven

@@ -5,7 +5,7 @@ import {useMediaControls} from '../../hooks/interactive';
import {useFileMetadata, useFileUrl} from '@/categories/blob/react';
import clsx from 'clsx';
import {SpectrogramCanvas, WaveformCanvas} from '@modal-soft/react-wavesurfer';
import {useEnhanced} from '@modal-soft/react-utils';
import {useClientSide} from '@modal-soft/react-utils';

export type AudioMiniFilePreviewDerivedElement = HTMLAudioElement;

@@ -55,7 +55,7 @@ export const AudioMiniFilePreview = React.forwardRef<AudioMiniFilePreviewDerived
controllerRef: forwardedRef,
visualizationMode: 'waveform',
});
const { enhanced } = useEnhanced({ enhanced: enhancedProp });
const { clientSide } = useClientSide({ clientSide: enhancedProp });

if (!fileWithMetadata) {
return null;
@@ -86,7 +86,7 @@ export const AudioMiniFilePreview = React.forwardRef<AudioMiniFilePreviewDerived
>
<audio
{...etcProps}
controls={!enhanced}
controls={!clientSide}
ref={mediaControllerRef}
onLoadedMetadata={refreshControls}
onDurationChange={refreshControls}
@@ -100,7 +100,7 @@ export const AudioMiniFilePreview = React.forwardRef<AudioMiniFilePreviewDerived
/>
Audio playback not supported.
</audio>
{enhanced && (
{clientSide && (
<>
<div className="flex justify-end w-full h-full gap-4 absolute top-0 right-0 z-[5] px-4">
<div className="contents">


+ 5
- 5
packages/web-kitchensink-reactnext/src/categories/blob/react/components/BinaryFilePreview/index.tsx Bestand weergeven

@@ -3,9 +3,9 @@ import {augmentBinaryFile, getMimeTypeDescription} from '@/utils/blob';
import {formatFileSize, formatNumeral} from '@/utils/numeral';
import {useFileMetadata, useFileUrl} from '@/categories/blob/react';
import clsx from 'clsx';
import {KeyValueTable} from '@/categories/information/react';
import {KeyValueTable} from '../../../../../../../../categories/information/react/src';
import {BinaryDataCanvas} from '@modal-soft/react-binary-data-canvas';
import {useEnhanced} from '@modal-soft/react-utils';
import {useClientSide} from '@modal-soft/react-utils';
import {CommonPreviewProps} from '@/categories/blob/react/common';

export type BinaryFilePreviewDerivedElement = HTMLDivElement;
@@ -25,7 +25,7 @@ export const BinaryFilePreview = React.forwardRef<BinaryFilePreviewDerivedElemen
file: fileWithUrl,
augmentFunction: augmentBinaryFile,
});
const { enhanced } = useEnhanced({ enhanced: enhancedProp });
const { clientSide } = useClientSide({ clientSide: enhancedProp });

if (!fileWithMetadata) {
return null;
@@ -124,7 +124,7 @@ export const BinaryFilePreview = React.forwardRef<BinaryFilePreviewDerivedElemen
title: fileWithMetadata.name,
},
},
(enhanced && Boolean(getMimeTypeDescription(fileWithMetadata.type, fileWithMetadata.name) || '(Loading)') || Boolean(fileWithMetadata.type)) && {
(clientSide && Boolean(getMimeTypeDescription(fileWithMetadata.type, fileWithMetadata.name) || '(Loading)') || Boolean(fileWithMetadata.type)) && {
key: 'Type',
valueProps: {
className: clsx(
@@ -133,7 +133,7 @@ export const BinaryFilePreview = React.forwardRef<BinaryFilePreviewDerivedElemen
children: getMimeTypeDescription(fileWithMetadata.type, fileWithMetadata.name) || '(Loading)',
},
},
(enhanced && Boolean(formatFileSize(fileWithMetadata.size) || '(Loading)') || Boolean(fileWithMetadata.size)) && {
(clientSide && Boolean(formatFileSize(fileWithMetadata.size) || '(Loading)') || Boolean(fileWithMetadata.size)) && {
key: 'Size',
valueProps: {
className: clsx(


+ 7
- 7
packages/web-kitchensink-reactnext/src/categories/blob/react/components/FileSelectBox/index.tsx Bestand weergeven

@@ -7,9 +7,9 @@ import {ImageFilePreview} from '../ImageFilePreview';
import {VideoFilePreview} from '../VideoFilePreview';
import {TextFilePreview} from '../TextFilePreview';
import {AudioMiniFilePreview} from '../AudioMiniFilePreview';
import {delegateTriggerEvent} from '@/utils/event';
import {delegateTriggerEvent} from '@modal-sh/react-utils';
import clsx from 'clsx';
import {useEnhanced} from '@modal-soft/react-utils';
import {useClientSide} from '@modal-soft/react-utils';
import {FilePreviewComponent} from '@/categories/blob/react/common';

const FILE_PREVIEW_COMPONENTS: Record<ContentType, FilePreviewComponent> = {
@@ -64,7 +64,7 @@ export const FileSelectBox = React.forwardRef<FileSelectBoxDerivedElement, FileS
}: FileSelectBoxProps,
forwardedRef,
) => {
const { enhanced } = useEnhanced({ enhanced: enhancedProp });
const { clientSide } = useClientSide({ clientSide: enhancedProp });
const [fileList, setFileList] = React.useState<FileList>();
const [lastUpdated, setLastUpdated] = React.useState<number>();
const defaultRef = React.useRef<HTMLInputElement>(null);
@@ -153,7 +153,7 @@ export const FileSelectBox = React.forwardRef<FileSelectBoxDerivedElement, FileS
className={clsx(
'peer',
{
'sr-only': enhanced,
'sr-only': clientSide,
}
)}
onChange={doSetFileList}
@@ -181,7 +181,7 @@ export const FileSelectBox = React.forwardRef<FileSelectBoxDerivedElement, FileS
}
{
filesCount < 1
&& enhanced
&& clientSide
&& hint
&& (
<div
@@ -196,7 +196,7 @@ export const FileSelectBox = React.forwardRef<FileSelectBoxDerivedElement, FileS
}
{
filesCount > 0
&& enhanced
&& clientSide
&& (
<React.Fragment key={lastUpdated}>
<div className={`sm:absolute top-0 left-0 w-full h-full pointer-events-none pb-12 box-border overflow-hidden pt-8`}>
@@ -261,7 +261,7 @@ export const FileSelectBox = React.forwardRef<FileSelectBoxDerivedElement, FileS
<FilePreviewComponent
className="w-full h-full relative"
file={f}
enhanced={enhanced}
enhanced={clientSide}
disabled={disabled}
/>
</div>


+ 7
- 7
packages/web-kitchensink-reactnext/src/categories/blob/react/components/ImageFilePreview/index.tsx Bestand weergeven

@@ -3,10 +3,10 @@ import {augmentImageFile, getMimeTypeDescription} from '@/utils/blob';
import {formatFileSize, formatNumeral} from '@/utils/numeral';
import clsx from 'clsx';
import {useFileMetadata, useFileUrl, useImageControls} from '@/categories/blob/react';
import {KeyValueTable} from '@/categories/information/react';
import {useEnhanced} from '@modal-soft/react-utils';
import {KeyValueTable} from '../../../../../../../../categories/information/react/src';
import {useClientSide} from '@modal-soft/react-utils';
import {CommonPreviewProps} from '@/categories/blob/react/common';
import {Swatch} from '@tesseract-design/web-color-react';
import {Swatch} from '../../../../../../../../categories/color/react/src';

export type ImageFilePreviewDerivedElement = HTMLImageElement;

@@ -36,7 +36,7 @@ export const ImageFilePreview = React.forwardRef<ImageFilePreviewDerivedElement,
forwardedRef,
});

const { enhanced } = useEnhanced({ enhanced: enhancedProp });
const { clientSide } = useClientSide({ clientSide: enhancedProp });

if (!(fileWithMetadata)) {
return null;
@@ -96,7 +96,7 @@ export const ImageFilePreview = React.forwardRef<ImageFilePreviewDerivedElement,
children: fileWithMetadata.name,
},
},
(enhanced && Boolean(getMimeTypeDescription(fileWithMetadata.type, fileWithMetadata.name) || '(Loading)') || Boolean(fileWithMetadata.type)) && {
(clientSide && Boolean(getMimeTypeDescription(fileWithMetadata.type, fileWithMetadata.name) || '(Loading)') || Boolean(fileWithMetadata.type)) && {
key: 'Type',
valueProps: {
className: clsx(
@@ -105,7 +105,7 @@ export const ImageFilePreview = React.forwardRef<ImageFilePreviewDerivedElement,
children: getMimeTypeDescription(fileWithMetadata.type, fileWithMetadata.name) || '(Loading)',
},
},
(enhanced && Boolean(formatFileSize(fileWithMetadata.size) || '(Loading)') || Boolean(fileWithMetadata.size)) && {
(clientSide && Boolean(formatFileSize(fileWithMetadata.size) || '(Loading)') || Boolean(fileWithMetadata.size)) && {
key: 'Size',
valueProps: {
className: clsx(
@@ -147,7 +147,7 @@ export const ImageFilePreview = React.forwardRef<ImageFilePreviewDerivedElement,
},
]}
/>
{enhanced && (
{clientSide && (
<form
onSubmit={handleAction}
className="flex gap-4 justify-end"


+ 5
- 5
packages/web-kitchensink-reactnext/src/categories/blob/react/components/TextFilePreview/index.tsx Bestand weergeven

@@ -3,9 +3,9 @@ import {formatFileSize, formatNumeral} from '@/utils/numeral';
import {useFileMetadata, useFileUrl} from '@/categories/blob/react';
import {augmentTextFile, getMimeTypeDescription} from '@/utils/blob';
import clsx from 'clsx';
import {KeyValueTable} from '@/categories/information/react';
import {KeyValueTable} from '../../../../../../../../categories/information/react/src';
import {Refractor} from '@modal-soft/react-refractor';
import {useEnhanced} from '@modal-soft/react-utils';
import {useClientSide} from '@modal-soft/react-utils';
import {CommonPreviewProps} from '@/categories/blob/react/common';

type TextFilePreviewDerivedComponent = HTMLDivElement;
@@ -25,7 +25,7 @@ export const TextFilePreview = React.forwardRef<TextFilePreviewDerivedComponent,
file: fileWithUrl,
augmentFunction: augmentTextFile,
});
const { enhanced } = useEnhanced({ enhanced: enhancedProp });
const { clientSide } = useClientSide({ clientSide: enhancedProp });

if (!fileWithMetadata) {
return null;
@@ -75,13 +75,13 @@ export const TextFilePreview = React.forwardRef<TextFilePreviewDerivedComponent,
title: fileWithMetadata.name,
},
},
(enhanced && Boolean(getMimeTypeDescription(fileWithMetadata.type, fileWithMetadata.name) || '(Loading)') || Boolean(fileWithMetadata.type)) && {
(clientSide && Boolean(getMimeTypeDescription(fileWithMetadata.type, fileWithMetadata.name) || '(Loading)') || Boolean(fileWithMetadata.type)) && {
key: 'Type',
valueProps: {
children: typeof fileWithMetadata.metadata?.schemeTitle === 'string' ? `${fileWithMetadata.metadata.schemeTitle} Source` : 'Text File',
},
},
(enhanced && Boolean(formatFileSize(fileWithMetadata.size) || '(Loading)') || Boolean(fileWithMetadata.size)) && {
(clientSide && Boolean(formatFileSize(fileWithMetadata.size) || '(Loading)') || Boolean(fileWithMetadata.size)) && {
key: 'Size',
valueProps: {
className: clsx(


+ 8
- 8
packages/web-kitchensink-reactnext/src/categories/blob/react/components/VideoFilePreview/index.tsx Bestand weergeven

@@ -4,8 +4,8 @@ import {formatFileSize, formatNumeral, formatSecondsDurationConcise} from '@/uti
import {useFileMetadata, useFileUrl, useMediaControls} from '@tesseract-design/web-blob-react';
import clsx from 'clsx';
import {Slider} from '@tesseract-design/web-number-react';
import {KeyValueTable} from '@/categories/information/react';
import {useEnhanced} from '@modal-soft/react-utils';
import {KeyValueTable} from '../../../../../../../../categories/information/react/src';
import {useClientSide} from '@modal-soft/react-utils';
import {CommonPreviewProps} from '@/categories/blob/react/common';

export type VideoFilePreviewDerivedComponent = HTMLVideoElement;
@@ -50,7 +50,7 @@ export const VideoFilePreview = React.forwardRef<VideoFilePreviewDerivedComponen
controllerRef: forwardedRef,
});

const { enhanced } = useEnhanced({ enhanced: enhancedProp });
const { clientSide } = useClientSide({ clientSide: enhancedProp });

if (!fileWithMetadata) {
return null;
@@ -88,7 +88,7 @@ export const VideoFilePreview = React.forwardRef<VideoFilePreviewDerivedComponen
onEnded={reset}
onTimeUpdate={updateSeekFromPlayback}
data-testid="preview"
controls={!enhanced}
controls={!clientSide}
>
<source
src={fileWithMetadata.url}
@@ -109,7 +109,7 @@ export const VideoFilePreview = React.forwardRef<VideoFilePreviewDerivedComponen
</span>
</button>
</div>
{enhanced && (
{clientSide && (
<div className="w-full flex-shrink-0 h-10 flex gap-4 items-center bg-[#000000] px-3">
<div
className="py-1 w-14 h-full flex-shrink-0 text-primary flex items-center justify-center"
@@ -244,7 +244,7 @@ export const VideoFilePreview = React.forwardRef<VideoFilePreviewDerivedComponen
children: fileWithMetadata.name,
},
},
(enhanced && Boolean(getMimeTypeDescription(fileWithMetadata.type, fileWithMetadata.name) || '(Loading)') || Boolean(fileWithMetadata.type)) && {
(clientSide && Boolean(getMimeTypeDescription(fileWithMetadata.type, fileWithMetadata.name) || '(Loading)') || Boolean(fileWithMetadata.type)) && {
key: 'Type',
valueProps: {
className: clsx(
@@ -253,7 +253,7 @@ export const VideoFilePreview = React.forwardRef<VideoFilePreviewDerivedComponen
children: getMimeTypeDescription(fileWithMetadata.type, fileWithMetadata.name) || '(Loading)',
},
},
(enhanced && Boolean(formatFileSize(fileWithMetadata.size) || '(Loading)') || Boolean(fileWithMetadata.size)) && {
(clientSide && Boolean(formatFileSize(fileWithMetadata.size) || '(Loading)') || Boolean(fileWithMetadata.size)) && {
key: 'Size',
valueProps: {
className: clsx(
@@ -274,7 +274,7 @@ export const VideoFilePreview = React.forwardRef<VideoFilePreviewDerivedComponen
]}
/>
{
enhanced
clientSide
&& (
<form
id={formId}


+ 3
- 3
packages/web-kitchensink-reactnext/src/categories/number/react/components/Spinner/index.tsx Bestand weergeven

@@ -1,5 +1,5 @@
import * as React from 'react';
import * as TextControlBase from '@tesseract-design/web-base-textcontrol';
import { TextControl } from '@tesseract-design/web-base';
import clsx from 'clsx';
import styles from './style.module.css';

@@ -17,7 +17,7 @@ export interface SpinnerProps extends Omit<React.HTMLProps<SpinnerDerivedElement
/**
* Size of the component.
*/
size?: TextControlBase.TextControlSize,
size?: TextControl.Size,
/**
* Additional description, usually graphical, indicating the nature of the component's value.
*/
@@ -33,7 +33,7 @@ export interface SpinnerProps extends Omit<React.HTMLProps<SpinnerDerivedElement
/**
* Style of the component.
*/
variant?: TextControlBase.TextControlVariant,
variant?: TextControl.Variant,
/**
* Is the label hidden?
*/


+ 4
- 4
packages/web-kitchensink-reactnext/src/categories/option/react/components/ComboBox/index.tsx Bestand weergeven

@@ -1,5 +1,5 @@
import * as React from 'react';
import * as TextControlBase from '@tesseract-design/web-base-textcontrol';
import { TextControl } from '@tesseract-design/web-base';
import clsx from 'clsx';

export type ComboBoxDerivedElement = HTMLInputElement;
@@ -16,7 +16,7 @@ export interface ComboBoxProps extends Omit<React.HTMLProps<ComboBoxDerivedEleme
/**
* Size of the component.
*/
size?: TextControlBase.TextControlSize,
size?: TextControl.Size,
/**
* Additional description, usually graphical, indicating the nature of the component's value.
*/
@@ -32,11 +32,11 @@ export interface ComboBoxProps extends Omit<React.HTMLProps<ComboBoxDerivedEleme
/**
* Type of the component value.
*/
type?: TextControlBase.TextControlInputType,
type?: TextControl.InputType,
/**
* Style of the component.
*/
variant?: TextControlBase.TextControlVariant,
variant?: TextControl.Variant,
/**
* Is the label hidden?
*/


+ 3
- 8
packages/web-kitchensink-reactnext/src/categories/option/react/components/DropdownSelect/index.tsx Bestand weergeven

@@ -1,5 +1,5 @@
import * as React from 'react';
import * as TextControlBase from '@tesseract-design/web-base-textcontrol';
import { TextControl } from '@tesseract-design/web-base';
import clsx from 'clsx';

export type DropdownSelectDerivedElement = HTMLSelectElement;
@@ -16,7 +16,7 @@ export interface DropdownSelectProps extends Omit<React.HTMLProps<DropdownSelect
/**
* Size of the component.
*/
size?: TextControlBase.TextControlSize,
size?: TextControl.Size,
/**
* Additional description, usually graphical, indicating the nature of the component's value.
*/
@@ -29,14 +29,10 @@ export interface DropdownSelectProps extends Omit<React.HTMLProps<DropdownSelect
* Should the component occupy the whole width of its parent?
*/
block?: boolean,
/**
* Type of the component value.
*/
type?: TextControlBase.TextControlInputType,
/**
* Style of the component.
*/
variant?: TextControlBase.TextControlVariant,
variant?: TextControl.Variant,
/**
* Is the label hidden?
*/
@@ -57,7 +53,6 @@ export const DropdownSelect = React.forwardRef<DropdownSelectDerivedElement, Dro
size = 'medium' as const,
border = false,
block = false,
type = 'text' as const,
variant = 'default' as const,
hiddenLabel = false,
className,


+ 3
- 3
packages/web-kitchensink-reactnext/src/categories/option/react/components/MenuSelect/index.tsx Bestand weergeven

@@ -1,5 +1,5 @@
import * as React from 'react';
import * as TextControlBase from '@tesseract-design/web-base-textcontrol';
import { TextControl } from '@tesseract-design/web-base';
import clsx from 'clsx';

export type MenuSelectDerivedElement = HTMLSelectElement;
@@ -16,7 +16,7 @@ export interface MenuSelectProps extends Omit<React.HTMLProps<MenuSelectDerivedE
/**
* Size of the component.
*/
size?: TextControlBase.TextControlSize,
size?: TextControl.Size,
/**
* Additional description, usually graphical, indicating the nature of the component's value.
*/
@@ -32,7 +32,7 @@ export interface MenuSelectProps extends Omit<React.HTMLProps<MenuSelectDerivedE
/**
* Style of the component.
*/
variant?: TextControlBase.TextControlVariant,
variant?: TextControl.Variant,
/**
* Is the label hidden?
*/


Some files were not shown because too many files changed in this diff

Laden…
Annuleren
Opslaan