@progressive-development/pd-forms 0.0.10 → 0.0.12
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/LICENSE +2 -21
- package/PdButton.js +3 -0
- package/PdButtonGroup.js +3 -0
- package/PdCheckbox.js +3 -0
- package/PdFormContainer.js +3 -0
- package/PdFormRow.js +3 -0
- package/PdInput.js +3 -0
- package/PdInputArea.js +3 -0
- package/PdRadioGroup.js +3 -0
- package/PdSelect.js +3 -0
- package/index.js +0 -22
- package/package.json +2 -2
- package/src/shared-input-styles.js +3 -8
- package/src/squi-base-ui-input.js +3 -2
- package/src/squi-base-ui.js +3 -2
- package/src/squi-button-group.js +7 -5
- package/src/squi-button.js +5 -0
- package/src/squi-checkbox.js +5 -0
- package/src/squi-form-container.js +1 -10
- package/src/squi-form-row.js +1 -10
- package/src/squi-input-area.js +5 -0
- package/src/squi-input.js +5 -0
- package/src/squi-radio-group.js +1 -10
- package/src/squi-select.js +5 -0
package/LICENSE
CHANGED
|
@@ -1,21 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2021 pd-forms
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
No License, all rights reserved
|
|
2
|
+
@2021 - PD Progressive Development UG
|
package/PdButton.js
ADDED
package/PdButtonGroup.js
ADDED
package/PdCheckbox.js
ADDED
package/PdFormRow.js
ADDED
package/PdInput.js
ADDED
package/PdInputArea.js
ADDED
package/PdRadioGroup.js
ADDED
package/PdSelect.js
ADDED
package/index.js
CHANGED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { SquiSelect } from './src/squi-select.js';
|
|
2
|
-
import { SquiButton } from './src/squi-button.js';
|
|
3
|
-
import { SquiCheckbox } from './src/squi-checkbox.js';
|
|
4
|
-
import { SquiFormContainer } from './src/squi-form-container.js';
|
|
5
|
-
import { SquiFormRow } from './src/squi-form-row.js';
|
|
6
|
-
import { SquiInputArea } from './src/squi-input-area.js';
|
|
7
|
-
import { SquiInput } from './src/squi-input.js';
|
|
8
|
-
import { SquiRadioGroup } from './src/squi-radio-group.js';
|
|
9
|
-
|
|
10
|
-
window.customElements.define('squi-select', SquiSelect);
|
|
11
|
-
window.customElements.define('squi-button', SquiButton);
|
|
12
|
-
window.customElements.define('squi-checkbox', SquiCheckbox);
|
|
13
|
-
window.customElements.define('squi-form-container', SquiFormContainer);
|
|
14
|
-
window.customElements.define('squi-form-row', SquiFormRow);
|
|
15
|
-
window.customElements.define('squi-input-area', SquiInputArea);
|
|
16
|
-
window.customElements.define('squi-input', SquiInput);
|
|
17
|
-
window.customElements.define('squi-radio-group', SquiRadioGroup);
|
|
18
|
-
|
|
19
|
-
export {
|
|
20
|
-
SquiSelect, SquiButton, SquiCheckbox, SquiFormContainer,
|
|
21
|
-
SquiFormRow, SquiInputArea, SquiInput, SquiRadioGroup
|
|
22
|
-
};
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progressive-development/pd-forms",
|
|
3
3
|
"description": "Webcomponent pd-forms following open-wc recommendations",
|
|
4
|
-
"license": "
|
|
4
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
5
5
|
"author": "PD Progressive Development",
|
|
6
|
-
"version": "0.0.
|
|
6
|
+
"version": "0.0.12",
|
|
7
7
|
"main": "index.js",
|
|
8
8
|
"module": "index.js",
|
|
9
9
|
"scripts": {
|
|
@@ -1,12 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
|
-
@license
|
|
3
|
-
Copyright (c)
|
|
4
|
-
|
|
5
|
-
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
|
|
6
|
-
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
|
|
7
|
-
Code distributed by Google as part of the polymer project is also
|
|
8
|
-
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
|
|
9
|
-
*/
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright (c) 2021 PD Progressive Development UG. All rights reserved.
|
|
4
|
+
*/
|
|
10
5
|
|
|
11
6
|
import { css } from 'lit';
|
|
12
7
|
|
package/src/squi-base-ui.js
CHANGED
package/src/squi-button-group.js
CHANGED
|
@@ -1,10 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright (c) 2021 PD Progressive Development UG. All rights reserved.
|
|
4
|
+
*/
|
|
5
|
+
|
|
1
6
|
import { html, css , LitElement } from 'lit';
|
|
2
7
|
|
|
3
8
|
import { SharedInputStyles } from './shared-input-styles.js';
|
|
4
9
|
import './squi-button.js';
|
|
5
10
|
|
|
6
11
|
|
|
7
|
-
class SquiButtonGroup extends LitElement {
|
|
12
|
+
export class SquiButtonGroup extends LitElement {
|
|
8
13
|
|
|
9
14
|
static get styles() {
|
|
10
15
|
return [
|
|
@@ -46,7 +51,4 @@ class SquiButtonGroup extends LitElement {
|
|
|
46
51
|
</div>
|
|
47
52
|
`;
|
|
48
53
|
}
|
|
49
|
-
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
customElements.define('squi-button-group', SquiButtonGroup);
|
|
54
|
+
}
|
package/src/squi-button.js
CHANGED
package/src/squi-checkbox.js
CHANGED
|
@@ -1,15 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c)
|
|
4
|
-
* This code may only be used under the BSD style license found at
|
|
5
|
-
* http://polymer.github.io/LICENSE.txt
|
|
6
|
-
* The complete set of authors may be found at
|
|
7
|
-
* http://polymer.github.io/AUTHORS.txt
|
|
8
|
-
* The complete set of contributors may be found at
|
|
9
|
-
* http://polymer.github.io/CONTRIBUTORS.txt
|
|
10
|
-
* Code distributed by Google as part of the polymer project is also
|
|
11
|
-
* subject to an additional IP rights grant found at
|
|
12
|
-
* http://polymer.github.io/PATENTS.txt
|
|
3
|
+
* Copyright (c) 2021 PD Progressive Development UG. All rights reserved.
|
|
13
4
|
*/
|
|
14
5
|
|
|
15
6
|
import {LitElement, html, css} from 'lit';
|
package/src/squi-form-row.js
CHANGED
|
@@ -1,15 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c)
|
|
4
|
-
* This code may only be used under the BSD style license found at
|
|
5
|
-
* http://polymer.github.io/LICENSE.txt
|
|
6
|
-
* The complete set of authors may be found at
|
|
7
|
-
* http://polymer.github.io/AUTHORS.txt
|
|
8
|
-
* The complete set of contributors may be found at
|
|
9
|
-
* http://polymer.github.io/CONTRIBUTORS.txt
|
|
10
|
-
* Code distributed by Google as part of the polymer project is also
|
|
11
|
-
* subject to an additional IP rights grant found at
|
|
12
|
-
* http://polymer.github.io/PATENTS.txt
|
|
3
|
+
* Copyright (c) 2021 PD Progressive Development UG. All rights reserved.
|
|
13
4
|
*/
|
|
14
5
|
|
|
15
6
|
import {LitElement, html, css} from 'lit';
|
package/src/squi-input-area.js
CHANGED
package/src/squi-input.js
CHANGED
package/src/squi-radio-group.js
CHANGED
|
@@ -1,15 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c)
|
|
4
|
-
* This code may only be used under the BSD style license found at
|
|
5
|
-
* http://polymer.github.io/LICENSE.txt
|
|
6
|
-
* The complete set of authors may be found at
|
|
7
|
-
* http://polymer.github.io/AUTHORS.txt
|
|
8
|
-
* The complete set of contributors may be found at
|
|
9
|
-
* http://polymer.github.io/CONTRIBUTORS.txt
|
|
10
|
-
* Code distributed by Google as part of the polymer project is also
|
|
11
|
-
* subject to an additional IP rights grant found at
|
|
12
|
-
* http://polymer.github.io/PATENTS.txt
|
|
3
|
+
* Copyright (c) 2021 PD Progressive Development UG. All rights reserved.
|
|
13
4
|
*/
|
|
14
5
|
|
|
15
6
|
import { LitElement, html, css } from 'lit';
|
package/src/squi-select.js
CHANGED