@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.
Files changed (65) hide show
  1. package/build.ts +1 -2
  2. package/dist/components/StylesProviderAgentWorkplace/StylesProviderAgentWorkplace.d.ts +11 -0
  3. package/dist/components/StylesProviderAgentWorkplace/StylesProviderAgentWorkplace.js +14 -0
  4. package/dist/components/StylesProviderAgentWorkplace/StylesProviderAgentWorkplace.js.map +1 -0
  5. package/dist/components/StylesProviderAgentWorkplace/index.d.ts +1 -0
  6. package/dist/components/StylesProviderAgentWorkplace/index.js +2 -0
  7. package/dist/components/StylesProviderAgentWorkplace/index.js.map +1 -0
  8. package/dist/components/StylesProviderBrokerWorkplace/StylesProviderBrokerWorkplace.d.ts +11 -0
  9. package/dist/components/StylesProviderBrokerWorkplace/StylesProviderBrokerWorkplace.js +14 -0
  10. package/dist/components/StylesProviderBrokerWorkplace/StylesProviderBrokerWorkplace.js.map +1 -0
  11. package/dist/components/StylesProviderBrokerWorkplace/index.d.ts +1 -0
  12. package/dist/components/StylesProviderBrokerWorkplace/index.js +2 -0
  13. package/dist/components/StylesProviderBrokerWorkplace/index.js.map +1 -0
  14. package/dist/components/StylesProviderDemo/brandsCss.js +10 -9
  15. package/dist/components/StylesProviderDemo/brandsCss.js.map +1 -1
  16. package/dist/components/StylesProviderDemo/exampleCss.js +5 -5
  17. package/dist/components/StylesProviderDemo/exampleCss.js.map +1 -1
  18. package/dist/components/Table/Table.js +1 -1
  19. package/dist/components/Table/Table.js.map +1 -1
  20. package/dist/styles/agent-workplace.css +1800 -0
  21. package/dist/styles/{denali-boss.css.js → agent-workplace.css.js} +770 -849
  22. package/dist/styles/anywhere.css +687 -766
  23. package/dist/styles/anywhere.css.js +687 -766
  24. package/dist/styles/better-homes-gardens.css +579 -826
  25. package/dist/styles/better-homes-gardens.css.js +579 -826
  26. package/dist/styles/broker-workplace.css +1800 -0
  27. package/dist/styles/broker-workplace.css.js +1805 -0
  28. package/dist/styles/cartus.css +674 -765
  29. package/dist/styles/cartus.css.js +674 -765
  30. package/dist/styles/century-21.css +679 -766
  31. package/dist/styles/century-21.css.js +679 -766
  32. package/dist/styles/coldwell-banker.css +671 -762
  33. package/dist/styles/coldwell-banker.css.js +671 -762
  34. package/dist/styles/corcoran.css +663 -758
  35. package/dist/styles/corcoran.css.js +663 -758
  36. package/dist/styles/era.css +677 -766
  37. package/dist/styles/era.css.js +677 -766
  38. package/dist/styles/example.css +1898 -0
  39. package/dist/styles/example.css.js +1903 -0
  40. package/dist/styles/sothebys.css +670 -759
  41. package/dist/styles/sothebys.css.js +670 -759
  42. package/dist/types/common.d.ts +2 -1
  43. package/dist/types/common.js.map +1 -1
  44. package/package.json +7 -47
  45. package/src/components/StylesProviderAgentWorkplace/StylesProviderAgentWorkplace.tsx +15 -0
  46. package/src/components/StylesProviderAgentWorkplace/index.tsx +1 -0
  47. package/src/components/StylesProviderBrokerWorkplace/StylesProviderBrokerWorkplace.tsx +15 -0
  48. package/src/components/StylesProviderBrokerWorkplace/index.tsx +1 -0
  49. package/src/components/StylesProviderDemo/brandsCss.ts +13 -10
  50. package/src/components/StylesProviderDemo/exampleCss.ts +5 -5
  51. package/src/components/Table/Table.tsx +1 -1
  52. package/{dist/styles/denali-boss.css → src/styles/example.css} +401 -384
  53. package/src/types/common.ts +2 -10
  54. package/dist/components/StylesProviderDenaliBoss/StylesProviderDenaliBoss.d.ts +0 -11
  55. package/dist/components/StylesProviderDenaliBoss/StylesProviderDenaliBoss.js +0 -14
  56. package/dist/components/StylesProviderDenaliBoss/StylesProviderDenaliBoss.js.map +0 -1
  57. package/dist/components/StylesProviderDenaliBoss/index.d.ts +0 -1
  58. package/dist/components/StylesProviderDenaliBoss/index.js +0 -2
  59. package/dist/components/StylesProviderDenaliBoss/index.js.map +0 -1
  60. package/dist/constants/brands.d.ts +0 -7
  61. package/dist/constants/brands.js +0 -43
  62. package/dist/constants/brands.js.map +0 -1
  63. package/src/components/StylesProviderDenaliBoss/StylesProviderDenaliBoss.tsx +0 -15
  64. package/src/components/StylesProviderDenaliBoss/index.tsx +0 -1
  65. package/src/constants/brands.ts +0 -49
