@nswds/app 0.1.10 → 0.1.11

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/dist/index.cjs CHANGED
@@ -30,6 +30,7 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
30
30
  // src/packages/index.ts
31
31
  var index_exports = {};
32
32
  __export(index_exports, {
33
+ Button: () => Button,
33
34
  camelCase: () => camelCase,
34
35
  cn: () => cn,
35
36
  default: () => index_default,
@@ -105,12 +106,13 @@ function camelCase(str) {
105
106
  }
106
107
 
107
108
  // src/packages/index.ts
108
- var moduleExports = {
109
+ var nswdsExports = {
109
110
  Button
110
111
  };
111
- var index_default = moduleExports;
112
+ var index_default = nswdsExports;
112
113
  // Annotate the CommonJS export names for ESM import in node:
113
114
  0 && (module.exports = {
115
+ Button,
114
116
  camelCase,
115
117
  cn,
116
118
  kebabCase,
package/dist/index.d.cts CHANGED
@@ -16,8 +16,8 @@ declare function truncate(text: string, maxLength: number): string;
16
16
  declare function kebabCase(str: string): string;
17
17
  declare function camelCase(str: string): string;
18
18
 
19
- declare const moduleExports: {
19
+ declare const nswdsExports: {
20
20
  Button: typeof Button;
21
21
  };
22
22
 
23
- export { camelCase, cn, moduleExports as default, kebabCase, truncate };
23
+ export { Button, camelCase, cn, nswdsExports as default, kebabCase, truncate };
package/dist/index.d.ts CHANGED
@@ -16,8 +16,8 @@ declare function truncate(text: string, maxLength: number): string;
16
16
  declare function kebabCase(str: string): string;
17
17
  declare function camelCase(str: string): string;
18
18
 
19
- declare const moduleExports: {
19
+ declare const nswdsExports: {
20
20
  Button: typeof Button;
21
21
  };
22
22
 
23
- export { camelCase, cn, moduleExports as default, kebabCase, truncate };
23
+ export { Button, camelCase, cn, nswdsExports as default, kebabCase, truncate };
package/dist/index.js CHANGED
@@ -65,11 +65,12 @@ function camelCase(str) {
65
65
  }
66
66
 
67
67
  // src/packages/index.ts
68
- var moduleExports = {
68
+ var nswdsExports = {
69
69
  Button
70
70
  };
71
- var index_default = moduleExports;
71
+ var index_default = nswdsExports;
72
72
  export {
73
+ Button,
73
74
  camelCase,
74
75
  cn,
75
76
  index_default as default,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nswds/app",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
4
4
  "main": "dist/index.cjs",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",