npm install jitsu -g
npm install demeteorizer -g
cd /your/meteor/path
demeteorizer -a nodejitsu-appname -n 0.10.x
if(jQuery) (function($){ | |
$.widget("pb.layout", { | |
_init : function() { | |
var o = this.options; | |
this.baseClass = '.' + this.widgetBaseClass + '-', | |
this._initPanels(); | |
}, |
{ | |
"name": "portal", | |
"description": "portal.forwarder.nl - automatically converted by Demeteorizer. https://github.com/onmodulus/demeteorizer", | |
"version": "0.0.1-1", | |
"main": "main.js", | |
"scripts": { | |
"start": "node main.js" | |
}, | |
"engines": { | |
"node": "0.10.25" |
#!/usr/bin/env node | |
/* | |
This CLI script makes it easy to manage, test and deploy | |
multiple functions/services in Typescript | |
Requirements | |
You will need the Google Cloud SDK installed and | |
authentication configured to support deployments. |
import { ThemeTypings, useTheme } from '@chakra-ui/react' | |
export const useDefaultProps = <ThemeKey = keyof ThemeTypings>( | |
componentName: ThemeKey, | |
) => { | |
const theme = useTheme() | |
return theme.components[componentName]?.defaultProps || {} | |
} |
# Image layer for building the application | |
FROM --platform=linux/amd64 node:16 as build | |
RUN curl -f https://get.pnpm.io/v6.16.js | node - add --global pnpm | |
WORKDIR /usr/src/app | |
# rebuild image when package.json or lock has changed | |
COPY package.json pnpm-lock.yaml .npmrc ./ |
{ | |
"name": "saas-ui-pro-next-starter", | |
"version": "0.3.0", | |
"private": true, | |
"scripts": { | |
"dev": "next dev", | |
"build": "next build", | |
"start": "next start", | |
"lint": "next lint" | |
}, |
import { ThemeTypings } from '@chakra-ui/react' | |
/** | |
* Transparentize Chakra UI color tokens | |
* @param color - Chakra UI (semantic) token | |
* @param opacity - Opacity value 0 to 1. | |
*/ | |
export const alpha = (color: ThemeTypings['colors'], value: number) => { | |
const key = color.replaceAll('.', '-') | |
return `color-mix(in srgb, var(--chakra-colors-${key}) ${Math.max(Math.min(value * 100, 100), 0)}%, transparent)` |
import { AnyZodObject, z } from 'zod' | |
import { Metadata, ResolvingMetadata } from 'next' | |
type InferParams<Params> = Params extends readonly string[] | |
? { | |
[K in Params[number]]: string | |
} | |
: Params extends AnyZodObject | |
? z.infer<Params> | |
: unknown |
import { useMemo, useState } from 'react' | |
import { | |
Combobox, | |
ComboboxContent, | |
ComboboxControl, | |
ComboboxInput, | |
ComboboxItem, | |
ComboboxPositioner, | |
type ComboboxProps, |