@bspk/ui 1.3.30 → 1.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build.ts +1 -2
- package/dist/components/StylesProviderAgentWorkplace/StylesProviderAgentWorkplace.d.ts +11 -0
- package/dist/components/StylesProviderAgentWorkplace/StylesProviderAgentWorkplace.js +14 -0
- package/dist/components/StylesProviderAgentWorkplace/StylesProviderAgentWorkplace.js.map +1 -0
- package/dist/components/StylesProviderAgentWorkplace/index.d.ts +1 -0
- package/dist/components/StylesProviderAgentWorkplace/index.js +2 -0
- package/dist/components/StylesProviderAgentWorkplace/index.js.map +1 -0
- package/dist/components/StylesProviderBrokerWorkplace/StylesProviderBrokerWorkplace.d.ts +11 -0
- package/dist/components/StylesProviderBrokerWorkplace/StylesProviderBrokerWorkplace.js +14 -0
- package/dist/components/StylesProviderBrokerWorkplace/StylesProviderBrokerWorkplace.js.map +1 -0
- package/dist/components/StylesProviderBrokerWorkplace/index.d.ts +1 -0
- package/dist/components/StylesProviderBrokerWorkplace/index.js +2 -0
- package/dist/components/StylesProviderBrokerWorkplace/index.js.map +1 -0
- package/dist/components/StylesProviderDemo/brandsCss.js +10 -9
- package/dist/components/StylesProviderDemo/brandsCss.js.map +1 -1
- package/dist/components/StylesProviderDemo/exampleCss.js +5 -5
- package/dist/components/StylesProviderDemo/exampleCss.js.map +1 -1
- package/dist/components/Table/Table.js +1 -1
- package/dist/components/Table/Table.js.map +1 -1
- package/dist/styles/agent-workplace.css +1800 -0
- package/dist/styles/{denali-boss.css.js → agent-workplace.css.js} +770 -849
- package/dist/styles/anywhere.css +687 -766
- package/dist/styles/anywhere.css.js +687 -766
- package/dist/styles/better-homes-gardens.css +579 -826
- package/dist/styles/better-homes-gardens.css.js +579 -826
- package/dist/styles/broker-workplace.css +1800 -0
- package/dist/styles/broker-workplace.css.js +1805 -0
- package/dist/styles/cartus.css +674 -765
- package/dist/styles/cartus.css.js +674 -765
- package/dist/styles/century-21.css +679 -766
- package/dist/styles/century-21.css.js +679 -766
- package/dist/styles/coldwell-banker.css +671 -762
- package/dist/styles/coldwell-banker.css.js +671 -762
- package/dist/styles/corcoran.css +663 -758
- package/dist/styles/corcoran.css.js +663 -758
- package/dist/styles/era.css +677 -766
- package/dist/styles/era.css.js +677 -766
- package/dist/styles/example.css +1898 -0
- package/dist/styles/example.css.js +1903 -0
- package/dist/styles/sothebys.css +670 -759
- package/dist/styles/sothebys.css.js +670 -759
- package/dist/types/common.d.ts +2 -1
- package/dist/types/common.js.map +1 -1
- package/package.json +7 -47
- package/src/components/StylesProviderAgentWorkplace/StylesProviderAgentWorkplace.tsx +15 -0
- package/src/components/StylesProviderAgentWorkplace/index.tsx +1 -0
- package/src/components/StylesProviderBrokerWorkplace/StylesProviderBrokerWorkplace.tsx +15 -0
- package/src/components/StylesProviderBrokerWorkplace/index.tsx +1 -0
- package/src/components/StylesProviderDemo/brandsCss.ts +13 -10
- package/src/components/StylesProviderDemo/exampleCss.ts +5 -5
- package/src/components/Table/Table.tsx +1 -1
- package/{dist/styles/denali-boss.css → src/styles/example.css} +401 -384
- package/src/types/common.ts +2 -10
- package/dist/components/StylesProviderDenaliBoss/StylesProviderDenaliBoss.d.ts +0 -11
- package/dist/components/StylesProviderDenaliBoss/StylesProviderDenaliBoss.js +0 -14
- package/dist/components/StylesProviderDenaliBoss/StylesProviderDenaliBoss.js.map +0 -1
- package/dist/components/StylesProviderDenaliBoss/index.d.ts +0 -1
- package/dist/components/StylesProviderDenaliBoss/index.js +0 -2
- package/dist/components/StylesProviderDenaliBoss/index.js.map +0 -1
- package/dist/constants/brands.d.ts +0 -7
- package/dist/constants/brands.js +0 -43
- package/dist/constants/brands.js.map +0 -1
- package/src/components/StylesProviderDenaliBoss/StylesProviderDenaliBoss.tsx +0 -15
- package/src/components/StylesProviderDenaliBoss/index.tsx +0 -1
- package/src/constants/brands.ts +0 -49
package/build.ts
CHANGED
|
@@ -21,13 +21,12 @@ import child_process from 'child_process';
|
|
|
21
21
|
import fs from 'fs';
|
|
22
22
|
import path from 'path';
|
|
23
23
|
import util from 'util';
|
|
24
|
+
import { BRANDS } from '@bspk/styles/brands';
|
|
24
25
|
|
|
25
26
|
import packageData from './package.json';
|
|
26
27
|
|
|
27
28
|
import { compilerOptions } from './tsconfig.json';
|
|
28
29
|
|
|
29
|
-
const BRANDS = packageData.brands;
|
|
30
|
-
|
|
31
30
|
const exec = util.promisify(child_process.exec);
|
|
32
31
|
const writeFile = util.promisify(fs.writeFile);
|
|
33
32
|
const readDir = util.promisify(fs.readdir);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import '@bspk/styles/agent-workplace.css';
|
|
2
|
+
import '-/styles/base.scss';
|
|
3
|
+
/**
|
|
4
|
+
* Utility to provide the Agent Workplace styles to the application.
|
|
5
|
+
*
|
|
6
|
+
* @name StylesProviderAgentWorkplace
|
|
7
|
+
* @phase Utility
|
|
8
|
+
* @generated
|
|
9
|
+
*/
|
|
10
|
+
export declare function StylesProviderAgentWorkplace(): JSX.Element | null;
|
|
11
|
+
/** Copyright 2026 Anywhere Real Estate - CC BY 4.0 */
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import '../../styles/agent-workplace.css.js';
|
|
2
|
+
import '../../styles/base.css.js';
|
|
3
|
+
/**
|
|
4
|
+
* Utility to provide the Agent Workplace styles to the application.
|
|
5
|
+
*
|
|
6
|
+
* @name StylesProviderAgentWorkplace
|
|
7
|
+
* @phase Utility
|
|
8
|
+
* @generated
|
|
9
|
+
*/
|
|
10
|
+
export function StylesProviderAgentWorkplace() {
|
|
11
|
+
return null;
|
|
12
|
+
}
|
|
13
|
+
/** Copyright 2026 Anywhere Real Estate - CC BY 4.0 */
|
|
14
|
+
//# sourceMappingURL=StylesProviderAgentWorkplace.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StylesProviderAgentWorkplace.js","sourceRoot":"","sources":["../../../src/components/StylesProviderAgentWorkplace/StylesProviderAgentWorkplace.tsx"],"names":[],"mappings":"AAAA,OAAO,kCAAkC,CAAC;AAC1C,OAAO,oBAAoB,CAAC;AAE5B;;;;;;GAMG;AACH,MAAM,UAAU,4BAA4B;IACxC,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,sDAAsD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './StylesProviderAgentWorkplace';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/components/StylesProviderAgentWorkplace/index.tsx"],"names":[],"mappings":"AAAA,cAAc,gCAAgC,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import '@bspk/styles/broker-workplace.css';
|
|
2
|
+
import '-/styles/base.scss';
|
|
3
|
+
/**
|
|
4
|
+
* Utility to provide the Broker Workplace styles to the application.
|
|
5
|
+
*
|
|
6
|
+
* @name StylesProviderBrokerWorkplace
|
|
7
|
+
* @phase Utility
|
|
8
|
+
* @generated
|
|
9
|
+
*/
|
|
10
|
+
export declare function StylesProviderBrokerWorkplace(): JSX.Element | null;
|
|
11
|
+
/** Copyright 2026 Anywhere Real Estate - CC BY 4.0 */
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import '../../styles/broker-workplace.css.js';
|
|
2
|
+
import '../../styles/base.css.js';
|
|
3
|
+
/**
|
|
4
|
+
* Utility to provide the Broker Workplace styles to the application.
|
|
5
|
+
*
|
|
6
|
+
* @name StylesProviderBrokerWorkplace
|
|
7
|
+
* @phase Utility
|
|
8
|
+
* @generated
|
|
9
|
+
*/
|
|
10
|
+
export function StylesProviderBrokerWorkplace() {
|
|
11
|
+
return null;
|
|
12
|
+
}
|
|
13
|
+
/** Copyright 2026 Anywhere Real Estate - CC BY 4.0 */
|
|
14
|
+
//# sourceMappingURL=StylesProviderBrokerWorkplace.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StylesProviderBrokerWorkplace.js","sourceRoot":"","sources":["../../../src/components/StylesProviderBrokerWorkplace/StylesProviderBrokerWorkplace.tsx"],"names":[],"mappings":"AAAA,OAAO,mCAAmC,CAAC;AAC3C,OAAO,oBAAoB,CAAC;AAE5B;;;;;;GAMG;AACH,MAAM,UAAU,6BAA6B;IACzC,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,sDAAsD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './StylesProviderBrokerWorkplace';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/components/StylesProviderBrokerWorkplace/index.tsx"],"names":[],"mappings":"AAAA,cAAc,iCAAiC,CAAC"}
|