Skip to content

Commit f3a397a

Browse files
Merge pull request #41 from SimplrJS/feature/core-to-forms
simplr-forms-core -> simplr-forms.
2 parents f07ff18 + b4a2332 commit f3a397a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+35
-35
lines changed

packages/simplr-forms-dom/__tests__/components/clear.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import * as React from "react";
22
import { mount } from "enzyme";
33
import * as Sinon from "sinon";
44

5-
import { FormStore } from "simplr-forms-core/stores";
5+
import { FormStore } from "simplr-forms/stores";
66

77
import { Form } from "../../src/components/form";
88
import { Text } from "../../src/components/text";

packages/simplr-forms-dom/__tests__/components/form.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import * as React from "react";
22
import { mount } from "enzyme";
33
import * as Sinon from "sinon";
44

5-
import { FSHContainer, FormStoresHandler } from "simplr-forms-core/stores";
5+
import { FSHContainer, FormStoresHandler } from "simplr-forms/stores";
66

77
import { Form } from "../../src/components/form";
88

packages/simplr-forms-dom/__tests__/components/reset.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import * as React from "react";
22
import { mount } from "enzyme";
33
import * as Sinon from "sinon";
44

5-
import { FormStore } from "simplr-forms-core/stores";
5+
import { FormStore } from "simplr-forms/stores";
66

77
import { Form } from "../../src/components/form";
88
import { Text } from "../../src/components/text";

packages/simplr-forms-dom/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "simplr-forms-dom",
3-
"version": "4.0.0-pre-alpha.18",
3+
"version": "4.0.0-pre-alpha.20",
44
"description": "DOM components for simplr-forms.",
55
"repository": "SimplrJS/simplr-forms",
66
"homepage": "https://github.com/SimplrJS/simplr-forms",
@@ -11,7 +11,7 @@
1111
"build": "webpack && npm run tslint",
1212
"watch": "webpack -w",
1313
"tslint": "tslint --config ./tslint.json --project . --exclude __tests__/**/* && echo TsLint test successfully passed.",
14-
"uglifyjs": "uglifyjs ./dist/simplr-forms-core.js -o ./dist/simplr-forms-core.min.js --compress --mangle",
14+
"uglifyjs": "uglifyjs ./dist/simplr-forms-dom.js -o ./dist/simplr-forms-dom.min.js --compress --mangle",
1515
"release": "npm run build && npm run uglifyjs",
1616
"test": "jest",
1717
"test-watch": "jest --watchAll",
@@ -62,7 +62,7 @@
6262
"immutable": "^3.8.1",
6363
"prop-types": "^15.5.8",
6464
"react": "^15.5.4",
65-
"simplr-forms-core": "^4.0.0-pre-alpha.18",
65+
"simplr-forms": "^4.0.0-pre-alpha.20",
6666
"typed-immutable-record": "0.0.6"
6767
},
6868
"jest": {

packages/simplr-forms-dom/src/abstractions/base-dom-field.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { BaseField, BaseFieldState } from "simplr-forms-core";
2-
import { FieldProps } from "simplr-forms-core/contracts";
1+
import { BaseField, BaseFieldState } from "simplr-forms";
2+
import { FieldProps } from "simplr-forms/contracts";
33

44
export interface BaseDomFieldState extends BaseFieldState {
55

packages/simplr-forms-dom/src/components/clear.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as React from "react";
22
import { recordify, TypedRecord } from "typed-immutable-record";
33

4-
import { BaseContainer, BaseContainerProps } from "simplr-forms-core";
4+
import { BaseContainer, BaseContainerProps } from "simplr-forms";
55

66
export interface ClearProps extends BaseContainerProps, React.HTMLProps<HTMLButtonElement> {
77
fieldIds?: string[];

packages/simplr-forms-dom/src/components/form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import * as React from "react";
2-
import { BaseForm } from "simplr-forms-core";
2+
import { BaseForm } from "simplr-forms";
33

44
import { FormProps } from "../contracts/form";
55

packages/simplr-forms-dom/src/components/reset.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as React from "react";
22
import { recordify, TypedRecord } from "typed-immutable-record";
33

4-
import { BaseContainer, BaseContainerProps } from "simplr-forms-core";
4+
import { BaseContainer, BaseContainerProps } from "simplr-forms";
55

66
export interface ResetProps extends BaseContainerProps, React.HTMLProps<HTMLButtonElement> {
77
fieldIds?: string[];

packages/simplr-forms-dom/src/components/submit.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import * as React from "react";
22
import { recordify, TypedRecord } from "typed-immutable-record";
33

4-
import { BaseContainer, BaseContainerProps } from "simplr-forms-core";
5-
import { FormError } from "simplr-forms-core/contracts";
4+
import { BaseContainer, BaseContainerProps } from "simplr-forms";
5+
import { FormError } from "simplr-forms/contracts";
66

77
export interface SubmitProps extends BaseContainerProps, React.HTMLProps<HTMLButtonElement> {
88
/**

packages/simplr-forms-dom/src/components/text.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import * as React from "react";
2-
import { FieldProps, FieldValue } from "simplr-forms-core/contracts";
2+
import { FieldProps, FieldValue } from "simplr-forms/contracts";
33

44
import { BaseDomField, BaseDomFieldState } from "../abstractions/base-dom-field";
55
import { FieldOnChangeCallback } from "../contracts/field";

0 commit comments

Comments
 (0)