@fluentui-react-native/experimental-activity-indicator 0.11.0 → 0.11.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/CHANGELOG.md +10 -0
- package/lib/ActivityIndicator.android.d.ts +1 -1
- package/lib/ActivityIndicator.android.js +1 -1
- package/lib/ActivityIndicator.d.ts +1 -1
- package/lib/ActivityIndicator.ios.d.ts +1 -1
- package/lib/ActivityIndicator.ios.js +1 -1
- package/lib/ActivityIndicator.js +1 -1
- package/lib/ActivityIndicator.mobile.d.ts +2 -7
- package/lib/ActivityIndicator.mobile.js +86 -89
- package/lib/ActivityIndicator.styling.d.ts +5 -15
- package/lib/ActivityIndicator.styling.js +67 -76
- package/lib/ActivityIndicator.types.d.ts +36 -36
- package/lib/ActivityIndicator.types.js +1 -1
- package/lib/CoreActivityIndicator.d.ts +2 -7
- package/lib/CoreActivityIndicator.js +11 -11
- package/lib/index.d.ts +1 -1
- package/lib/index.js +1 -1
- package/lib-commonjs/ActivityIndicator.android.d.ts +1 -1
- package/lib-commonjs/ActivityIndicator.android.js +6 -11
- package/lib-commonjs/ActivityIndicator.d.ts +1 -1
- package/lib-commonjs/ActivityIndicator.ios.d.ts +1 -1
- package/lib-commonjs/ActivityIndicator.ios.js +6 -11
- package/lib-commonjs/ActivityIndicator.js +6 -11
- package/lib-commonjs/ActivityIndicator.mobile.d.ts +2 -7
- package/lib-commonjs/ActivityIndicator.mobile.js +94 -106
- package/lib-commonjs/ActivityIndicator.styling.d.ts +5 -15
- package/lib-commonjs/ActivityIndicator.styling.js +76 -87
- package/lib-commonjs/ActivityIndicator.types.d.ts +36 -36
- package/lib-commonjs/ActivityIndicator.types.js +3 -3
- package/lib-commonjs/CoreActivityIndicator.d.ts +2 -7
- package/lib-commonjs/CoreActivityIndicator.js +17 -17
- package/lib-commonjs/index.d.ts +1 -1
- package/lib-commonjs/index.js +5 -10
- package/package.json +14 -13
package/lib-commonjs/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { ActivityIndicator } from './ActivityIndicator';
|
|
2
|
-
//# sourceMappingURL=index.d.ts.map
|
|
2
|
+
//# sourceMappingURL=index.d.ts.map
|
package/lib-commonjs/index.js
CHANGED
|
@@ -1,11 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports,
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ActivityIndicator = void 0;
|
|
4
|
-
const ActivityIndicator_1 = require(
|
|
5
|
-
Object.defineProperty(exports,
|
|
6
|
-
|
|
7
|
-
get: function () {
|
|
8
|
-
return ActivityIndicator_1.ActivityIndicator;
|
|
9
|
-
},
|
|
10
|
-
});
|
|
11
|
-
//# sourceMappingURL=index.js.map
|
|
4
|
+
const ActivityIndicator_1 = require("./ActivityIndicator");
|
|
5
|
+
Object.defineProperty(exports, "ActivityIndicator", { enumerable: true, get: function () { return ActivityIndicator_1.ActivityIndicator; } });
|
|
6
|
+
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,46 +1,47 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluentui-react-native/experimental-activity-indicator",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.1",
|
|
4
4
|
"description": "A cross-platform Fluent Activity Indicator component",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "",
|
|
5
7
|
"repository": {
|
|
6
8
|
"type": "git",
|
|
7
9
|
"url": "https://github.com/microsoft/fluentui-react-native.git",
|
|
8
10
|
"directory": "packages/experimental/ActivityIndicator"
|
|
9
11
|
},
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
+
"main": "lib-commonjs/index.js",
|
|
13
|
+
"module": "lib/index.js",
|
|
14
|
+
"types": "lib/index.d.ts",
|
|
12
15
|
"exports": {
|
|
13
16
|
".": {
|
|
14
17
|
"types": "./lib/index.d.ts",
|
|
15
18
|
"import": "./lib/index.js",
|
|
16
|
-
"require": "./lib-commonjs/index.js"
|
|
19
|
+
"require": "./lib-commonjs/index.js",
|
|
20
|
+
"default": "./src/index.ts"
|
|
17
21
|
}
|
|
18
22
|
},
|
|
19
|
-
"main": "lib-commonjs/index.js",
|
|
20
|
-
"module": "lib/index.js",
|
|
21
|
-
"types": "lib/index.d.ts",
|
|
22
23
|
"scripts": {
|
|
23
24
|
"build": "fluentui-scripts build",
|
|
24
25
|
"build-cjs": "tsgo --outDir lib-commonjs",
|
|
25
|
-
"build-
|
|
26
|
+
"build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler",
|
|
26
27
|
"clean": "fluentui-scripts clean",
|
|
27
28
|
"depcheck": "fluentui-scripts depcheck",
|
|
28
29
|
"lint": "fluentui-scripts eslint",
|
|
29
30
|
"lint-package": "fluentui-scripts lint-package",
|
|
30
|
-
"
|
|
31
|
+
"format": "fluentui-scripts format",
|
|
31
32
|
"test": "fluentui-scripts jest",
|
|
32
33
|
"update-snapshots": "fluentui-scripts jest -u"
|
|
33
34
|
},
|
|
34
35
|
"dependencies": {
|
|
35
|
-
"@fluentui-react-native/framework": "0.15.
|
|
36
|
+
"@fluentui-react-native/framework": "0.15.1",
|
|
36
37
|
"assert-never": "^1.2.1"
|
|
37
38
|
},
|
|
38
39
|
"devDependencies": {
|
|
39
40
|
"@babel/core": "^7.20.0",
|
|
40
|
-
"@fluentui-react-native/eslint-config-rules": "0.1.
|
|
41
|
-
"@fluentui-react-native/framework-base": "0.3.
|
|
41
|
+
"@fluentui-react-native/eslint-config-rules": "0.1.2",
|
|
42
|
+
"@fluentui-react-native/framework-base": "0.3.1",
|
|
42
43
|
"@fluentui-react-native/kit-config": "0.1.2",
|
|
43
|
-
"@fluentui-react-native/scripts": "0.1.
|
|
44
|
+
"@fluentui-react-native/scripts": "0.1.0",
|
|
44
45
|
"@react-native-community/cli": "^20.0.0",
|
|
45
46
|
"@react-native-community/cli-platform-android": "^20.0.0",
|
|
46
47
|
"@react-native-community/cli-platform-ios": "^20.0.0",
|