@workday/canvas-kit-labs-react 13.2.22 → 13.2.23

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.
@@ -1,3 +1,4 @@
1
1
  export * from './combobox';
2
2
  export * from './search-form';
3
+ export { version } from './version';
3
4
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,OAAO,EAAC,OAAO,EAAC,MAAM,WAAW,CAAC"}
@@ -14,5 +14,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ exports.version = void 0;
17
18
  __exportStar(require("./combobox"), exports);
18
19
  __exportStar(require("./search-form"), exports);
20
+ var version_1 = require("./version");
21
+ Object.defineProperty(exports, "version", { enumerable: true, get: function () { return version_1.version; } });
@@ -0,0 +1,2 @@
1
+ export declare const version: string;
2
+ //# sourceMappingURL=version.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../version.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,EAAE,MAAoB,CAAC"}
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.version = void 0;
4
+ exports.version = '13.2.23';
@@ -1,3 +1,4 @@
1
1
  export * from './combobox';
2
2
  export * from './search-form';
3
+ export { version } from './version';
3
4
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,OAAO,EAAC,OAAO,EAAC,MAAM,WAAW,CAAC"}
package/dist/es6/index.js CHANGED
@@ -1,2 +1,3 @@
1
1
  export * from './combobox';
2
2
  export * from './search-form';
3
+ export { version } from './version';
@@ -0,0 +1,2 @@
1
+ export declare const version: string;
2
+ //# sourceMappingURL=version.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../version.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,EAAE,MAAoB,CAAC"}
@@ -0,0 +1 @@
1
+ export const version = '13.2.23';
package/index.ts CHANGED
@@ -1,2 +1,3 @@
1
1
  export * from './combobox';
2
2
  export * from './search-form';
3
+ export {version} from './version';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@workday/canvas-kit-labs-react",
3
- "version": "13.2.22",
3
+ "version": "13.2.23",
4
4
  "description": "Canvas Kit Labs is an incubator for new and experimental components. Since we have a rather rigorous process for getting components in at a production level, it can be valuable to make them available earlier while we continuously iterate on the API/functionality. The Labs modules allow us to do that as needed.",
5
5
  "author": "Workday, Inc. (https://www.workday.com)",
6
6
  "license": "Apache-2.0",
@@ -18,7 +18,8 @@
18
18
  "*/lib/*",
19
19
  "*/index.ts",
20
20
  "dist/",
21
- "index.ts"
21
+ "index.ts",
22
+ "version.ts"
22
23
  ],
23
24
  "scripts": {
24
25
  "watch": "yarn build:es6 -w",
@@ -28,6 +29,7 @@
28
29
  "build:es6": "tspc -p tsconfig.es6.json",
29
30
  "build:rebuild": "npm-run-all clean build",
30
31
  "build": "npm-run-all build:cjs build:es6",
32
+ "postbuild": "node ../../utils/replace-version.js",
31
33
  "prepack": "node ../../utils/publish.js pre labs-react",
32
34
  "postpack": "node ../../utils/publish.js post labs-react",
33
35
  "depcheck": "node ../../utils/check-dependencies-exist.js",
@@ -46,8 +48,8 @@
46
48
  "dependencies": {
47
49
  "@emotion/react": "^11.7.1",
48
50
  "@emotion/styled": "^11.6.0",
49
- "@workday/canvas-kit-react": "^13.2.22",
50
- "@workday/canvas-kit-styling": "^13.2.22",
51
+ "@workday/canvas-kit-react": "^13.2.23",
52
+ "@workday/canvas-kit-styling": "^13.2.23",
51
53
  "@workday/canvas-system-icons-web": "^3.0.35",
52
54
  "@workday/canvas-tokens-web": "^2.1.1",
53
55
  "@workday/design-assets-types": "^0.2.10",
@@ -58,5 +60,5 @@
58
60
  "devDependencies": {
59
61
  "@types/lodash.flatten": "^4.4.6"
60
62
  },
61
- "gitHead": "93767f5e6c2993014d350450a892ce2ccf2b99a0"
63
+ "gitHead": "426318c2691c88389571d5132bffa076baa0ceba"
62
64
  }
package/version.ts ADDED
@@ -0,0 +1 @@
1
+ export const version: string = '%VERSION%';