Skip to content

Commit 9955d0c

Browse files
committed
update package namespaces
1 parent 1286253 commit 9955d0c

18 files changed

+51250
-55309
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"Jonathan Neal"
1111
],
1212
"scripts": {
13-
"build:test:types": "yarn workspace @stitches/test build",
13+
"build:test:types": "yarn workspace @sigmacomputing/stitches-test build",
1414
"build": "node .task/build.js",
1515
"build:watch": "node .task/build.js --watch",
1616
"lint": "node .task/lint.js",

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@stitches/core",
2+
"name": "@sigmacomputing/stitches-core",
33
"version": "1.3.1-1",
44
"description": "The modern CSS-in-JS library",
55
"type": "module",

packages/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@stitches/react",
2+
"name": "@sigmacomputing/stitches-react",
33
"version": "1.3.1-1",
44
"description": "The modern CSS-in-JS library",
55
"type": "module",

packages/stringify/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@stitches/stringify",
2+
"name": "@sigmacomputing/stitches-stringify",
33
"version": "1.3.1-1",
44
"description": "Converts an object into CSS",
55
"type": "module",

packages/test/Issue-803-core.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { globalCss } from '@stitches/core'
1+
import { globalCss } from '@sigmacomputing/stitches-core'
22

33
void globalCss({
44
"@font-face": {

packages/test/Issue-803-react.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { globalCss } from '@stitches/react'
1+
import { globalCss } from '@sigmacomputing/stitches-react'
22

33
void globalCss({
44
"@font-face": {

packages/test/Issue-813-core.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// https://github.com/stitchesjs/stitches/issues/813
2-
import { createStitches } from '@stitches/core'
3-
import * as Stitches from '@stitches/core'
2+
import { createStitches } from '@sigmacomputing/stitches-core'
3+
import * as Stitches from '@sigmacomputing/stitches-core'
44

55
export const { config, css } = createStitches({
66
theme: {

packages/test/Issue-813-react.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// https://github.com/stitchesjs/stitches/issues/813
2-
import { createStitches } from '@stitches/react'
3-
import * as Stitches from '@stitches/react'
2+
import { createStitches } from '@sigmacomputing/stitches-react'
3+
import * as Stitches from '@sigmacomputing/stitches-react'
44

55
export const { config, styled } = createStitches({
66
theme: {
Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as Stitches from '@stitches/core';
1+
import * as Stitches from '@sigmacomputing/stitches-core';
22
export declare const config: {
33
prefix: "";
44
media: {};
@@ -7,56 +7,56 @@ export declare const config: {
77
primary: string;
88
};
99
};
10-
themeMap: import("@stitches/core/types/config").DefaultThemeMap;
10+
themeMap: import("@sigmacomputing/stitches-core/types/config").DefaultThemeMap;
1111
utils: {
1212
bg: (value: Stitches.PropertyValue<'backgroundColor'>) => {
13-
color: import("@stitches/core/types/css-util").WithPropertyValue<"backgroundColor">;
13+
color: import("@sigmacomputing/stitches-core/types/css-util").WithPropertyValue<"backgroundColor">;
1414
};
1515
c: (value: Stitches.ScaleValue<'colors'>) => {
16-
color: import("@stitches/core/types/css-util").WithScaleValue<"colors">;
16+
color: import("@sigmacomputing/stitches-core/types/css-util").WithScaleValue<"colors">;
1717
};
1818
};
1919
}, css: {
2020
withConfig: (config: {
2121
componentId?: string | undefined;
2222
displayName?: string | undefined;
2323
shouldForwardStitchesProp?: ((prop: "css" | (string & {})) => boolean | void) | undefined;
24-
}) => import("@stitches/core/types/stitches").CssFunctionType<{}, {
24+
}) => import("@sigmacomputing/stitches-core/types/stitches").CssFunctionType<{}, {
2525
colors: {
2626
primary: string;
2727
};
28-
}, import("@stitches/core/types/config").DefaultThemeMap, {
28+
}, import("@sigmacomputing/stitches-core/types/config").DefaultThemeMap, {
2929
bg: (value: Stitches.PropertyValue<'backgroundColor'>) => {
30-
color: import("@stitches/core/types/css-util").WithPropertyValue<"backgroundColor">;
30+
color: import("@sigmacomputing/stitches-core/types/css-util").WithPropertyValue<"backgroundColor">;
3131
};
3232
c: (value: Stitches.ScaleValue<'colors'>) => {
33-
color: import("@stitches/core/types/css-util").WithScaleValue<"colors">;
33+
color: import("@sigmacomputing/stitches-core/types/css-util").WithScaleValue<"colors">;
3434
};
3535
}>;
36-
} & import("@stitches/core/types/stitches").CssFunctionType<{}, {
36+
} & import("@sigmacomputing/stitches-core/types/stitches").CssFunctionType<{}, {
3737
colors: {
3838
primary: string;
3939
};
40-
}, import("@stitches/core/types/config").DefaultThemeMap, {
40+
}, import("@sigmacomputing/stitches-core/types/config").DefaultThemeMap, {
4141
bg: (value: Stitches.PropertyValue<'backgroundColor'>) => {
42-
color: import("@stitches/core/types/css-util").WithPropertyValue<"backgroundColor">;
42+
color: import("@sigmacomputing/stitches-core/types/css-util").WithPropertyValue<"backgroundColor">;
4343
};
4444
c: (value: Stitches.ScaleValue<'colors'>) => {
45-
color: import("@stitches/core/types/css-util").WithScaleValue<"colors">;
45+
color: import("@sigmacomputing/stitches-core/types/css-util").WithScaleValue<"colors">;
4646
};
4747
}>;
4848
export declare const colorValue1: Stitches.PropertyValue<'backgroundColor', typeof config>;
4949
export declare const colorValue2: Stitches.PropertyValue<'backgroundColor', typeof config>;
5050
export declare const colorToken: Stitches.ScaleValue<'colors', typeof config>;
51-
export declare const box: import("@stitches/core/types/styled-component").CssComponent<never, {}, {}, import("@stitches/core/types/css-util").CSS<{}, {
51+
export declare const box: import("@sigmacomputing/stitches-core/types/styled-component").CssComponent<never, {}, {}, import("@sigmacomputing/stitches-core/types/css-util").CSS<{}, {
5252
colors: {
5353
primary: string;
5454
};
55-
}, import("@stitches/core/types/config").DefaultThemeMap, {
55+
}, import("@sigmacomputing/stitches-core/types/config").DefaultThemeMap, {
5656
bg: (value: Stitches.PropertyValue<'backgroundColor'>) => {
57-
color: import("@stitches/core/types/css-util").WithPropertyValue<"backgroundColor">;
57+
color: import("@sigmacomputing/stitches-core/types/css-util").WithPropertyValue<"backgroundColor">;
5858
};
5959
c: (value: Stitches.ScaleValue<'colors'>) => {
60-
color: import("@stitches/core/types/css-util").WithScaleValue<"colors">;
60+
color: import("@sigmacomputing/stitches-core/types/css-util").WithScaleValue<"colors">;
6161
};
6262
}>>;
Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as Stitches from '@stitches/react';
1+
import * as Stitches from '@sigmacomputing/stitches-react';
22
export declare const config: {
33
prefix: "";
44
media: {};
@@ -7,56 +7,56 @@ export declare const config: {
77
primary: string;
88
};
99
};
10-
themeMap: import("@stitches/react/types/config").DefaultThemeMap;
10+
themeMap: import("@sigmacomputing/stitches-react/types/config").DefaultThemeMap;
1111
utils: {
1212
bg: (value: Stitches.PropertyValue<'backgroundColor'>) => {
13-
color: import("@stitches/react/types/css-util").WithPropertyValue<"backgroundColor">;
13+
color: import("@sigmacomputing/stitches-react/types/css-util").WithPropertyValue<"backgroundColor">;
1414
};
1515
c: (value: Stitches.ScaleValue<'colors'>) => {
16-
color: import("@stitches/react/types/css-util").WithScaleValue<"colors">;
16+
color: import("@sigmacomputing/stitches-react/types/css-util").WithScaleValue<"colors">;
1717
};
1818
};
1919
}, styled: {
2020
withConfig: (config: {
2121
componentId?: string | undefined;
2222
displayName?: string | undefined;
2323
shouldForwardStitchesProp?: ((prop: "css" | (string & {})) => boolean | void) | undefined;
24-
}) => import("@stitches/react/types/stitches").StyledFunctionType<{}, {
24+
}) => import("@sigmacomputing/stitches-react/types/stitches").StyledFunctionType<{}, {
2525
colors: {
2626
primary: string;
2727
};
28-
}, import("@stitches/react/types/config").DefaultThemeMap, {
28+
}, import("@sigmacomputing/stitches-react/types/config").DefaultThemeMap, {
2929
bg: (value: Stitches.PropertyValue<'backgroundColor'>) => {
30-
color: import("@stitches/react/types/css-util").WithPropertyValue<"backgroundColor">;
30+
color: import("@sigmacomputing/stitches-react/types/css-util").WithPropertyValue<"backgroundColor">;
3131
};
3232
c: (value: Stitches.ScaleValue<'colors'>) => {
33-
color: import("@stitches/react/types/css-util").WithScaleValue<"colors">;
33+
color: import("@sigmacomputing/stitches-react/types/css-util").WithScaleValue<"colors">;
3434
};
3535
}>;
36-
} & import("@stitches/react/types/stitches").StyledFunctionType<{}, {
36+
} & import("@sigmacomputing/stitches-react/types/stitches").StyledFunctionType<{}, {
3737
colors: {
3838
primary: string;
3939
};
40-
}, import("@stitches/react/types/config").DefaultThemeMap, {
40+
}, import("@sigmacomputing/stitches-react/types/config").DefaultThemeMap, {
4141
bg: (value: Stitches.PropertyValue<'backgroundColor'>) => {
42-
color: import("@stitches/react/types/css-util").WithPropertyValue<"backgroundColor">;
42+
color: import("@sigmacomputing/stitches-react/types/css-util").WithPropertyValue<"backgroundColor">;
4343
};
4444
c: (value: Stitches.ScaleValue<'colors'>) => {
45-
color: import("@stitches/react/types/css-util").WithScaleValue<"colors">;
45+
color: import("@sigmacomputing/stitches-react/types/css-util").WithScaleValue<"colors">;
4646
};
4747
}>;
4848
export declare const colorValue1: Stitches.PropertyValue<'backgroundColor', typeof config>;
4949
export declare const colorValue2: Stitches.PropertyValue<'backgroundColor', typeof config>;
5050
export declare const colorToken: Stitches.ScaleValue<'colors', typeof config>;
51-
export declare const Box: import("@stitches/react/types/styled-component").StyledComponent<"div", {}, {}, import("@stitches/react/types/css-util").CSS<{}, {
51+
export declare const Box: import("@sigmacomputing/stitches-react/types/styled-component").StyledComponent<"div", {}, {}, import("@sigmacomputing/stitches-react/types/css-util").CSS<{}, {
5252
colors: {
5353
primary: string;
5454
};
55-
}, import("@stitches/react/types/config").DefaultThemeMap, {
55+
}, import("@sigmacomputing/stitches-react/types/config").DefaultThemeMap, {
5656
bg: (value: Stitches.PropertyValue<'backgroundColor'>) => {
57-
color: import("@stitches/react/types/css-util").WithPropertyValue<"backgroundColor">;
57+
color: import("@sigmacomputing/stitches-react/types/css-util").WithPropertyValue<"backgroundColor">;
5858
};
5959
c: (value: Stitches.ScaleValue<'colors'>) => {
60-
color: import("@stitches/react/types/css-util").WithScaleValue<"colors">;
60+
color: import("@sigmacomputing/stitches-react/types/css-util").WithScaleValue<"colors">;
6161
};
6262
}>>;

0 commit comments

Comments
 (0)