@astral/ui 4.0.0-alpha.25 → 4.0.0-alpha.26

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.
@@ -0,0 +1 @@
1
+ export * from './version';
@@ -0,0 +1 @@
1
+ export * from './version';
@@ -0,0 +1,2 @@
1
+ /** Мажорная версия UI-KIT и пакета @astral/ui */
2
+ export declare const UI_KIT_MAJOR_VERSION = 4;
@@ -0,0 +1,2 @@
1
+ /** Мажорная версия UI-KIT и пакета @astral/ui */
2
+ export const UI_KIT_MAJOR_VERSION = 4;
package/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from '@astral/components';
2
2
  export * from '@astral/form';
3
3
  export * from '@astral/icons';
4
+ export { UI_KIT_MAJOR_VERSION } from './constants';
package/index.js CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from '@astral/components';
2
2
  export * from '@astral/form';
3
3
  export * from '@astral/icons';
4
+ export { UI_KIT_MAJOR_VERSION } from './constants';
@@ -0,0 +1 @@
1
+ export * from './version';
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./version"), exports);
@@ -0,0 +1,2 @@
1
+ /** Мажорная версия UI-KIT и пакета @astral/ui */
2
+ export declare const UI_KIT_MAJOR_VERSION = 4;
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UI_KIT_MAJOR_VERSION = void 0;
4
+ /** Мажорная версия UI-KIT и пакета @astral/ui */
5
+ exports.UI_KIT_MAJOR_VERSION = 4;
package/node/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from '@astral/components';
2
2
  export * from '@astral/form';
3
3
  export * from '@astral/icons';
4
+ export { UI_KIT_MAJOR_VERSION } from './constants';
package/node/index.js CHANGED
@@ -14,6 +14,9 @@ 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.UI_KIT_MAJOR_VERSION = void 0;
17
18
  __exportStar(require("@astral/components"), exports);
18
19
  __exportStar(require("@astral/form"), exports);
19
20
  __exportStar(require("@astral/icons"), exports);
21
+ var constants_1 = require("./constants");
22
+ Object.defineProperty(exports, "UI_KIT_MAJOR_VERSION", { enumerable: true, get: function () { return constants_1.UI_KIT_MAJOR_VERSION; } });
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@astral/ui",
3
- "version": "4.0.0-alpha.25",
3
+ "version": "4.0.0-alpha.26",
4
4
  "browser": "./index.js",
5
5
  "main": "./node/index.js",
6
6
  "dependencies": {
7
- "@astral/icons": "4.0.0-alpha.25",
8
- "@astral/components": "4.0.0-alpha.25",
9
- "@astral/form": "4.0.0-alpha.25"
7
+ "@astral/icons": "4.0.0-alpha.26",
8
+ "@astral/components": "4.0.0-alpha.26",
9
+ "@astral/form": "4.0.0-alpha.26"
10
10
  },
11
11
  "peerDependencies": {
12
12
  "react": "^17.0.0 || ^18.0.0",