@patternfly-java/core 0.6.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/README.md +29 -0
- package/core.css +20 -0
- package/package.json +36 -0
package/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# PatternFly Java Finder
|
|
2
|
+
|
|
3
|
+
CSS styles for [PatternFly Java](https://patternfly-java.github.io/).
|
|
4
|
+
|
|
5
|
+
This package provides the CSS only.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
Install the package using npm:
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
npm install @patternfly-java/core
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Usage
|
|
16
|
+
|
|
17
|
+
Import the CSS in your stylesheet or JavaScript entry point:
|
|
18
|
+
|
|
19
|
+
```css
|
|
20
|
+
@import "@patternfly-java/core";
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Requirements
|
|
24
|
+
|
|
25
|
+
This package requires [PatternFly 6](https://www.patternfly.org/) CSS (`@patternfly/patternfly`) to be present, as it references PatternFly design tokens for colors, spacing, borders, and typography.
|
|
26
|
+
|
|
27
|
+
## License
|
|
28
|
+
|
|
29
|
+
Apache-2.0
|
package/core.css
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023 Red Hat
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* https://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
/* PatternFly Java */
|
|
17
|
+
|
|
18
|
+
.pf-m-filtered {
|
|
19
|
+
display: none !important;
|
|
20
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@patternfly-java/core",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "0.6.1",
|
|
5
|
+
"description": "CSS for PatternFly Java.",
|
|
6
|
+
"homepage": "https://patternfly-java.github.io/",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/patternfly-java/patternfly-java.git"
|
|
10
|
+
},
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/patternfly-java/patternfly-java/issues"
|
|
13
|
+
},
|
|
14
|
+
"license": "Apache-2.0",
|
|
15
|
+
"keywords": [
|
|
16
|
+
"css",
|
|
17
|
+
"java",
|
|
18
|
+
"gwt",
|
|
19
|
+
"j2cl",
|
|
20
|
+
"patternfly",
|
|
21
|
+
"elemento",
|
|
22
|
+
"finder"
|
|
23
|
+
],
|
|
24
|
+
"author": "Harald Pehl <harald.pehl@gmail.com>",
|
|
25
|
+
"style": "core.css",
|
|
26
|
+
"main": "core.css",
|
|
27
|
+
"exports": {
|
|
28
|
+
".": "./core.css"
|
|
29
|
+
},
|
|
30
|
+
"files": [
|
|
31
|
+
"core.css"
|
|
32
|
+
],
|
|
33
|
+
"peerDependencies": {
|
|
34
|
+
"@patternfly/patternfly": "^6.4.0"
|
|
35
|
+
}
|
|
36
|
+
}
|