@@ -7,6 +7,7 @@
7
7
  */
8
8
 
9
9
  import { IconName } from '@bspk/icons';
10
+ import { BRANDS } from '@bspk/styles/brands';
10
11
  import {
11
12
  JSXElementConstructor,
12
13
  ReactNode,
@@ -175,15 +176,6 @@ export type FieldControlProps<
175
176
  'aria-errormessage'?: string;
176
177
  };
177
178
 
178
- export type Brand =
179
- | 'anywhere'
180
- | 'better-homes-gardens'
181
- | 'cartus'
182
- | 'century-21'
183
- | 'coldwell-banker'
184
- | 'corcoran'
185
- | 'denali-boss'
186
- | 'era'
187
- | 'sothebys';
179
+ export type Brand = (typeof BRANDS)[number]['slug'];
188
180
 
189
181
  /** Copyright 2026 Anywhere Real Estate - CC BY 4.0 */
@@ -1,11 +0,0 @@
1
- import '@bspk/styles/denali-boss.css';
2
- import '-/styles/base.scss';
3
- /**
4
- * Utility to provide the Denali Boss styles to the application.
5
- *
6
- * @name StylesProviderDenaliBoss
7
- * @phase Utility
8
- * @generated
9
- */
10
- export declare function StylesProviderDenaliBoss(): JSX.Element | null;
11
- /** Copyright 2026 Anywhere Real Estate - CC BY 4.0 */
@@ -1,14 +0,0 @@
1
- import '../../styles/denali-boss.css.js';
2
- import '../../styles/base.css.js';
3
- /**
4
- * Utility to provide the Denali Boss styles to the application.
5
- *
6
- * @name StylesProviderDenaliBoss
7
- * @phase Utility
8
- * @generated
9
- */
10
- export function StylesProviderDenaliBoss() {
11
- return null;
12
- }
13
- /** Copyright 2026 Anywhere Real Estate - CC BY 4.0 */
14
- //# sourceMappingURL=StylesProviderDenaliBoss.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"StylesProviderDenaliBoss.js","sourceRoot":"","sources":["../../../src/components/StylesProviderDenaliBoss/StylesProviderDenaliBoss.tsx"],"names":[],"mappings":"AAAA,OAAO,8BAA8B,CAAC;AACtC,OAAO,oBAAoB,CAAC;AAE5B;;;;;;GAMG;AACH,MAAM,UAAU,wBAAwB;IACpC,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,sDAAsD"}
@@ -1 +0,0 @@
1
- export * from './StylesProviderDenaliBoss';
@@ -1,2 +0,0 @@
1
- export * from './StylesProviderDenaliBoss';
2
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/components/StylesProviderDenaliBoss/index.tsx"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAC"}
@@ -1,7 +0,0 @@
1
- import { Brand } from '-/types/common';
2
- export declare const BRANDS: {
3
- /** The title of the brand. */
4
- title: string;
5
- /** The slug of the brand, used in URLs and identifiers. */
6
- slug: Brand | 'example';
7
- }[];
@@ -1,43 +0,0 @@
1
- export const BRANDS = [
2
- {
3
- title: 'Anywhere',
4
- slug: 'anywhere',
5
- },
6
- {
7
- title: 'Better Homes & Gardens',
8
- slug: 'better-homes-gardens',
9
- },
10
- {
11
- title: 'Cartus',
12
- slug: 'cartus',
13
- },
14
- {
15
- title: 'Century 21',
16
- slug: 'century-21',
17
- },
18
- {
19
- title: 'Coldwell Banker',
20
- slug: 'coldwell-banker',
21
- },
22
- {
23
- title: 'Corcoran',
24
- slug: 'corcoran',
25
- },
26
- {
27
- title: 'Denali Boss',
28
- slug: 'denali-boss',
29
- },
30
- {
31
- title: 'ERA',
32
- slug: 'era',
33
- },
34
- {
35
- title: "Sotheby's",
36
- slug: 'sothebys',
37
- },
38
- {
39
- title: 'Example',
40
- slug: 'example',
41
- },
42
- ];
43
- //# sourceMappingURL=brands.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"brands.js","sourceRoot":"","sources":["../../src/constants/brands.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,MAAM,GAKb;IACF;QACI,KAAK,EAAE,UAAU;QACjB,IAAI,EAAE,UAAU;KACnB;IACD;QACI,KAAK,EAAE,wBAAwB;QAC/B,IAAI,EAAE,sBAAsB;KAC/B;IACD;QACI,KAAK,EAAE,QAAQ;QACf,IAAI,EAAE,QAAQ;KACjB;IACD;QACI,KAAK,EAAE,YAAY;QACnB,IAAI,EAAE,YAAY;KACrB;IACD;QACI,KAAK,EAAE,iBAAiB;QACxB,IAAI,EAAE,iBAAiB;KAC1B;IACD;QACI,KAAK,EAAE,UAAU;QACjB,IAAI,EAAE,UAAU;KACnB;IACD;QACI,KAAK,EAAE,aAAa;QACpB,IAAI,EAAE,aAAa;KACtB;IACD;QACI,KAAK,EAAE,KAAK;QACZ,IAAI,EAAE,KAAK;KACd;IACD;QACI,KAAK,EAAE,WAAW;QAClB,IAAI,EAAE,UAAU;KACnB;IACD;QACI,KAAK,EAAE,SAAS;QAChB,IAAI,EAAE,SAAS;KAClB;CACK,CAAC"}
@@ -1,15 +0,0 @@
1
- import '@bspk/styles/denali-boss.css';
2
- import '-/styles/base.scss';
3
-
4
- /**
5
- * Utility to provide the Denali Boss styles to the application.
6
- *
7
- * @name StylesProviderDenaliBoss
8
- * @phase Utility
9
- * @generated
10
- */
11
- export function StylesProviderDenaliBoss(): JSX.Element | null {
12
- return null;
13
- }
14
-
15
- /** Copyright 2026 Anywhere Real Estate - CC BY 4.0 */
@@ -1 +0,0 @@
1
- export * from './StylesProviderDenaliBoss';
@@ -1,49 +0,0 @@
1
- import { Brand } from '-/types/common';
2
-
3
- export const BRANDS: {
4
- /** The title of the brand. */
5
- title: string;
6
- /** The slug of the brand, used in URLs and identifiers. */
7
- slug: Brand | 'example';
8
- }[] = [
9
- {
10
- title: 'Anywhere',
11
- slug: 'anywhere',
12
- },
13
- {
14
- title: 'Better Homes & Gardens',
15
- slug: 'better-homes-gardens',
16
- },
17
- {
18
- title: 'Cartus',
19
- slug: 'cartus',
20
- },
21
- {
22
- title: 'Century 21',
23
- slug: 'century-21',
24
- },
25
- {
26
- title: 'Coldwell Banker',
27
- slug: 'coldwell-banker',
28
- },
29
- {
30
- title: 'Corcoran',
31
- slug: 'corcoran',
32
- },
33
- {
34
- title: 'Denali Boss',
35
- slug: 'denali-boss',
36
- },
37
- {
38
- title: 'ERA',
39
- slug: 'era',
40
- },
41
- {
42
- title: "Sotheby's",
43
- slug: 'sothebys',
44
- },
45
- {
46
- title: 'Example',
47
- slug: 'example',
48
- },
49
- ] as const;